diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/SearchAsyncClient.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/SearchAsyncClient.java index cdaff8cf2b62..16baceec886f 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/SearchAsyncClient.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/SearchAsyncClient.java @@ -36,7 +36,6 @@ import com.azure.search.documents.models.IndexBatchException; import com.azure.search.documents.models.IndexDocumentsOptions; import com.azure.search.documents.models.IndexDocumentsResult; -import com.azure.search.documents.models.QueryAnswer; import com.azure.search.documents.models.ScoringParameter; import com.azure.search.documents.models.SearchOptions; import com.azure.search.documents.models.SearchResult; @@ -654,7 +653,7 @@ private Mono search(SearchRequest request, String continuat SearchPagedResponse page = new SearchPagedResponse( new SimpleResponse<>(response, getSearchResults(result)), createContinuationToken(result, serviceVersion), getFacets(result), result.getCount(), - result.getCoverage(), result.getAnswers()); + result.getCoverage()); if (continuationToken == null) { firstPageResponseWrapper.setFirstPageResponse(page); } @@ -833,9 +832,6 @@ private static SearchRequest createSearchRequest(String searchText, SearchOption .setScoringParameters(scoringParameters) .setScoringProfile(options.getScoringProfile()) .setSearchFields(nullSafeStringJoin(options.getSearchFields())) - .setQueryLanguage(options.getQueryLanguage()) - .setSpeller(options.getSpeller()) - .setAnswers(createSearchRequestAnswers(options)) .setSearchMode(options.getSearchMode()) .setScoringStatistics(options.getScoringStatistics()) .setSessionId(options.getSessionId()) @@ -844,24 +840,6 @@ private static SearchRequest createSearchRequest(String searchText, SearchOption .setTop(options.getTop()); } - private static String createSearchRequestAnswers(SearchOptions searchOptions) { - QueryAnswer answer = searchOptions.getAnswers(); - Integer answersCount = searchOptions.getAnswersCount(); - - // No answer has been defined. - if (answer == null) { - return null; - } - - // No count, just send the QueryAnswer. - if (answersCount == null) { - return answer.toString(); - } - - // Answer and count, format it as the service expects. - return String.format("%s|count-%d", answer, answersCount); - } - /** * Create suggest request from search text, suggester name, and parameters * diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/SearchServiceVersion.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/SearchServiceVersion.java index 4d6a8d7cec3b..bc33b3df930d 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/SearchServiceVersion.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/SearchServiceVersion.java @@ -9,8 +9,7 @@ * The versions of Azure Cognitive Search supported by this client library. */ public enum SearchServiceVersion implements ServiceVersion { - V2020_06_30("2020-06-30"), - V2020_06_30_PREVIEW("2020-06-30-Preview"); + V2020_06_30("2020-06-30"); private final String version; @@ -32,6 +31,6 @@ public String getVersion() { * @return The latest version supported by this client library. */ public static SearchServiceVersion getLatest() { - return V2020_06_30_PREVIEW; + return V2020_06_30; } } diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/DocumentsImpl.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/DocumentsImpl.java index befc7b6c5405..aa4a1c7e02d6 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/DocumentsImpl.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/DocumentsImpl.java @@ -37,8 +37,6 @@ import com.azure.search.documents.models.AutocompleteMode; import com.azure.search.documents.models.AutocompleteOptions; import com.azure.search.documents.models.AutocompleteResult; -import com.azure.search.documents.models.QueryLanguage; -import com.azure.search.documents.models.QuerySpeller; import com.azure.search.documents.models.QueryType; import com.azure.search.documents.models.ScoringStatistics; import com.azure.search.documents.models.SearchMode; @@ -103,9 +101,6 @@ Mono> searchGet( @QueryParam("scoringParameter") String scoringParameters, @QueryParam("scoringProfile") String scoringProfile, @QueryParam("searchFields") String searchFields, - @QueryParam("queryLanguage") QueryLanguage queryLanguage, - @QueryParam("speller") QuerySpeller speller, - @QueryParam("answers") String answers, @QueryParam("searchMode") SearchMode searchMode, @QueryParam("scoringStatistics") ScoringStatistics scoringStatistics, @QueryParam("sessionId") String sessionId, @@ -325,21 +320,6 @@ public Mono> searchGetWithResponseAsync( searchFieldsInternal = searchOptions.getSearchFields(); } List searchFields = searchFieldsInternal; - QueryLanguage queryLanguageInternal = null; - if (searchOptions != null) { - queryLanguageInternal = searchOptions.getQueryLanguage(); - } - QueryLanguage queryLanguage = queryLanguageInternal; - QuerySpeller spellerInternal = null; - if (searchOptions != null) { - spellerInternal = searchOptions.getSpeller(); - } - QuerySpeller speller = spellerInternal; - String answersInternal = null; - if (searchOptions != null) { - answersInternal = searchOptions.getAnswers(); - } - String answers = answersInternal; SearchMode searchModeInternal = null; if (searchOptions != null) { searchModeInternal = searchOptions.getSearchMode(); @@ -403,9 +383,6 @@ public Mono> searchGetWithResponseAsync( scoringParametersConverted, scoringProfile, searchFieldsConverted, - queryLanguage, - speller, - answers, searchMode, scoringStatistics, sessionId, diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/SearchIndexClientImplBuilder.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/SearchIndexClientImplBuilder.java index 6708e7b9734d..da948097d903 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/SearchIndexClientImplBuilder.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/SearchIndexClientImplBuilder.java @@ -208,7 +208,7 @@ public SearchIndexClientImplBuilder addPolicy(HttpPipelinePolicy customPolicy) { */ public SearchIndexClientImpl buildClient() { if (apiVersion == null) { - this.apiVersion = "2020-06-30-Preview"; + this.apiVersion = "2020-06-30"; } if (pipeline == null) { this.pipeline = createHttpPipeline(); diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/converters/SearchIndexConverter.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/converters/SearchIndexConverter.java index 9caab86b7aea..a446e4b17e1a 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/converters/SearchIndexConverter.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/converters/SearchIndexConverter.java @@ -34,7 +34,6 @@ public static SearchIndex map(com.azure.search.documents.indexes.implementation. searchIndex.setSuggesters(obj.getSuggesters()); searchIndex.setCharFilters(obj.getCharFilters()); - searchIndex.setNormalizers(obj.getNormalizers()); if (obj.getTokenFilters() != null) { List tokenFilters = @@ -74,7 +73,6 @@ public static com.azure.search.documents.indexes.implementation.models.SearchInd searchIndex.setSuggesters(obj.getSuggesters()); searchIndex.setCharFilters(obj.getCharFilters()); - searchIndex.setNormalizers(obj.getNormalizers()); if (obj.getTokenFilters() != null) { List tokenFilters = diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/converters/SearchResultConverter.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/converters/SearchResultConverter.java index 4ac18dcee530..73b2d4a26132 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/converters/SearchResultConverter.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/converters/SearchResultConverter.java @@ -27,9 +27,7 @@ public static SearchResult map(com.azure.search.documents.implementation.models. SearchResult searchResult = new SearchResult(obj.getScore()); - SearchResultHelper.setRerankerScore(searchResult, obj.getRerankerScore()); SearchResultHelper.setHighlights(searchResult, obj.getHighlights()); - SearchResultHelper.setCaptions(searchResult, obj.getCaptions()); SearchResultHelper.setAdditionalProperties(searchResult, new SearchDocument(obj.getAdditionalProperties())); SearchResultHelper.setJsonSerializer(searchResult, (JsonSerializer) serializer); diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/converters/SearchResultHelper.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/converters/SearchResultHelper.java index 65a8df46c154..e2dc2172f336 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/converters/SearchResultHelper.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/converters/SearchResultHelper.java @@ -5,7 +5,6 @@ import com.azure.core.util.serializer.JsonSerializer; import com.azure.search.documents.SearchDocument; -import com.azure.search.documents.models.CaptionResult; import com.azure.search.documents.models.SearchResult; import java.util.List; @@ -26,8 +25,6 @@ public interface SearchResultAccessor { void setAdditionalProperties(SearchResult searchResult, SearchDocument additionalProperties); void setHighlights(SearchResult searchResult, Map> highlights); void setJsonSerializer(SearchResult searchResult, JsonSerializer jsonSerializer); - void setRerankerScore(SearchResult searchResult, Double rerankerScore); - void setCaptions(SearchResult searchResult, List captions); } /** @@ -50,12 +47,4 @@ static void setHighlights(SearchResult searchResult, Map> h static void setJsonSerializer(SearchResult searchResult, JsonSerializer jsonSerializer) { accessor.setJsonSerializer(searchResult, jsonSerializer); } - - static void setRerankerScore(SearchResult searchResult, Double rerankerScore) { - accessor.setRerankerScore(searchResult, rerankerScore); - } - - static void setCaptions(SearchResult searchResult, List captions) { - accessor.setCaptions(searchResult, captions); - } } diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/QueryLanguage.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/QueryLanguage.java deleted file mode 100644 index 74bde19c7568..000000000000 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/QueryLanguage.java +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -package com.azure.search.documents.implementation.models; - -import com.azure.core.util.ExpandableStringEnum; -import com.fasterxml.jackson.annotation.JsonCreator; -import java.util.Collection; - -/** Defines values for QueryLanguage. */ -public final class QueryLanguage extends ExpandableStringEnum { - /** Static value none for QueryLanguage. */ - public static final QueryLanguage NONE = fromString("none"); - - /** Static value en-us for QueryLanguage. */ - public static final QueryLanguage EN_US = fromString("en-us"); - - /** - * Creates or finds a QueryLanguage from its string representation. - * - * @param name a name to look for. - * @return the corresponding QueryLanguage. - */ - @JsonCreator - public static QueryLanguage fromString(String name) { - return fromString(name, QueryLanguage.class); - } - - /** @return known QueryLanguage values. */ - public static Collection values() { - return values(QueryLanguage.class); - } -} diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/SearchDocumentsResult.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/SearchDocumentsResult.java index 4dfa3892d815..12c09f373ac3 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/SearchDocumentsResult.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/SearchDocumentsResult.java @@ -7,7 +7,6 @@ package com.azure.search.documents.implementation.models; import com.azure.core.annotation.Immutable; -import com.azure.search.documents.models.AnswerResult; import com.azure.search.documents.models.FacetResult; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonProperty; @@ -42,13 +41,6 @@ public final class SearchDocumentsResult { @JsonProperty(value = "@search.facets", access = JsonProperty.Access.WRITE_ONLY) private Map> facets; - /* - * The answers query results for the search operation; null if the answers - * query parameter was not specified or set to 'none'. - */ - @JsonProperty(value = "@search.answers", access = JsonProperty.Access.WRITE_ONLY) - private List answers; - /* * Continuation JSON payload returned when Azure Cognitive Search can't * return all the requested results in a single Search response. You can @@ -118,16 +110,6 @@ public Map> getFacets() { return this.facets; } - /** - * Get the answers property: The answers query results for the search operation; null if the answers query parameter - * was not specified or set to 'none'. - * - * @return the answers value. - */ - public List getAnswers() { - return this.answers; - } - /** * Get the nextPageParameters property: 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 diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/SearchOptions.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/SearchOptions.java index 4d6e491f3f3b..3d8f0c33205b 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/SearchOptions.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/SearchOptions.java @@ -7,8 +7,6 @@ package com.azure.search.documents.implementation.models; import com.azure.core.annotation.Fluent; -import com.azure.search.documents.models.QueryLanguage; -import com.azure.search.documents.models.QuerySpeller; import com.azure.search.documents.models.QueryType; import com.azure.search.documents.models.ScoringStatistics; import com.azure.search.documents.models.SearchMode; @@ -117,29 +115,6 @@ public final class SearchOptions { @JsonProperty(value = "searchFields") private List searchFields; - /* - * The language of the query. - */ - @JsonProperty(value = "queryLanguage") - private QueryLanguage queryLanguage; - - /* - * Improve search recall by spell-correcting individual search query terms. - */ - @JsonProperty(value = "speller") - private QuerySpeller speller; - - /* - * This parameter is only valid if the query type is 'semantic'. If set, - * the query returns answers extracted from key passages in the highest - * ranked documents. The number of answers returned can be configured by - * appending the pipe character '|' followed by the 'count-' option after the answers parameter value, such as - * 'extractive|count-3'. Default count is 1. - */ - @JsonProperty(value = "answers") - private String answers; - /* * A value that specifies whether any or all of the search terms must be * matched in order to count the document as a match. @@ -469,72 +444,6 @@ public SearchOptions setSearchFields(String... searchFields) { return this; } - /** - * Get the queryLanguage property: The language of the query. - * - * @return the queryLanguage value. - */ - public QueryLanguage getQueryLanguage() { - return this.queryLanguage; - } - - /** - * Set the queryLanguage property: The language of the query. - * - * @param queryLanguage the queryLanguage value to set. - * @return the SearchOptions object itself. - */ - public SearchOptions setQueryLanguage(QueryLanguage queryLanguage) { - this.queryLanguage = queryLanguage; - return this; - } - - /** - * Get the speller property: Improve search recall by spell-correcting individual search query terms. - * - * @return the speller value. - */ - public QuerySpeller getSpeller() { - return this.speller; - } - - /** - * Set the speller property: Improve search recall by spell-correcting individual search query terms. - * - * @param speller the speller value to set. - * @return the SearchOptions object itself. - */ - public SearchOptions setSpeller(QuerySpeller speller) { - this.speller = speller; - return this; - } - - /** - * Get the answers property: This parameter is only valid if the query type is 'semantic'. If set, the query returns - * answers extracted from key passages in the highest ranked documents. The number of answers returned can be - * configured by appending the pipe character '|' followed by the 'count-<number of answers>' option after the - * answers parameter value, such as 'extractive|count-3'. Default count is 1. - * - * @return the answers value. - */ - public String getAnswers() { - return this.answers; - } - - /** - * Set the answers property: This parameter is only valid if the query type is 'semantic'. If set, the query returns - * answers extracted from key passages in the highest ranked documents. The number of answers returned can be - * configured by appending the pipe character '|' followed by the 'count-<number of answers>' option after the - * answers parameter value, such as 'extractive|count-3'. Default count is 1. - * - * @param answers the answers value to set. - * @return the SearchOptions object itself. - */ - public SearchOptions setAnswers(String answers) { - this.answers = answers; - return this; - } - /** * Get the searchMode property: A value that specifies whether any or all of the search terms must be matched in * order to count the document as a match. diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/SearchRequest.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/SearchRequest.java index 11e13207bb21..408c2f502d0d 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/SearchRequest.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/SearchRequest.java @@ -7,8 +7,6 @@ package com.azure.search.documents.implementation.models; import com.azure.core.annotation.Fluent; -import com.azure.search.documents.models.QueryLanguage; -import com.azure.search.documents.models.QuerySpeller; import com.azure.search.documents.models.QueryType; import com.azure.search.documents.models.ScoringStatistics; import com.azure.search.documents.models.SearchMode; @@ -153,30 +151,6 @@ public final class SearchRequest { @JsonProperty(value = "searchMode") private SearchMode searchMode; - /* - * A value that specifies the language of the search query. - */ - @JsonProperty(value = "queryLanguage") - private QueryLanguage queryLanguage; - - /* - * A value that specified the type of the speller to use to spell-correct - * individual search query terms. - */ - @JsonProperty(value = "speller") - private QuerySpeller speller; - - /* - * This parameter is only valid if the query type is 'semantic'. If set, - * the query returns answers extracted from key passages in the highest - * ranked documents. The number of answers returned can be configured by - * appending the pipe character '|' followed by the 'count-' option after the answers parameter value, such as - * 'extractive|count-3'. Default count is 1. - */ - @JsonProperty(value = "answers") - private String answers; - /* * The comma-separated list of fields to retrieve. If unspecified, all * fields marked as retrievable in the schema are included. @@ -577,74 +551,6 @@ public SearchRequest setSearchMode(SearchMode searchMode) { return this; } - /** - * Get the queryLanguage property: A value that specifies the language of the search query. - * - * @return the queryLanguage value. - */ - public QueryLanguage getQueryLanguage() { - return this.queryLanguage; - } - - /** - * Set the queryLanguage property: A value that specifies the language of the search query. - * - * @param queryLanguage the queryLanguage value to set. - * @return the SearchRequest object itself. - */ - public SearchRequest setQueryLanguage(QueryLanguage queryLanguage) { - this.queryLanguage = queryLanguage; - return this; - } - - /** - * Get the speller property: A value that specified the type of the speller to use to spell-correct individual - * search query terms. - * - * @return the speller value. - */ - public QuerySpeller getSpeller() { - return this.speller; - } - - /** - * Set the speller property: A value that specified the type of the speller to use to spell-correct individual - * search query terms. - * - * @param speller the speller value to set. - * @return the SearchRequest object itself. - */ - public SearchRequest setSpeller(QuerySpeller speller) { - this.speller = speller; - return this; - } - - /** - * Get the answers property: This parameter is only valid if the query type is 'semantic'. If set, the query returns - * answers extracted from key passages in the highest ranked documents. The number of answers returned can be - * configured by appending the pipe character '|' followed by the 'count-<number of answers>' option after the - * answers parameter value, such as 'extractive|count-3'. Default count is 1. - * - * @return the answers value. - */ - public String getAnswers() { - return this.answers; - } - - /** - * Set the answers property: This parameter is only valid if the query type is 'semantic'. If set, the query returns - * answers extracted from key passages in the highest ranked documents. The number of answers returned can be - * configured by appending the pipe character '|' followed by the 'count-<number of answers>' option after the - * answers parameter value, such as 'extractive|count-3'. Default count is 1. - * - * @param answers the answers value to set. - * @return the SearchRequest object itself. - */ - public SearchRequest setAnswers(String answers) { - this.answers = answers; - return this; - } - /** * Get the select property: The comma-separated list of fields to retrieve. If unspecified, all fields marked as * retrievable in the schema are included. diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/SearchResult.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/SearchResult.java index 38698158b4e6..7daca5f71672 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/SearchResult.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/implementation/models/SearchResult.java @@ -7,7 +7,6 @@ package com.azure.search.documents.implementation.models; import com.azure.core.annotation.Fluent; -import com.azure.search.documents.models.CaptionResult; import com.fasterxml.jackson.annotation.JsonAnyGetter; import com.fasterxml.jackson.annotation.JsonAnySetter; import com.fasterxml.jackson.annotation.JsonCreator; @@ -27,15 +26,6 @@ public final class SearchResult { @JsonProperty(value = "@search.score", required = true, access = JsonProperty.Access.WRITE_ONLY) private double score; - /* - * The relevance score computed by the semantic ranker for the top search - * results. Search results are sorted by the RerankerScore first and then - * by the Score. RerankerScore is only returned for queries of type - * 'semantic'. - */ - @JsonProperty(value = "@search.rerankerScore", access = JsonProperty.Access.WRITE_ONLY) - private Double rerankerScore; - /* * Text fragments from the document that indicate the matching search * terms, organized by each applicable field; null if hit highlighting was @@ -44,14 +34,6 @@ public final class SearchResult { @JsonProperty(value = "@search.highlights", access = JsonProperty.Access.WRITE_ONLY) private Map> highlights; - /* - * Captions are the most representative passages from the document - * relatively to the search query. They are often used as document summary. - * Captions are only returned for queries of type 'semantic'. - */ - @JsonProperty(value = "@search.captions", access = JsonProperty.Access.WRITE_ONLY) - private List captions; - /* * Contains a document found by a search query, plus associated metadata. */ @@ -78,17 +60,6 @@ public double getScore() { return this.score; } - /** - * Get the rerankerScore property: The relevance score computed by the semantic ranker for the top search results. - * Search results are sorted by the RerankerScore first and then by the Score. RerankerScore is only returned for - * queries of type 'semantic'. - * - * @return the rerankerScore value. - */ - public Double getRerankerScore() { - return this.rerankerScore; - } - /** * Get the highlights property: 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. @@ -99,16 +70,6 @@ public Map> getHighlights() { return this.highlights; } - /** - * Get the captions property: Captions are the most representative passages from the document relatively to the - * search query. They are often used as document summary. Captions are only returned for queries of type 'semantic'. - * - * @return the captions value. - */ - public List getCaptions() { - return this.captions; - } - /** * Get the additionalProperties property: Contains a document found by a search query, plus associated metadata. * diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/implementation/SearchServiceClientImplBuilder.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/implementation/SearchServiceClientImplBuilder.java index d853edb3489f..b6fe9b22c86e 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/implementation/SearchServiceClientImplBuilder.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/implementation/SearchServiceClientImplBuilder.java @@ -192,7 +192,7 @@ public SearchServiceClientImplBuilder addPolicy(HttpPipelinePolicy customPolicy) */ public SearchServiceClientImpl buildClient() { if (apiVersion == null) { - this.apiVersion = "2020-06-30-Preview"; + this.apiVersion = "2020-06-30"; } if (pipeline == null) { this.pipeline = createHttpPipeline(); diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/implementation/models/SearchIndex.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/implementation/models/SearchIndex.java index 0d2c446091da..d37891c7caef 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/implementation/models/SearchIndex.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/implementation/models/SearchIndex.java @@ -10,7 +10,6 @@ import com.azure.search.documents.indexes.models.CharFilter; import com.azure.search.documents.indexes.models.CorsOptions; import com.azure.search.documents.indexes.models.LexicalAnalyzer; -import com.azure.search.documents.indexes.models.LexicalNormalizer; import com.azure.search.documents.indexes.models.ScoringProfile; import com.azure.search.documents.indexes.models.SearchField; import com.azure.search.documents.indexes.models.SearchResourceEncryptionKey; @@ -84,12 +83,6 @@ public final class SearchIndex { @JsonProperty(value = "charFilters") private List charFilters; - /* - * The normalizers for the index. - */ - @JsonProperty(value = "normalizers") - private List normalizers; - /* * 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 @@ -324,26 +317,6 @@ public SearchIndex setCharFilters(List charFilters) { return this; } - /** - * Get the normalizers property: The normalizers for the index. - * - * @return the normalizers value. - */ - public List getNormalizers() { - return this.normalizers; - } - - /** - * Set the normalizers property: The normalizers for the index. - * - * @param normalizers the normalizers value to set. - * @return the SearchIndex object itself. - */ - public SearchIndex setNormalizers(List normalizers) { - this.normalizers = normalizers; - return this; - } - /** * Get the encryptionKey property: 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 diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/models/CustomNormalizer.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/models/CustomNormalizer.java deleted file mode 100644 index ccf577f8adcb..000000000000 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/models/CustomNormalizer.java +++ /dev/null @@ -1,130 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -package com.azure.search.documents.indexes.models; - -import com.azure.core.annotation.Fluent; -import com.azure.core.annotation.JsonFlatten; -import com.fasterxml.jackson.annotation.JsonCreator; -import com.fasterxml.jackson.annotation.JsonProperty; -import com.fasterxml.jackson.annotation.JsonSetter; -import com.fasterxml.jackson.annotation.JsonTypeInfo; -import com.fasterxml.jackson.annotation.JsonTypeName; -import java.util.List; - -/** - * Allows you to configure normalization for filterable, sortable, and facetable fields, which by default operate with - * strict matching. This is a user-defined configuration consisting of at least one or more filters, which modify the - * token that is stored. - */ -@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "@odata\\.type") -@JsonTypeName("#Microsoft.Azure.Search.CustomNormalizer") -@JsonFlatten -@Fluent -public final class CustomNormalizer extends LexicalNormalizer { - /* - * A list of token filters used to filter out or modify the input token. - * 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. - */ - @JsonProperty(value = "tokenFilters") - private List tokenFilters; - - /* - * A list of character filters used to prepare input text before it is - * processed. For instance, they can replace certain characters or symbols. - * The filters are run in the order in which they are listed. - */ - @JsonProperty(value = "charFilters") - private List charFilters; - - /** - * Creates an instance of CustomNormalizer class. - * - * @param name the name value to set. - */ - @JsonCreator - public CustomNormalizer(@JsonProperty(value = "name", required = true) String name) { - super(name); - } - - /** - * Get the tokenFilters property: A list of token filters used to filter out or modify the input token. 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. - * - * @return the tokenFilters value. - */ - public List getTokenFilters() { - return this.tokenFilters; - } - - /** - * Set the tokenFilters property: A list of token filters used to filter out or modify the input token. 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. - * - * @param tokenFilters the tokenFilters value to set. - * @return the CustomNormalizer object itself. - */ - @JsonSetter - public CustomNormalizer setTokenFilters(List tokenFilters) { - this.tokenFilters = tokenFilters; - return this; - } - - /** - * Get the charFilters property: A list of character filters used to prepare input text before it is processed. For - * instance, they can replace certain characters or symbols. The filters are run in the order in which they are - * listed. - * - * @return the charFilters value. - */ - public List getCharFilters() { - return this.charFilters; - } - - /** - * Set the charFilters property: A list of character filters used to prepare input text before it is processed. For - * instance, they can replace certain characters or symbols. The filters are run in the order in which they are - * listed. - * - * @param charFilters the charFilters value to set. - * @return the CustomNormalizer object itself. - */ - @JsonSetter - public CustomNormalizer setCharFilters(List charFilters) { - this.charFilters = charFilters; - return this; - } - - /** - * Set the tokenFilters property: A list of token filters used to filter out or modify the input token. 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. - * - * @param tokenFilters the tokenFilters value to set. - * @return the CustomNormalizer object itself. - */ - public CustomNormalizer setTokenFilters(TokenFilterName... tokenFilters) { - this.tokenFilters = (tokenFilters == null) ? null : java.util.Arrays.asList(tokenFilters); - return this; - } - - /** - * Set the charFilters property: A list of character filters used to prepare input text before it is processed. For - * instance, they can replace certain characters or symbols. The filters are run in the order in which they are - * listed. - * - * @param charFilters the charFilters value to set. - * @return the CustomNormalizer object itself. - */ - public CustomNormalizer setCharFilters(CharFilterName... charFilters) { - this.charFilters = (charFilters == null) ? null : java.util.Arrays.asList(charFilters); - return this; - } -} diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/models/LexicalNormalizer.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/models/LexicalNormalizer.java deleted file mode 100644 index 8d374823aa96..000000000000 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/models/LexicalNormalizer.java +++ /dev/null @@ -1,58 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -package com.azure.search.documents.indexes.models; - -import com.azure.core.annotation.Fluent; -import com.azure.core.annotation.JsonFlatten; -import com.fasterxml.jackson.annotation.JsonCreator; -import com.fasterxml.jackson.annotation.JsonProperty; -import com.fasterxml.jackson.annotation.JsonSubTypes; -import com.fasterxml.jackson.annotation.JsonTypeInfo; -import com.fasterxml.jackson.annotation.JsonTypeName; - -/** Base type for normalizers. */ -@JsonTypeInfo( - use = JsonTypeInfo.Id.NAME, - include = JsonTypeInfo.As.PROPERTY, - property = "@odata\\.type", - defaultImpl = LexicalNormalizer.class) -@JsonTypeName("LexicalNormalizer") -@JsonSubTypes({@JsonSubTypes.Type(name = "#Microsoft.Azure.Search.CustomNormalizer", value = CustomNormalizer.class)}) -@JsonFlatten -@Fluent -public class LexicalNormalizer { - /* - * The name of the normalizer. It must only contain letters, digits, - * spaces, dashes or underscores, can only start and end with alphanumeric - * characters, and is limited to 128 characters. It cannot end in - * '.microsoft' nor '.lucene', nor be named 'asciifolding', 'standard', - * 'lowercase', 'uppercase', or 'elision'. - */ - @JsonProperty(value = "name", required = true) - private String name; - - /** - * Creates an instance of LexicalNormalizer class. - * - * @param name the name value to set. - */ - @JsonCreator - public LexicalNormalizer(@JsonProperty(value = "name", required = true) String name) { - this.name = name; - } - - /** - * Get the name property: The name of the normalizer. It must only contain letters, digits, spaces, dashes or - * underscores, can only start and end with alphanumeric characters, and is limited to 128 characters. It cannot end - * in '.microsoft' nor '.lucene', nor be named 'asciifolding', 'standard', 'lowercase', 'uppercase', or 'elision'. - * - * @return the name value. - */ - public String getName() { - return this.name; - } -} diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/models/LexicalNormalizerName.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/models/LexicalNormalizerName.java deleted file mode 100644 index 52f0eae2f00e..000000000000 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/models/LexicalNormalizerName.java +++ /dev/null @@ -1,45 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -package com.azure.search.documents.indexes.models; - -import com.azure.core.util.ExpandableStringEnum; -import com.fasterxml.jackson.annotation.JsonCreator; -import java.util.Collection; - -/** Defines values for LexicalNormalizerName. */ -public final class LexicalNormalizerName extends ExpandableStringEnum { - /** Static value asciifolding for LexicalNormalizerName. */ - public static final LexicalNormalizerName ASCII_FOLDING = fromString("asciifolding"); - - /** Static value elision for LexicalNormalizerName. */ - public static final LexicalNormalizerName ELISION = fromString("elision"); - - /** Static value lowercase for LexicalNormalizerName. */ - public static final LexicalNormalizerName LOWERCASE = fromString("lowercase"); - - /** Static value standard for LexicalNormalizerName. */ - public static final LexicalNormalizerName STANDARD = fromString("standard"); - - /** Static value uppercase for LexicalNormalizerName. */ - public static final LexicalNormalizerName UPPERCASE = fromString("uppercase"); - - /** - * Creates or finds a LexicalNormalizerName from its string representation. - * - * @param name a name to look for. - * @return the corresponding LexicalNormalizerName. - */ - @JsonCreator - public static LexicalNormalizerName fromString(String name) { - return fromString(name, LexicalNormalizerName.class); - } - - /** @return known LexicalNormalizerName values. */ - public static Collection values() { - return values(LexicalNormalizerName.class); - } -} diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/models/SearchField.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/models/SearchField.java index fd6a1e91f3f7..ec2c74344df9 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/models/SearchField.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/models/SearchField.java @@ -141,15 +141,6 @@ public final class SearchField { @JsonProperty(value = "indexAnalyzer") private LexicalAnalyzerName indexAnalyzerName; - /* - * The name of the normalizer to use for the field. This option can be used - * only with fields with filterable, sortable, or facetable enabled. Once - * the normalizer is chosen, it cannot be changed for the field. Must be - * null for complex fields. - */ - @JsonProperty(value = "normalizer") - private LexicalNormalizerName normalizerName; - /* * 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 @@ -459,30 +450,6 @@ public SearchField setIndexAnalyzerName(LexicalAnalyzerName indexAnalyzerName) { return this; } - /** - * Get the normalizerName property: The name of the normalizer to use for the field. This option can be used only - * with fields with filterable, sortable, or facetable enabled. Once the normalizer is chosen, it cannot be changed - * for the field. Must be null for complex fields. - * - * @return the normalizerName value. - */ - public LexicalNormalizerName getNormalizerName() { - return this.normalizerName; - } - - /** - * Set the normalizerName property: The name of the normalizer to use for the field. This option can be used only - * with fields with filterable, sortable, or facetable enabled. Once the normalizer is chosen, it cannot be changed - * for the field. Must be null for complex fields. - * - * @param normalizerName the normalizerName value to set. - * @return the SearchField object itself. - */ - public SearchField setNormalizerName(LexicalNormalizerName normalizerName) { - this.normalizerName = normalizerName; - return this; - } - /** * Get the synonymMapNames property: 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 diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/models/SearchIndex.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/models/SearchIndex.java index 52743a7dd65b..6d20056eb043 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/models/SearchIndex.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/indexes/models/SearchIndex.java @@ -79,12 +79,6 @@ public final class SearchIndex { @JsonProperty(value = "charFilters") private List charFilters; - /* - * The normalizers for the index. - */ - @JsonProperty(value = "normalizers") - private List normalizers; - /* * 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 @@ -418,38 +412,6 @@ public SearchIndex setCharFilters(List charFilters) { return this; } - /** - * Get the normalizers property: The normalizers for the index. - * - * @return the normalizers value. - */ - public List getNormalizers() { - return this.normalizers; - } - - /** - * Set the normalizers property: The normalizers for the index. - * - * @param normalizers the normalizers value to set. - * @return the SearchIndex object itself. - */ - public SearchIndex setNormalizers(LexicalNormalizer... normalizers) { - this.normalizers = (normalizers == null) ? null : Arrays.asList(normalizers); - return this; - } - - /** - * Set the normalizers property: The normalizers for the index. - * - * @param normalizers the normalizers value to set. - * @return the SearchIndex object itself. - */ - @JsonSetter - public SearchIndex setNormalizers(List normalizers) { - this.normalizers = normalizers; - return this; - } - /** * Get the encryptionKey property: A description of an encryption key that * you create in Azure Key Vault. This key is used to provide an additional diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/AnswerResult.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/AnswerResult.java deleted file mode 100644 index 62175155a466..000000000000 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/AnswerResult.java +++ /dev/null @@ -1,127 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -package com.azure.search.documents.models; - -import com.azure.core.annotation.Fluent; -import com.fasterxml.jackson.annotation.JsonAnyGetter; -import com.fasterxml.jackson.annotation.JsonAnySetter; -import com.fasterxml.jackson.annotation.JsonIgnore; -import com.fasterxml.jackson.annotation.JsonProperty; -import java.util.HashMap; -import java.util.Map; - -/** - * An answer is a text passage extracted from the contents of the most relevant documents that matched the query. - * Answers are extracted from the top search results. Answer candidates are scored and the top answers are selected. - */ -@Fluent -public final class AnswerResult { - /* - * The score value represents how relevant the answer is to the the query - * relative to other answers returned for the query. - */ - @JsonProperty(value = "score", access = JsonProperty.Access.WRITE_ONLY) - private Double score; - - /* - * The key of the document the answer was extracted from. - */ - @JsonProperty(value = "key", access = JsonProperty.Access.WRITE_ONLY) - private String key; - - /* - * The text passage extracted from the document contents as the answer. - */ - @JsonProperty(value = "text", access = JsonProperty.Access.WRITE_ONLY) - private String text; - - /* - * Same text passage as in the Text property with highlighted text phrases - * most relevant to the query. - */ - @JsonProperty(value = "highlights", access = JsonProperty.Access.WRITE_ONLY) - private String highlights; - - /* - * An answer is a text passage extracted from the contents of the most - * relevant documents that matched the query. Answers are extracted from - * the top search results. Answer candidates are scored and the top answers - * are selected. - */ - @JsonIgnore private Map additionalProperties; - - /** - * Get the score property: The score value represents how relevant the answer is to the the query relative to other - * answers returned for the query. - * - * @return the score value. - */ - public Double getScore() { - return this.score; - } - - /** - * Get the key property: The key of the document the answer was extracted from. - * - * @return the key value. - */ - public String getKey() { - return this.key; - } - - /** - * Get the text property: The text passage extracted from the document contents as the answer. - * - * @return the text value. - */ - public String getText() { - return this.text; - } - - /** - * Get the highlights property: Same text passage as in the Text property with highlighted text phrases most - * relevant to the query. - * - * @return the highlights value. - */ - public String getHighlights() { - return this.highlights; - } - - /** - * Get the additionalProperties property: An answer is a text passage extracted from the contents of the most - * relevant documents that matched the query. Answers are extracted from the top search results. Answer candidates - * are scored and the top answers are selected. - * - * @return the additionalProperties value. - */ - @JsonAnyGetter - public Map getAdditionalProperties() { - return this.additionalProperties; - } - - /** - * Set the additionalProperties property: An answer is a text passage extracted from the contents of the most - * relevant documents that matched the query. Answers are extracted from the top search results. Answer candidates - * are scored and the top answers are selected. - * - * @param additionalProperties the additionalProperties value to set. - * @return the AnswerResult object itself. - */ - public AnswerResult setAdditionalProperties(Map additionalProperties) { - this.additionalProperties = additionalProperties; - return this; - } - - @JsonAnySetter - void setAdditionalProperties(String key, Object value) { - if (additionalProperties == null) { - additionalProperties = new HashMap<>(); - } - additionalProperties.put(key, value); - } -} diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/CaptionResult.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/CaptionResult.java deleted file mode 100644 index 9a4afc917ad5..000000000000 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/CaptionResult.java +++ /dev/null @@ -1,96 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -package com.azure.search.documents.models; - -import com.azure.core.annotation.Fluent; -import com.fasterxml.jackson.annotation.JsonAnyGetter; -import com.fasterxml.jackson.annotation.JsonAnySetter; -import com.fasterxml.jackson.annotation.JsonIgnore; -import com.fasterxml.jackson.annotation.JsonProperty; -import java.util.HashMap; -import java.util.Map; - -/** - * Captions are the most representative passages from the document relatively to the search query. They are often used - * as document summary. Captions are only returned for queries of type 'semantic'.. - */ -@Fluent -public final class CaptionResult { - /* - * A representative text passage extracted from the document most relevant - * to the search query. - */ - @JsonProperty(value = "text", access = JsonProperty.Access.WRITE_ONLY) - private String text; - - /* - * Same text passage as in the Text property with highlighted phrases most - * relevant to the query. - */ - @JsonProperty(value = "highlights", access = JsonProperty.Access.WRITE_ONLY) - private String highlights; - - /* - * Captions are the most representative passages from the document - * relatively to the search query. They are often used as document summary. - * Captions are only returned for queries of type 'semantic'.. - */ - @JsonIgnore private Map additionalProperties; - - /** - * Get the text property: A representative text passage extracted from the document most relevant to the search - * query. - * - * @return the text value. - */ - public String getText() { - return this.text; - } - - /** - * Get the highlights property: Same text passage as in the Text property with highlighted phrases most relevant to - * the query. - * - * @return the highlights value. - */ - public String getHighlights() { - return this.highlights; - } - - /** - * Get the additionalProperties property: Captions are the most representative passages from the document relatively - * to the search query. They are often used as document summary. Captions are only returned for queries of type - * 'semantic'.. - * - * @return the additionalProperties value. - */ - @JsonAnyGetter - public Map getAdditionalProperties() { - return this.additionalProperties; - } - - /** - * Set the additionalProperties property: Captions are the most representative passages from the document relatively - * to the search query. They are often used as document summary. Captions are only returned for queries of type - * 'semantic'.. - * - * @param additionalProperties the additionalProperties value to set. - * @return the CaptionResult object itself. - */ - public CaptionResult setAdditionalProperties(Map additionalProperties) { - this.additionalProperties = additionalProperties; - return this; - } - - @JsonAnySetter - void setAdditionalProperties(String key, Object value) { - if (additionalProperties == null) { - additionalProperties = new HashMap<>(); - } - additionalProperties.put(key, value); - } -} diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/QueryAnswer.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/QueryAnswer.java deleted file mode 100644 index 621a4d4c144f..000000000000 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/QueryAnswer.java +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -package com.azure.search.documents.models; - -import com.azure.core.util.ExpandableStringEnum; -import com.fasterxml.jackson.annotation.JsonCreator; -import java.util.Collection; - -/** Defines values for QueryAnswer. */ -public final class QueryAnswer extends ExpandableStringEnum { - /** Static value none for QueryAnswer. */ - public static final QueryAnswer NONE = fromString("none"); - - /** Static value extractive for QueryAnswer. */ - public static final QueryAnswer EXTRACTIVE = fromString("extractive"); - - /** - * Creates or finds a QueryAnswer from its string representation. - * - * @param name a name to look for. - * @return the corresponding QueryAnswer. - */ - @JsonCreator - public static QueryAnswer fromString(String name) { - return fromString(name, QueryAnswer.class); - } - - /** @return known QueryAnswer values. */ - public static Collection values() { - return values(QueryAnswer.class); - } -} diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/QueryLanguage.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/QueryLanguage.java deleted file mode 100644 index 3aa323bca749..000000000000 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/QueryLanguage.java +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -package com.azure.search.documents.models; - -import com.azure.core.util.ExpandableStringEnum; -import com.fasterxml.jackson.annotation.JsonCreator; -import java.util.Collection; - -/** Defines values for QueryLanguage. */ -public final class QueryLanguage extends ExpandableStringEnum { - /** Static value none for QueryLanguage. */ - public static final QueryLanguage NONE = fromString("none"); - - /** Static value en-us for QueryLanguage. */ - public static final QueryLanguage EN_US = fromString("en-us"); - - /** - * Creates or finds a QueryLanguage from its string representation. - * - * @param name a name to look for. - * @return the corresponding QueryLanguage. - */ - @JsonCreator - public static QueryLanguage fromString(String name) { - return fromString(name, QueryLanguage.class); - } - - /** @return known QueryLanguage values. */ - public static Collection values() { - return values(QueryLanguage.class); - } -} diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/QuerySpeller.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/QuerySpeller.java deleted file mode 100644 index 7a150626201d..000000000000 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/QuerySpeller.java +++ /dev/null @@ -1,36 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. -// Code generated by Microsoft (R) AutoRest Code Generator. -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -package com.azure.search.documents.models; - -import com.azure.core.util.ExpandableStringEnum; -import com.fasterxml.jackson.annotation.JsonCreator; -import java.util.Collection; - -/** Defines values for QuerySpeller. */ -public final class QuerySpeller extends ExpandableStringEnum { - /** Static value none for QuerySpeller. */ - public static final QuerySpeller NONE = fromString("none"); - - /** Static value lexicon for QuerySpeller. */ - public static final QuerySpeller LEXICON = fromString("lexicon"); - - /** - * Creates or finds a QuerySpeller from its string representation. - * - * @param name a name to look for. - * @return the corresponding QuerySpeller. - */ - @JsonCreator - public static QuerySpeller fromString(String name) { - return fromString(name, QuerySpeller.class); - } - - /** @return known QuerySpeller values. */ - public static Collection values() { - return values(QuerySpeller.class); - } -} diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/QueryType.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/QueryType.java index e2d7ffa1a409..f46e4b00a21f 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/QueryType.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/QueryType.java @@ -15,10 +15,7 @@ public enum QueryType { SIMPLE("simple"), /** Enum value full. */ - FULL("full"), - - /** Enum value semantic. */ - SEMANTIC("semantic"); + FULL("full"); /** The actual serialized value for a QueryType instance. */ private final String value; diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/SearchOptions.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/SearchOptions.java index 23cd154fbba2..d8b4f44b8970 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/SearchOptions.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/SearchOptions.java @@ -113,39 +113,6 @@ public final class SearchOptions { @JsonProperty(value = "searchFields") private List searchFields; - /* - * The language of the query. - */ - @JsonProperty(value = "queryLanguage") - private QueryLanguage queryLanguage; - - /* - * Improve search recall by spell-correcting individual search query terms. - */ - @JsonProperty(value = "speller") - private QuerySpeller speller; - - /* - * This parameter is only valid if the query type is 'semantic'. If set, - * the query returns answers extracted from key passages in the highest - * ranked documents. The number of answers returned can be configured by - * appending the pipe character '|' followed by the 'count-' option after the answers parameter value, such as - * 'extractive|count-3'. Default count is 1. - */ - @JsonProperty(value = "answers") - private QueryAnswer answers; - - /* - * This parameter is only valid if the query type is 'semantic'. If set, - * the query returns answers extracted from key passages in the highest - * ranked documents. The number of answers returned can be configured by - * appending the pipe character '|' followed by the 'count-' option after the answers parameter value, such as - * 'extractive|count-3'. Default count is 1. - */ - private Integer answersCount; - /* * A value that specifies whether any or all of the search terms must be * matched in order to count the document as a match. @@ -477,98 +444,6 @@ public SearchOptions setSearchFields(String... searchFields) { return this; } - /** - * Get the queryLanguage property: The language of the query. - * - * @return the queryLanguage value. - */ - public QueryLanguage getQueryLanguage() { - return this.queryLanguage; - } - - /** - * Set the queryLanguage property: The language of the query. - * - * @param queryLanguage the queryLanguage value to set. - * @return the SearchOptions object itself. - */ - public SearchOptions setQueryLanguage(QueryLanguage queryLanguage) { - this.queryLanguage = queryLanguage; - return this; - } - - /** - * Get the speller property: Improve search recall by spell-correcting individual search query terms. - * - * @return the speller value. - */ - public QuerySpeller getSpeller() { - return this.speller; - } - - /** - * Set the speller property: Improve search recall by spell-correcting individual search query terms. - * - * @param speller the speller value to set. - * @return the SearchOptions object itself. - */ - public SearchOptions setSpeller(QuerySpeller speller) { - this.speller = speller; - return this; - } - - /** - * Get the answers property: This parameter is only valid if the query type is 'semantic'. If set, the query returns - * answers extracted from key passages in the highest ranked documents. The number of answers returned can be - * configured by appending the pipe character '|' followed by the 'count-<number of answers>' option after the - * answers parameter value, such as 'extractive|count-3'. Default count is 1. - * - * @return the answers value. - */ - public QueryAnswer getAnswers() { - return this.answers; - } - - /** - * Set the answers property: This parameter is only valid if the query type is 'semantic'. If set, the query returns - * answers extracted from key passages in the highest ranked documents. The number of answers returned can be - * configured by appending the pipe character '|' followed by the 'count-<number of answers>' option after the - * answers parameter value, such as 'extractive|count-3'. Default count is 1. - * - * @param answers the answers value to set. - * @return the SearchOptions object itself. - */ - public SearchOptions setAnswers(QueryAnswer answers) { - this.answers = answers; - return this; - } - - /** - * Get the answers count property: This parameter is only valid if the query type is 'semantic'. If set, the query - * returns answers extracted from key passages in the highest ranked documents. The number of answers returned can - * be configured by appending the pipe character '|' followed by the 'count-<number of answers>' option after - * the answers parameter value, such as 'extractive|count-3'. Default count is 1. - * - * @return the answers count value. - */ - public Integer getAnswersCount() { - return this.answersCount; - } - - /** - * Set the answers count property: This parameter is only valid if the query type is 'semantic'. If set, the query - * returns answers extracted from key passages in the highest ranked documents. The number of answers returned can - * be configured by appending the pipe character '|' followed by the 'count-<number of answers>' option after - * the answers parameter value, such as 'extractive|count-3'. Default count is 1. - * - * @param answersCount the answers count value to set. - * @return the SearchOptions object itself. - */ - public SearchOptions setAnswersCount(Integer answersCount) { - this.answersCount = answersCount; - return this; - } - /** * Get the searchMode property: A value that specifies whether any or all of the search terms must be matched in * order to count the document as a match. diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/SearchResult.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/SearchResult.java index 58a53a0b192b..50a341fda0ab 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/SearchResult.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/models/SearchResult.java @@ -33,15 +33,6 @@ public final class SearchResult { @JsonProperty(value = "@search.score", required = true, access = JsonProperty.Access.WRITE_ONLY) private double score; - /* - * The relevance score computed by the semantic ranker for the top search - * results. Search results are sorted by the RerankerScore first and then - * by the Score. RerankerScore is only returned for queries of type - * 'semantic'. - */ - @JsonProperty(value = "@search.rerankerScore", access = JsonProperty.Access.WRITE_ONLY) - private Double rerankerScore; - /* * Text fragments from the document that indicate the matching search * terms, organized by each applicable field; null if hit highlighting was @@ -50,14 +41,6 @@ public final class SearchResult { @JsonProperty(value = "@search.highlights", access = JsonProperty.Access.WRITE_ONLY) private Map> highlights; - /* - * Captions are the most representative passages from the document - * relatively to the search query. They are often used as document summary. - * Captions are only returned for queries of type 'semantic'. - */ - @JsonProperty(value = "@search.captions", access = JsonProperty.Access.WRITE_ONLY) - private List captions; - /* * Contains a document found by a search query, plus associated metadata. */ @@ -83,16 +66,6 @@ public void setHighlights(SearchResult searchResult, Map> h public void setJsonSerializer(SearchResult searchResult, JsonSerializer jsonSerializer) { searchResult.setJsonSerializer(jsonSerializer); } - - @Override - public void setRerankerScore(SearchResult searchResult, Double rerankerScore) { - searchResult.setRerankerScore(rerankerScore); - } - - @Override - public void setCaptions(SearchResult searchResult, List captions) { - searchResult.setCaptions(captions); - } }); } @@ -117,17 +90,6 @@ public double getScore() { return this.score; } - /** - * Get the rerankerScore property: The relevance score computed by the semantic ranker for the top search results. - * Search results are sorted by the RerankerScore first and then by the Score. RerankerScore is only returned for - * queries of type 'semantic'. - * - * @return the rerankerScore value. - */ - public Double getRerankerScore() { - return this.rerankerScore; - } - /** * Get the highlights property: 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. @@ -138,17 +100,6 @@ public Map> getHighlights() { return this.highlights; } - /** - * Get the captions property: Captions are the most representative passages from the document relatively to the - * search query. They are often used as document summary. Captions are only returned for queries of type - * 'semantic'. - * - * @return the captions value. - */ - public List getCaptions() { - return this.captions; - } - /** * Get the additionalProperties property: Unmatched properties from the message are deserialized this collection. * @@ -196,22 +147,4 @@ private void setHighlights(Map> highlights) { private void setJsonSerializer(JsonSerializer jsonSerializer) { this.jsonSerializer = jsonSerializer; } - - /** - * The private setter to set the rerankerScore property via {@code SearchResultHelper.setRerankerScore}. - * - * @param rerankerScore The reranker score. - */ - private void setRerankerScore(Double rerankerScore) { - this.rerankerScore = rerankerScore; - } - - /** - * The private setter to set the captions property via {@code SearchResultHelper.setCaptions}. - * - * @param captions The captions. - */ - private void setCaptions(List captions) { - this.captions = captions; - } } diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/util/SearchPagedFlux.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/util/SearchPagedFlux.java index 15fbe528ef00..ea93d3f665d9 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/util/SearchPagedFlux.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/util/SearchPagedFlux.java @@ -7,7 +7,6 @@ import com.azure.core.util.paging.ContinuablePagedFlux; import com.azure.search.documents.implementation.models.SearchFirstPageResponseWrapper; import com.azure.search.documents.implementation.models.SearchRequest; -import com.azure.search.documents.models.AnswerResult; import com.azure.search.documents.models.FacetResult; import com.azure.search.documents.models.SearchResult; import reactor.core.publisher.Mono; @@ -101,21 +100,4 @@ public Mono>> getFacets() { return Mono.just(metaData.getFirstPageResponse().getFacets()); }); } - - /** - * The answer results based on the search request. - *

- * If {@code answers} wasn't supplied in the request this will be null. - * - * @return The answer results if {@code answers} were supplied in the request, otherwise null. - */ - public Mono> getAnswers() { - return metadataSupplier.get() - .flatMap(metaData -> { - if (metaData.getFirstPageResponse().getAnswers() == null) { - return Mono.empty(); - } - return Mono.just(metaData.getFirstPageResponse().getAnswers()); - }); - } } diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/util/SearchPagedIterable.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/util/SearchPagedIterable.java index 0ad6636ad893..565fd60d1903 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/util/SearchPagedIterable.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/util/SearchPagedIterable.java @@ -6,7 +6,6 @@ import com.azure.core.http.rest.PagedIterableBase; import com.azure.core.util.paging.ContinuablePagedIterable; import com.azure.search.documents.implementation.models.SearchRequest; -import com.azure.search.documents.models.AnswerResult; import com.azure.search.documents.models.FacetResult; import com.azure.search.documents.models.SearchResult; @@ -64,15 +63,4 @@ public Map> getFacets() { public Long getTotalCount() { return pagedFlux.getTotalCount().block(); } - - /** - * The answer results based on the search request. - *

- * If {@code answers} wasn't supplied in the request this will be null. - * - * @return The answer results if {@code answers} were supplied in the request, otherwise null. - */ - public List getAnswers() { - return pagedFlux.getAnswers().block(); - } } diff --git a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/util/SearchPagedResponse.java b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/util/SearchPagedResponse.java index 6c3940c4cdde..c94123f20f48 100644 --- a/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/util/SearchPagedResponse.java +++ b/sdk/search/azure-search-documents/src/main/java/com/azure/search/documents/util/SearchPagedResponse.java @@ -7,7 +7,6 @@ import com.azure.core.http.rest.Page; import com.azure.core.http.rest.PagedResponseBase; import com.azure.core.http.rest.Response; -import com.azure.search.documents.models.AnswerResult; import com.azure.search.documents.models.FacetResult; import com.azure.search.documents.models.SearchResult; @@ -27,7 +26,6 @@ public final class SearchPagedResponse extends PagedResponseBase> facets; - private final List answers; /** * Constructor @@ -40,21 +38,6 @@ public final class SearchPagedResponse extends PagedResponseBase> response, String continuationToken, Map> facets, Long count, Double coverage) { - this(response, continuationToken, facets, count, coverage, null); - } - - /** - * Constructor - * - * @param response The response containing information such as the request, status code, headers, and values. - * @param continuationToken Continuation token for the next operation. - * @param facets Facets contained in the search. - * @param count Total number of documents available as a result for the search. - * @param coverage Percent of the index used in the search operation. - * @param answers Answers contained in the search. - */ - public SearchPagedResponse(Response> response, String continuationToken, - Map> facets, Long count, Double coverage, List answers) { super(response.getRequest(), response.getStatusCode(), response.getHeaders(), response.getValue(), continuationToken, null); @@ -62,7 +45,6 @@ public SearchPagedResponse(Response> response, String continu this.facets = facets; this.count = count; this.coverage = coverage; - this.answers = answers; } /** @@ -100,17 +82,6 @@ Long getCount() { return count; } - /** - * The answer results based on the search request. - *

- * If {@code answers} wasn't supplied in the request this will be null. - * - * @return The answer results if {@code answers} were supplied in the request, otherwise null. - */ - List getAnswers() { - return answers; - } - @Override public List getValue() { return value; diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteDefaultsToOneTermMode.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteDefaultsToOneTermMode.json index 08d4c2d41b3f..cf04e6c8828f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteDefaultsToOneTermMode.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteDefaultsToOneTermMode.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "80aa15de-699d-4a9c-bd59-038d82751c64", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a11d6cc6-ab09-4620-935a-899df24fd49e", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "222", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "80aa15de-699d-4a9c-bd59-038d82751c64", + "request-id" : "a11d6cc6-ab09-4620-935a-899df24fd49e", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "80aa15de-699d-4a9c-bd59-038d82751c64", - "elapsed-time" : "6", + "client-request-id" : "a11d6cc6-ab09-4620-935a-899df24fd49e", + "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "222", "Body" : "{\"value\":[{\"text\":\"point\",\"queryPlusText\":\"point\"},{\"text\":\"police\",\"queryPlusText\":\"police\"},{\"text\":\"polite\",\"queryPlusText\":\"polite\"},{\"text\":\"pool\",\"queryPlusText\":\"pool\"},{\"text\":\"popular\",\"queryPlusText\":\"popular\"}]}", - "x-ms-client-request-id" : "80aa15de-699d-4a9c-bd59-038d82751c64", + "x-ms-client-request-id" : "a11d6cc6-ab09-4620-935a-899df24fd49e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteExcludesFieldsNotInSuggester.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteExcludesFieldsNotInSuggester.json index 02f34792b794..3fbd4d3cc4d6 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteExcludesFieldsNotInSuggester.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteExcludesFieldsNotInSuggester.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9f63b07b-969d-418b-af64-483bf60fb96c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a9d9247b-bcfd-4498-b7e4-8c954e51ae4b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9f63b07b-969d-418b-af64-483bf60fb96c", + "request-id" : "a9d9247b-bcfd-4498-b7e4-8c954e51ae4b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9f63b07b-969d-418b-af64-483bf60fb96c", - "elapsed-time" : "4", + "client-request-id" : "a9d9247b-bcfd-4498-b7e4-8c954e51ae4b", + "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12", "Body" : "{\"value\":[]}", - "x-ms-client-request-id" : "9f63b07b-969d-418b-af64-483bf60fb96c", + "x-ms-client-request-id" : "a9d9247b-bcfd-4498-b7e4-8c954e51ae4b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteFuzzyIsOffByDefault.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteFuzzyIsOffByDefault.json index 865d9b063319..16e905f70538 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteFuzzyIsOffByDefault.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteFuzzyIsOffByDefault.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "22c19d78-d03a-441a-bdd5-3bcbcb15d133", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9abe0e2b-0b15-4054-bab4-9976e5068eec", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "22c19d78-d03a-441a-bdd5-3bcbcb15d133", + "request-id" : "9abe0e2b-0b15-4054-bab4-9976e5068eec", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "22c19d78-d03a-441a-bdd5-3bcbcb15d133", - "elapsed-time" : "5", + "client-request-id" : "9abe0e2b-0b15-4054-bab4-9976e5068eec", + "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12", "Body" : "{\"value\":[]}", - "x-ms-client-request-id" : "22c19d78-d03a-441a-bdd5-3bcbcb15d133", + "x-ms-client-request-id" : "9abe0e2b-0b15-4054-bab4-9976e5068eec", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteOneTerm.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteOneTerm.json index 01e960520985..eaf84396dd8f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteOneTerm.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteOneTerm.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b4d660d4-97ff-440c-9076-8947d1ff64d2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ac6d67cd-14da-4c82-b3ff-75fcfa35830d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "222", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b4d660d4-97ff-440c-9076-8947d1ff64d2", + "request-id" : "ac6d67cd-14da-4c82-b3ff-75fcfa35830d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b4d660d4-97ff-440c-9076-8947d1ff64d2", - "elapsed-time" : "4", + "client-request-id" : "ac6d67cd-14da-4c82-b3ff-75fcfa35830d", + "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "222", "Body" : "{\"value\":[{\"text\":\"point\",\"queryPlusText\":\"point\"},{\"text\":\"police\",\"queryPlusText\":\"police\"},{\"text\":\"polite\",\"queryPlusText\":\"polite\"},{\"text\":\"pool\",\"queryPlusText\":\"pool\"},{\"text\":\"popular\",\"queryPlusText\":\"popular\"}]}", - "x-ms-client-request-id" : "b4d660d4-97ff-440c-9076-8947d1ff64d2", + "x-ms-client-request-id" : "ac6d67cd-14da-4c82-b3ff-75fcfa35830d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteOneTermWithContext.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteOneTermWithContext.json index 382235821651..2bf304a4c032 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteOneTermWithContext.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteOneTermWithContext.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b4cd517-eb80-4bfb-8ced-d9eb49d0e17f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8430fa01-b9a0-4e6d-9bc9-811aa6bbe936", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "208", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3b4cd517-eb80-4bfb-8ced-d9eb49d0e17f", + "request-id" : "8430fa01-b9a0-4e6d-9bc9-811aa6bbe936", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3b4cd517-eb80-4bfb-8ced-d9eb49d0e17f", - "elapsed-time" : "5", + "client-request-id" : "8430fa01-b9a0-4e6d-9bc9-811aa6bbe936", + "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "208", "Body" : "{\"value\":[{\"text\":\"very police\",\"queryPlusText\":\"looking for very police\"},{\"text\":\"very polite\",\"queryPlusText\":\"looking for very polite\"},{\"text\":\"very popular\",\"queryPlusText\":\"looking for very popular\"}]}", - "x-ms-client-request-id" : "3b4cd517-eb80-4bfb-8ced-d9eb49d0e17f", + "x-ms-client-request-id" : "8430fa01-b9a0-4e6d-9bc9-811aa6bbe936", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteStaticallyTypedDocuments.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteStaticallyTypedDocuments.json index 674db0986284..88ede8acd40a 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteStaticallyTypedDocuments.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteStaticallyTypedDocuments.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8673aaa6-28e9-4169-abd1-29a102ed88bd", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "55bc7877-2434-412b-9ef7-2855c2e867c1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "247", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8673aaa6-28e9-4169-abd1-29a102ed88bd", + "request-id" : "55bc7877-2434-412b-9ef7-2855c2e867c1", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8673aaa6-28e9-4169-abd1-29a102ed88bd", + "client-request-id" : "55bc7877-2434-412b-9ef7-2855c2e867c1", "elapsed-time" : "7", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "247", "Body" : "{\"value\":[{\"text\":\"point\",\"queryPlusText\":\"very point\"},{\"text\":\"police\",\"queryPlusText\":\"very police\"},{\"text\":\"polite\",\"queryPlusText\":\"very polite\"},{\"text\":\"pool\",\"queryPlusText\":\"very pool\"},{\"text\":\"popular\",\"queryPlusText\":\"very popular\"}]}", - "x-ms-client-request-id" : "8673aaa6-28e9-4169-abd1-29a102ed88bd", + "x-ms-client-request-id" : "55bc7877-2434-412b-9ef7-2855c2e867c1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteThrowsWhenGivenBadSuggesterName.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteThrowsWhenGivenBadSuggesterName.json index 0c640254d522..e5d3949e6f68 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteThrowsWhenGivenBadSuggesterName.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteThrowsWhenGivenBadSuggesterName.json @@ -1,28 +1,28 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ada4226a-5740-4ce9-b33b-f807ef87aa16", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b23f8609-979a-4908-b7b9-b8e756bf53ec", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "317", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ada4226a-5740-4ce9-b33b-f807ef87aa16", + "request-id" : "b23f8609-979a-4908-b7b9-b8e756bf53ec", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ada4226a-5740-4ce9-b33b-f807ef87aa16", - "elapsed-time" : "21", + "client-request-id" : "b23f8609-979a-4908-b7b9-b8e756bf53ec", + "elapsed-time" : "4", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "317", "Body" : "{\"error\":{\"code\":\"MissingRequiredParameter\",\"message\":\"The specified suggester name 'Invalid suggester' does not exist in this index definition.\\r\\nParameter name: name\",\"details\":[{\"code\":\"MissingSuggesterName\",\"message\":\"The specified suggester name 'Invalid suggester' does not exist in this index definition.\"}]}}", "Content-Language" : "en", - "x-ms-client-request-id" : "ada4226a-5740-4ce9-b33b-f807ef87aa16", + "x-ms-client-request-id" : "b23f8609-979a-4908-b7b9-b8e756bf53ec", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteThrowsWhenRequestIsMalformed.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteThrowsWhenRequestIsMalformed.json index 160a5abc119d..cd15fb976b2d 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteThrowsWhenRequestIsMalformed.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteThrowsWhenRequestIsMalformed.json @@ -1,28 +1,28 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "01991a0d-fd08-4938-945d-990d07aa2007", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9b16dba8-62a9-4cad-add9-8cef484e1b13", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "346", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "01991a0d-fd08-4938-945d-990d07aa2007", + "request-id" : "9b16dba8-62a9-4cad-add9-8cef484e1b13", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "01991a0d-fd08-4938-945d-990d07aa2007", - "elapsed-time" : "3", + "client-request-id" : "9b16dba8-62a9-4cad-add9-8cef484e1b13", + "elapsed-time" : "2", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "346", "Body" : "{\"error\":{\"code\":\"MissingRequiredParameter\",\"message\":\"Cannot find fields enabled for suggestions. Please provide a value for 'suggesterName' in the query.\\r\\nParameter name: suggestions\",\"details\":[{\"code\":\"MissingSuggesterName\",\"message\":\"Cannot find fields enabled for suggestions. Please provide a value for 'suggesterName' in the query.\"}]}}", "Content-Language" : "en", - "x-ms-client-request-id" : "01991a0d-fd08-4938-945d-990d07aa2007", + "x-ms-client-request-id" : "9b16dba8-62a9-4cad-add9-8cef484e1b13", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteTwoTerms.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteTwoTerms.json index b569a71b493d..f87c1df0732f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteTwoTerms.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.canAutocompleteTwoTerms.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e4c7e3c-1d7d-46d7-b0dc-20a1dedca42a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "92a12159-d95c-4638-aec3-b1c65168a542", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "278", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0e4c7e3c-1d7d-46d7-b0dc-20a1dedca42a", + "request-id" : "92a12159-d95c-4638-aec3-b1c65168a542", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0e4c7e3c-1d7d-46d7-b0dc-20a1dedca42a", - "elapsed-time" : "6", + "client-request-id" : "92a12159-d95c-4638-aec3-b1c65168a542", + "elapsed-time" : "7", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "278", "Body" : "{\"value\":[{\"text\":\"point motel\",\"queryPlusText\":\"point motel\"},{\"text\":\"police station\",\"queryPlusText\":\"police station\"},{\"text\":\"polite staff\",\"queryPlusText\":\"polite staff\"},{\"text\":\"pool a\",\"queryPlusText\":\"pool a\"},{\"text\":\"popular hotel\",\"queryPlusText\":\"popular hotel\"}]}", - "x-ms-client-request-id" : "0e4c7e3c-1d7d-46d7-b0dc-20a1dedca42a", + "x-ms-client-request-id" : "92a12159-d95c-4638-aec3-b1c65168a542", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteCanUseHitHighlighting.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteCanUseHitHighlighting.json index 2316c4ef3d84..094c21c3a87c 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteCanUseHitHighlighting.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteCanUseHitHighlighting.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "45809f7e-6a93-4a19-be32-af3aebc5e1a2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "af49a779-46f6-4917-85d0-85a443fece15", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "109", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "45809f7e-6a93-4a19-be32-af3aebc5e1a2", + "request-id" : "af49a779-46f6-4917-85d0-85a443fece15", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "45809f7e-6a93-4a19-be32-af3aebc5e1a2", - "elapsed-time" : "8", + "client-request-id" : "af49a779-46f6-4917-85d0-85a443fece15", + "elapsed-time" : "7", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "109", "Body" : "{\"value\":[{\"text\":\"pool\",\"queryPlusText\":\"pool\"},{\"text\":\"popular\",\"queryPlusText\":\"popular\"}]}", - "x-ms-client-request-id" : "45809f7e-6a93-4a19-be32-af3aebc5e1a2", + "x-ms-client-request-id" : "af49a779-46f6-4917-85d0-85a443fece15", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteOneTermWithContextWithFuzzy.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteOneTermWithContextWithFuzzy.json index 5c08186ad39b..f2ca37fbdfd3 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteOneTermWithContextWithFuzzy.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteOneTermWithContextWithFuzzy.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c3807376-0a19-431f-994f-e1aecea42eb0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "af2ed4a5-7308-44ce-81d0-f6c0daaa0da2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "117", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c3807376-0a19-431f-994f-e1aecea42eb0", + "request-id" : "af2ed4a5-7308-44ce-81d0-f6c0daaa0da2", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c3807376-0a19-431f-994f-e1aecea42eb0", - "elapsed-time" : "9", + "client-request-id" : "af2ed4a5-7308-44ce-81d0-f6c0daaa0da2", + "elapsed-time" : "8", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "117", "Body" : "{\"value\":[{\"text\":\"very polite\",\"queryPlusText\":\"very polite\"},{\"text\":\"very police\",\"queryPlusText\":\"very police\"}]}", - "x-ms-client-request-id" : "c3807376-0a19-431f-994f-e1aecea42eb0", + "x-ms-client-request-id" : "af2ed4a5-7308-44ce-81d0-f6c0daaa0da2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteOneTermWithFuzzy.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteOneTermWithFuzzy.json index 452f449f8fa3..66ba11047d22 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteOneTermWithFuzzy.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteOneTermWithFuzzy.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "65c6c33c-a4ff-4e54-8083-b981ec06cec4", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "01aab66c-17ab-4b96-afbf-215edafd81c1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "177", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "65c6c33c-a4ff-4e54-8083-b981ec06cec4", + "request-id" : "01aab66c-17ab-4b96-afbf-215edafd81c1", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "65c6c33c-a4ff-4e54-8083-b981ec06cec4", + "client-request-id" : "01aab66c-17ab-4b96-afbf-215edafd81c1", "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "177", "Body" : "{\"value\":[{\"text\":\"model\",\"queryPlusText\":\"model\"},{\"text\":\"modern\",\"queryPlusText\":\"modern\"},{\"text\":\"morel\",\"queryPlusText\":\"morel\"},{\"text\":\"motel\",\"queryPlusText\":\"motel\"}]}", - "x-ms-client-request-id" : "65c6c33c-a4ff-4e54-8083-b981ec06cec4", + "x-ms-client-request-id" : "01aab66c-17ab-4b96-afbf-215edafd81c1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteTopTrimsResults.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteTopTrimsResults.json index a38304590381..5832b93cc908 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteTopTrimsResults.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteTopTrimsResults.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c5291b38-12e2-4424-8c2f-ef92b152e794", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "58316055-75f1-4138-94f0-0a4881908c09", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "95", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c5291b38-12e2-4424-8c2f-ef92b152e794", + "request-id" : "58316055-75f1-4138-94f0-0a4881908c09", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c5291b38-12e2-4424-8c2f-ef92b152e794", - "elapsed-time" : "6", + "client-request-id" : "58316055-75f1-4138-94f0-0a4881908c09", + "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "95", "Body" : "{\"value\":[{\"text\":\"point\",\"queryPlusText\":\"point\"},{\"text\":\"police\",\"queryPlusText\":\"police\"}]}", - "x-ms-client-request-id" : "c5291b38-12e2-4424-8c2f-ef92b152e794", + "x-ms-client-request-id" : "58316055-75f1-4138-94f0-0a4881908c09", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteTwoTermsWithFuzzy.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteTwoTermsWithFuzzy.json index d3d363aa2716..11bcad73c901 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteTwoTermsWithFuzzy.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteTwoTermsWithFuzzy.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "fecbc00a-4ab8-4288-84c2-ef42890abe45", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1c408871-282f-45ef-afa6-fdf52ccf5205", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "290", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "fecbc00a-4ab8-4288-84c2-ef42890abe45", + "request-id" : "1c408871-282f-45ef-afa6-fdf52ccf5205", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "fecbc00a-4ab8-4288-84c2-ef42890abe45", - "elapsed-time" : "8", + "client-request-id" : "1c408871-282f-45ef-afa6-fdf52ccf5205", + "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "290", "Body" : "{\"value\":[{\"text\":\"model suites\",\"queryPlusText\":\"model suites\"},{\"text\":\"modern architecture\",\"queryPlusText\":\"modern architecture\"},{\"text\":\"modern stay\",\"queryPlusText\":\"modern stay\"},{\"text\":\"morel coverings\",\"queryPlusText\":\"morel coverings\"},{\"text\":\"motel\",\"queryPlusText\":\"motel\"}]}", - "x-ms-client-request-id" : "fecbc00a-4ab8-4288-84c2-ef42890abe45", + "x-ms-client-request-id" : "1c408871-282f-45ef-afa6-fdf52ccf5205", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteWithFilter.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteWithFilter.json index ca9c38f7ac8b..7f2065fc3b0e 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteWithFilter.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteWithFilter.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9edae75e-f39e-4521-b894-ebfc9d46b149", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "016368e3-4df5-41bc-89c1-0611cf9b687c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "54", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9edae75e-f39e-4521-b894-ebfc9d46b149", + "request-id" : "016368e3-4df5-41bc-89c1-0611cf9b687c", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9edae75e-f39e-4521-b894-ebfc9d46b149", - "elapsed-time" : "23", + "client-request-id" : "016368e3-4df5-41bc-89c1-0611cf9b687c", + "elapsed-time" : "50", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "54", "Body" : "{\"value\":[{\"text\":\"polite\",\"queryPlusText\":\"polite\"}]}", - "x-ms-client-request-id" : "9edae75e-f39e-4521-b894-ebfc9d46b149", + "x-ms-client-request-id" : "016368e3-4df5-41bc-89c1-0611cf9b687c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteWithFilterAndFuzzy.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteWithFilterAndFuzzy.json index af3b9eaa97c9..3ee4a74bf5f8 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteWithFilterAndFuzzy.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteWithFilterAndFuzzy.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8849cb61-82d2-46e6-a155-ce27d8146198", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a7d887bb-a491-4d55-94fd-075d1464c5ab", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "95", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8849cb61-82d2-46e6-a155-ce27d8146198", + "request-id" : "a7d887bb-a491-4d55-94fd-075d1464c5ab", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8849cb61-82d2-46e6-a155-ce27d8146198", - "elapsed-time" : "10", + "client-request-id" : "a7d887bb-a491-4d55-94fd-075d1464c5ab", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "95", "Body" : "{\"value\":[{\"text\":\"modern\",\"queryPlusText\":\"modern\"},{\"text\":\"motel\",\"queryPlusText\":\"motel\"}]}", - "x-ms-client-request-id" : "8849cb61-82d2-46e6-a155-ce27d8146198", + "x-ms-client-request-id" : "a7d887bb-a491-4d55-94fd-075d1464c5ab", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteWithMultipleSelectedFields.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteWithMultipleSelectedFields.json index 5198175c7d4e..993e634cd6aa 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteWithMultipleSelectedFields.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteWithMultipleSelectedFields.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bab90f25-bc6f-4387-9e6a-882231ac1602", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7ab83873-514f-4294-b223-6fc12140be2c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "95", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "bab90f25-bc6f-4387-9e6a-882231ac1602", + "request-id" : "7ab83873-514f-4294-b223-6fc12140be2c", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "bab90f25-bc6f-4387-9e6a-882231ac1602", - "elapsed-time" : "53", + "client-request-id" : "7ab83873-514f-4294-b223-6fc12140be2c", + "elapsed-time" : "71", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "95", "Body" : "{\"value\":[{\"text\":\"model\",\"queryPlusText\":\"model\"},{\"text\":\"modern\",\"queryPlusText\":\"modern\"}]}", - "x-ms-client-request-id" : "bab90f25-bc6f-4387-9e6a-882231ac1602", + "x-ms-client-request-id" : "7ab83873-514f-4294-b223-6fc12140be2c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteWithSelectedFields.json b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteWithSelectedFields.json index 39fc8363e044..7c7930858ba9 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteWithSelectedFields.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/AutocompleteSyncTests.testAutocompleteWithSelectedFields.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')//docs/search.post.autocomplete?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-autocomplete-shared-instance')/docs/search.post.autocomplete?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7bf7f4ec-33d0-4c71-8fa6-5943fc3421dd", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5a21bfb2-c730-468a-9a5c-7b36335c6afc", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "54", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7bf7f4ec-33d0-4c71-8fa6-5943fc3421dd", + "request-id" : "5a21bfb2-c730-468a-9a5c-7b36335c6afc", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:31 GMT", + "Date" : "Thu, 27 May 2021 21:06:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7bf7f4ec-33d0-4c71-8fa6-5943fc3421dd", - "elapsed-time" : "11", + "client-request-id" : "5a21bfb2-c730-468a-9a5c-7b36335c6afc", + "elapsed-time" : "9", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "54", "Body" : "{\"value\":[{\"text\":\"modern\",\"queryPlusText\":\"modern\"}]}", - "x-ms-client-request-id" : "7bf7f4ec-33d0-4c71-8fa6-5943fc3421dd", + "x-ms-client-request-id" : "5a21bfb2-c730-468a-9a5c-7b36335c6afc", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchAsyncClient.json b/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchAsyncClient.json index 96c54cb73e7f..ee5e0484824f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchAsyncClient.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchAsyncClient.json @@ -1,30 +1,30 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0b8c3eab-49ee-4f91-8782-b47bc7e8a3a9" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5157a42c-e12f-4502-aaf8-d6c6e7f98888" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0b8c3eab-49ee-4f91-8782-b47bc7e8a3a9", + "request-id" : "5157a42c-e12f-4502-aaf8-d6c6e7f98888", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:28:33 GMT", + "Date" : "Thu, 27 May 2021 21:06:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0b8c3eab-49ee-4f91-8782-b47bc7e8a3a9", - "elapsed-time" : "5", + "client-request-id" : "5157a42c-e12f-4502-aaf8-d6c6e7f98888", + "elapsed-time" : "4", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"Message\":\"The index 'index' for service 'alzimmer-test' was not found.\"}", "Content-Language" : "en", - "x-ms-client-request-id" : "0b8c3eab-49ee-4f91-8782-b47bc7e8a3a9", + "x-ms-client-request-id" : "5157a42c-e12f-4502-aaf8-d6c6e7f98888", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null } ], - "variables" : [ "0b8c3eab-49ee-4f91-8782-b47bc7e8a3a9" ] + "variables" : [ "5157a42c-e12f-4502-aaf8-d6c6e7f98888" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchClient.json b/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchClient.json index 5b95d6f561f7..39205d745880 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchClient.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchClient.json @@ -1,30 +1,30 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d3ccbb75-d1dc-419e-b8ef-9207307a36c6" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "67756cd6-fbc7-49f2-8acb-24dc5ac3a007" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d3ccbb75-d1dc-419e-b8ef-9207307a36c6", + "request-id" : "67756cd6-fbc7-49f2-8acb-24dc5ac3a007", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:28:33 GMT", + "Date" : "Thu, 27 May 2021 21:06:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d3ccbb75-d1dc-419e-b8ef-9207307a36c6", - "elapsed-time" : "7", + "client-request-id" : "67756cd6-fbc7-49f2-8acb-24dc5ac3a007", + "elapsed-time" : "6", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"Message\":\"The index 'index' for service 'alzimmer-test' was not found.\"}", "Content-Language" : "en", - "x-ms-client-request-id" : "d3ccbb75-d1dc-419e-b8ef-9207307a36c6", + "x-ms-client-request-id" : "67756cd6-fbc7-49f2-8acb-24dc5ac3a007", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; charset=utf-8" }, "Exception" : null } ], - "variables" : [ "d3ccbb75-d1dc-419e-b8ef-9207307a36c6" ] + "variables" : [ "67756cd6-fbc7-49f2-8acb-24dc5ac3a007" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchIndexAsyncClient.json b/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchIndexAsyncClient.json index 16f6275298b1..14d2b6d709eb 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchIndexAsyncClient.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchIndexAsyncClient.json @@ -1,31 +1,31 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')/search.stats?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/search.stats?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3bcac766-7c34-490c-9022-c10bf1687006" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2e78e526-fb24-4bd3-a82c-178d67f6d71e" }, "Response" : { + "content-length" : "76", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3bcac766-7c34-490c-9022-c10bf1687006", + "request-id" : "2e78e526-fb24-4bd3-a82c-178d67f6d71e", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:28:33 GMT", + "Date" : "Thu, 27 May 2021 21:06:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3bcac766-7c34-490c-9022-c10bf1687006", - "elapsed-time" : "20", + "client-request-id" : "2e78e526-fb24-4bd3-a82c-178d67f6d71e", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "76", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"An index named 'index' could not be found.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "3bcac766-7c34-490c-9022-c10bf1687006", + "x-ms-client-request-id" : "2e78e526-fb24-4bd3-a82c-178d67f6d71e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "3bcac766-7c34-490c-9022-c10bf1687006" ] + "variables" : [ "2e78e526-fb24-4bd3-a82c-178d67f6d71e" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchIndexClient.json b/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchIndexClient.json index 214d4eaf1e1d..417220c14ad6 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchIndexClient.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchIndexClient.json @@ -1,31 +1,31 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2a5278ee-abb6-4840-9c4c-1aa99b34fd2a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d7fc90de-3a75-4f3e-b3f2-680ec4e4e315" }, "Response" : { + "content-length" : "106", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2a5278ee-abb6-4840-9c4c-1aa99b34fd2a", + "request-id" : "d7fc90de-3a75-4f3e-b3f2-680ec4e4e315", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:28:33 GMT", + "Date" : "Thu, 27 May 2021 21:06:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2a5278ee-abb6-4840-9c4c-1aa99b34fd2a", - "elapsed-time" : "14", + "client-request-id" : "d7fc90de-3a75-4f3e-b3f2-680ec4e4e315", + "elapsed-time" : "16", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "106", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No index with the name 'index' was found in the service 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "2a5278ee-abb6-4840-9c4c-1aa99b34fd2a", + "x-ms-client-request-id" : "d7fc90de-3a75-4f3e-b3f2-680ec4e4e315", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "2a5278ee-abb6-4840-9c4c-1aa99b34fd2a" ] + "variables" : [ "d7fc90de-3a75-4f3e-b3f2-680ec4e4e315" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchIndexerAsyncClient.json b/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchIndexerAsyncClient.json index 7734220ede60..01f6e3a22269 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchIndexerAsyncClient.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchIndexerAsyncClient.json @@ -1,31 +1,31 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "336ca649-5f9e-4590-b713-f20ce5c4d3c5" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6d8c18a6-df38-4ddf-a8d0-ebb7f355755e" }, "Response" : { + "content-length" : "93", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "336ca649-5f9e-4590-b713-f20ce5c4d3c5", + "request-id" : "6d8c18a6-df38-4ddf-a8d0-ebb7f355755e", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:28:33 GMT", + "Date" : "Thu, 27 May 2021 21:06:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "336ca649-5f9e-4590-b713-f20ce5c4d3c5", - "elapsed-time" : "6", + "client-request-id" : "6d8c18a6-df38-4ddf-a8d0-ebb7f355755e", + "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "93", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"Indexer 'indexer' was not found in service 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "336ca649-5f9e-4590-b713-f20ce5c4d3c5", + "x-ms-client-request-id" : "6d8c18a6-df38-4ddf-a8d0-ebb7f355755e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "336ca649-5f9e-4590-b713-f20ce5c4d3c5" ] + "variables" : [ "6d8c18a6-df38-4ddf-a8d0-ebb7f355755e" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchIndexerClient.json b/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchIndexerClient.json index b12fb7714d8a..a97c523c4f09 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchIndexerClient.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/ContextRequestIdTests.searchIndexerClient.json @@ -1,31 +1,31 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0cfbb393-28a4-4034-9436-12ab0d55cff8" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "31a01c90-3849-4c8c-ae97-48cc133ab299" }, "Response" : { + "content-length" : "93", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0cfbb393-28a4-4034-9436-12ab0d55cff8", + "request-id" : "31a01c90-3849-4c8c-ae97-48cc133ab299", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:28:33 GMT", + "Date" : "Thu, 27 May 2021 21:06:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0cfbb393-28a4-4034-9436-12ab0d55cff8", - "elapsed-time" : "10", + "client-request-id" : "31a01c90-3849-4c8c-ae97-48cc133ab299", + "elapsed-time" : "15", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "93", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"Indexer 'indexer' was not found in service 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "0cfbb393-28a4-4034-9436-12ab0d55cff8", + "x-ms-client-request-id" : "31a01c90-3849-4c8c-ae97-48cc133ab299", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "0cfbb393-28a4-4034-9436-12ab0d55cff8" ] + "variables" : [ "31a01c90-3849-4c8c-ae97-48cc133ab299" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.addingCustomAnalyzerThrowsHttpExceptionByDefault.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.addingCustomAnalyzerThrowsHttpExceptionByDefault.json index ae7bc67ebb2b..19304a70a7e1 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.addingCustomAnalyzerThrowsHttpExceptionByDefault.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.addingCustomAnalyzerThrowsHttpExceptionByDefault.json @@ -1,82 +1,82 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "91b64ef8-2a15-4dee-bec1-3679c0cad3b2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f5dc537c-7558-4a7b-b6e7-fbf24aa7ddbe", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8392", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "91b64ef8-2a15-4dee-bec1-3679c0cad3b2", + "request-id" : "f5dc537c-7558-4a7b-b6e7-fbf24aa7ddbe", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:04 GMT", + "Date" : "Thu, 27 May 2021 21:14:36 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627B38D17B5\"", - "client-request-id" : "91b64ef8-2a15-4dee-bec1-3679c0cad3b2", - "elapsed-time" : "1090", + "ETag" : "W/\"0x8D921546EDD739C\"", + "client-request-id" : "f5dc537c-7558-4a7b-b6e7-fbf24aa7ddbe", + "elapsed-time" : "1445", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8895", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627B38D17B5\\\"\",\"name\":\"hotelsaddingcustomanalyzerthrowshttpexceptionbydefault0b845407c\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.StopAnalyzer\",\"name\":\"a1\",\"stopwords\":[]}],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "91b64ef8-2a15-4dee-bec1-3679c0cad3b2", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921546EDD739C\\\"\",\"name\":\"hotelsaddingcustomanalyzerthrowshttpexceptionbydefaultc4a210975\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.StopAnalyzer\",\"name\":\"a1\",\"stopwords\":[]}],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "f5dc537c-7558-4a7b-b6e7-fbf24aa7ddbe", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsaddingcustomanalyzerthrowshttpexceptionbydefault0b845407c')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsaddingcustomanalyzerthrowshttpexceptionbydefaultc4a210975')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsaddingcustomanalyzerthrowshttpexceptionbydefault0b845407c')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsaddingcustomanalyzerthrowshttpexceptionbydefaultc4a210975')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6a99c31-5ce6-4c72-af09-c52dd75c4b68", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c4a82c20-8309-4239-87ab-9ba07f10854e", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "739", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f6a99c31-5ce6-4c72-af09-c52dd75c4b68", + "request-id" : "c4a82c20-8309-4239-87ab-9ba07f10854e", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:36:05 GMT", + "Date" : "Thu, 27 May 2021 21:14:37 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f6a99c31-5ce6-4c72-af09-c52dd75c4b68", - "elapsed-time" : "179", + "client-request-id" : "c4a82c20-8309-4239-87ab-9ba07f10854e", + "elapsed-time" : "163", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "739", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"An index with the name 'hotelsaddingcustomanalyzerthrowshttpexceptionbydefault0b845407c' in service 'alzimmer-test' could not be updated. Index update not allowed because it would cause downtime. In order to add new analyzers, normalizers, tokenizers, token filters, or character filters to an existing index, or modify its similarity settings, set the 'allowIndexDowntime' query parameter to 'true' in the index update request. Note that this operation will put your index offline for at least a few seconds, causing your 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.\"}}", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"An index with the name 'hotelsaddingcustomanalyzerthrowshttpexceptionbydefaultc4a210975' in service 'alzimmer-test' could not be updated. Index update not allowed because it would cause downtime. In order to add new analyzers, normalizers, tokenizers, token filters, or character filters to an existing index, or modify its similarity settings, set the 'allowIndexDowntime' query parameter to 'true' in the index update request. Note that this operation will put your index offline for at least a few seconds, causing your 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.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "f6a99c31-5ce6-4c72-af09-c52dd75c4b68", + "x-ms-client-request-id" : "c4a82c20-8309-4239-87ab-9ba07f10854e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsaddingcustomanalyzerthrowshttpexceptionbydefault0b845407c')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsaddingcustomanalyzerthrowshttpexceptionbydefaultc4a210975')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0b5d3b8d-6ce8-4565-a4a4-2589adf9b3dc" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "61e21907-9d71-48d6-be57-452e96d2b050" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0b5d3b8d-6ce8-4565-a4a4-2589adf9b3dc", - "elapsed-time" : "1199", + "client-request-id" : "61e21907-9d71-48d6-be57-452e96d2b050", + "elapsed-time" : "497", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "0b5d3b8d-6ce8-4565-a4a4-2589adf9b3dc", + "request-id" : "61e21907-9d71-48d6-be57-452e96d2b050", "StatusCode" : "204", - "x-ms-client-request-id" : "0b5d3b8d-6ce8-4565-a4a4-2589adf9b3dc", - "Date" : "Fri, 02 Apr 2021 22:36:05 GMT" + "x-ms-client-request-id" : "61e21907-9d71-48d6-be57-452e96d2b050", + "Date" : "Thu, 27 May 2021 21:14:36 GMT" }, "Exception" : null } ], - "variables" : [ "hotelsaddingcustomanalyzerthrowshttpexceptionbydefault0b845407c" ] + "variables" : [ "hotelsaddingcustomanalyzerthrowshttpexceptionbydefaultc4a210975" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canAddCustomAnalyzerWithIndexDowntime.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canAddCustomAnalyzerWithIndexDowntime.json index 965f2262911b..af94d1872758 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canAddCustomAnalyzerWithIndexDowntime.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canAddCustomAnalyzerWithIndexDowntime.json @@ -1,82 +1,82 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ebe74a48-d2ea-4f9e-9f07-a7537f433d48", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0fa7283a-6df8-4432-8b91-c97a250435c1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8386", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ebe74a48-d2ea-4f9e-9f07-a7537f433d48", + "request-id" : "0fa7283a-6df8-4432-8b91-c97a250435c1", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:23 GMT", + "Date" : "Thu, 27 May 2021 21:13:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6279B57A384\"", - "client-request-id" : "ebe74a48-d2ea-4f9e-9f07-a7537f433d48", - "elapsed-time" : "1111", + "ETag" : "W/\"0x8D92154567EBC25\"", + "client-request-id" : "0fa7283a-6df8-4432-8b91-c97a250435c1", + "elapsed-time" : "1465", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8889", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6279B57A384\\\"\",\"name\":\"hotelscanaddcustomanalyzerwithindexdowntimeedb698645fa7ca\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.StopAnalyzer\",\"name\":\"a1\",\"stopwords\":[]}],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "ebe74a48-d2ea-4f9e-9f07-a7537f433d48", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154567EBC25\\\"\",\"name\":\"hotelscanaddcustomanalyzerwithindexdowntime27268955d10820\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.StopAnalyzer\",\"name\":\"a1\",\"stopwords\":[]}],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "0fa7283a-6df8-4432-8b91-c97a250435c1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanaddcustomanalyzerwithindexdowntimeedb698645fa7ca')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanaddcustomanalyzerwithindexdowntime27268955d10820')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanaddcustomanalyzerwithindexdowntimeedb698645fa7ca')?allowIndexDowntime=true&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanaddcustomanalyzerwithindexdowntime27268955d10820')?allowIndexDowntime=true&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0bde4632-0e1f-4ed6-add1-e49f4773ac51", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "115642a6-6d47-44d4-ae8c-7b049b51e904", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8468", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0bde4632-0e1f-4ed6-add1-e49f4773ac51", + "request-id" : "115642a6-6d47-44d4-ae8c-7b049b51e904", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:27 GMT", + "Date" : "Thu, 27 May 2021 21:13:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6279D41EEAA\"", - "client-request-id" : "0bde4632-0e1f-4ed6-add1-e49f4773ac51", - "elapsed-time" : "3156", + "ETag" : "W/\"0x8D9215457EE6D99\"", + "client-request-id" : "115642a6-6d47-44d4-ae8c-7b049b51e904", + "elapsed-time" : "2368", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8971", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6279D41EEAA\\\"\",\"name\":\"hotelscanaddcustomanalyzerwithindexdowntimeedb698645fa7ca\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.StopAnalyzer\",\"name\":\"a1\",\"stopwords\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.StopAnalyzer\",\"name\":\"a2\",\"stopwords\":[]}],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "0bde4632-0e1f-4ed6-add1-e49f4773ac51", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215457EE6D99\\\"\",\"name\":\"hotelscanaddcustomanalyzerwithindexdowntime27268955d10820\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.StopAnalyzer\",\"name\":\"a1\",\"stopwords\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.StopAnalyzer\",\"name\":\"a2\",\"stopwords\":[]}],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "115642a6-6d47-44d4-ae8c-7b049b51e904", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanaddcustomanalyzerwithindexdowntimeedb698645fa7ca')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanaddcustomanalyzerwithindexdowntime27268955d10820')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "390d20ec-762e-437d-bae0-25692751025d" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "07b4f05e-86d6-43c3-a3c6-06dfdfb6ddb4" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "390d20ec-762e-437d-bae0-25692751025d", - "elapsed-time" : "877", + "client-request-id" : "07b4f05e-86d6-43c3-a3c6-06dfdfb6ddb4", + "elapsed-time" : "1253", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "390d20ec-762e-437d-bae0-25692751025d", + "request-id" : "07b4f05e-86d6-43c3-a3c6-06dfdfb6ddb4", "StatusCode" : "204", - "x-ms-client-request-id" : "390d20ec-762e-437d-bae0-25692751025d", - "Date" : "Fri, 02 Apr 2021 22:35:28 GMT" + "x-ms-client-request-id" : "07b4f05e-86d6-43c3-a3c6-06dfdfb6ddb4", + "Date" : "Thu, 27 May 2021 21:13:59 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanaddcustomanalyzerwithindexdowntimeedb698645fa7ca" ] + "variables" : [ "hotelscanaddcustomanalyzerwithindexdowntime27268955d10820" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canAnalyze.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canAnalyze.json index fc8a7058f88c..dc7d97d0f737 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canAnalyze.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canAnalyze.json @@ -1,135 +1,135 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab8435be-45ac-44f2-8dd3-ae09f0b21614", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "08a7d683-feab-492b-9929-3fc63b27915b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8292", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ab8435be-45ac-44f2-8dd3-ae09f0b21614", + "request-id" : "08a7d683-feab-492b-9929-3fc63b27915b", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:13 GMT", + "Date" : "Thu, 27 May 2021 21:14:45 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627B8B4A7BE\"", - "client-request-id" : "ab8435be-45ac-44f2-8dd3-ae09f0b21614", - "elapsed-time" : "1150", + "ETag" : "W/\"0x8D9215473FB47D2\"", + "client-request-id" : "08a7d683-feab-492b-9929-3fc63b27915b", + "elapsed-time" : "1506", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8795", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627B8B4A7BE\\\"\",\"name\":\"hotelscananalyze8cb46242d36632bafd334a8689f1\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "ab8435be-45ac-44f2-8dd3-ae09f0b21614", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215473FB47D2\\\"\",\"name\":\"hotelscananalyze1570969133b6a18382af49f4836e\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "08a7d683-feab-492b-9929-3fc63b27915b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscananalyze8cb46242d36632bafd334a8689f1')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscananalyze1570969133b6a18382af49f4836e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscananalyze8cb46242d36632bafd334a8689f1')/search.analyze?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscananalyze1570969133b6a18382af49f4836e')/search.analyze?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "adf53ae7-e3d8-48a4-869a-beb8624a8e13", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ed857cd3-4ab9-4151-a805-5d2dfe59c8a8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "249", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "adf53ae7-e3d8-48a4-869a-beb8624a8e13", + "request-id" : "ed857cd3-4ab9-4151-a805-5d2dfe59c8a8", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:13 GMT", + "Date" : "Thu, 27 May 2021 21:14:45 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "adf53ae7-e3d8-48a4-869a-beb8624a8e13", - "elapsed-time" : "92", + "client-request-id" : "ed857cd3-4ab9-4151-a805-5d2dfe59c8a8", + "elapsed-time" : "59", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "257", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", - "x-ms-client-request-id" : "adf53ae7-e3d8-48a4-869a-beb8624a8e13", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":3,\"position\":0},{\"token\":\"two\",\"startOffset\":4,\"endOffset\":7,\"position\":1}]}", + "x-ms-client-request-id" : "ed857cd3-4ab9-4151-a805-5d2dfe59c8a8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscananalyze8cb46242d36632bafd334a8689f1')/search.analyze?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscananalyze1570969133b6a18382af49f4836e')/search.analyze?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e219831d-0877-43c1-b2cc-9b36903a559e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6d505be7-f66f-4794-870d-27625a2c4cfc", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "190", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e219831d-0877-43c1-b2cc-9b36903a559e", + "request-id" : "6d505be7-f66f-4794-870d-27625a2c4cfc", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:13 GMT", + "Date" : "Thu, 27 May 2021 21:14:45 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e219831d-0877-43c1-b2cc-9b36903a559e", - "elapsed-time" : "88", + "client-request-id" : "6d505be7-f66f-4794-870d-27625a2c4cfc", + "elapsed-time" : "70", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "198", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":5,\"position\":0}]}", - "x-ms-client-request-id" : "e219831d-0877-43c1-b2cc-9b36903a559e", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":5,\"position\":0}]}", + "x-ms-client-request-id" : "6d505be7-f66f-4794-870d-27625a2c4cfc", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscananalyze8cb46242d36632bafd334a8689f1')/search.analyze?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscananalyze1570969133b6a18382af49f4836e')/search.analyze?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "88265736-f3e6-49b3-9361-16fc9303f674", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "64eaa08d-31d7-43b8-8500-57d4210fcf6d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "190", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "88265736-f3e6-49b3-9361-16fc9303f674", + "request-id" : "64eaa08d-31d7-43b8-8500-57d4210fcf6d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:13 GMT", + "Date" : "Thu, 27 May 2021 21:14:45 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "88265736-f3e6-49b3-9361-16fc9303f674", - "elapsed-time" : "15", + "client-request-id" : "64eaa08d-31d7-43b8-8500-57d4210fcf6d", + "elapsed-time" : "14", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "198", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":5,\"position\":0}]}", - "x-ms-client-request-id" : "88265736-f3e6-49b3-9361-16fc9303f674", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.AnalyzeResult\",\"tokens\":[{\"token\":\"One\",\"startOffset\":0,\"endOffset\":5,\"position\":0}]}", + "x-ms-client-request-id" : "64eaa08d-31d7-43b8-8500-57d4210fcf6d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscananalyze8cb46242d36632bafd334a8689f1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscananalyze1570969133b6a18382af49f4836e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8820770d-011d-47e4-b6cd-b6f65a03bdd3" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ed7cb597-12d3-46f4-b44a-beddb6d0b9e6" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8820770d-011d-47e4-b6cd-b6f65a03bdd3", - "elapsed-time" : "1063", + "client-request-id" : "ed7cb597-12d3-46f4-b44a-beddb6d0b9e6", + "elapsed-time" : "516", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "8820770d-011d-47e4-b6cd-b6f65a03bdd3", + "request-id" : "ed7cb597-12d3-46f4-b44a-beddb6d0b9e6", "StatusCode" : "204", - "x-ms-client-request-id" : "8820770d-011d-47e4-b6cd-b6f65a03bdd3", - "Date" : "Fri, 02 Apr 2021 22:36:14 GMT" + "x-ms-client-request-id" : "ed7cb597-12d3-46f4-b44a-beddb6d0b9e6", + "Date" : "Thu, 27 May 2021 21:14:45 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscananalyze8cb46242d36632bafd334a8689f1" ] + "variables" : [ "hotelscananalyze1570969133b6a18382af49f4836e" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canAnalyzeWithAllPossibleNames.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canAnalyzeWithAllPossibleNames.json index 28bb4d466836..27a18b1558b3 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canAnalyzeWithAllPossibleNames.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canAnalyzeWithAllPossibleNames.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "52af0221-01e0-4164-b353-09621a8af9a8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bc858b01-6d76-4a04-a417-94531ab8d781", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8302", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "52af0221-01e0-4164-b353-09621a8af9a8", + "request-id" : "bc858b01-6d76-4a04-a417-94531ab8d781", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:32 GMT", + "Date" : "Thu, 27 May 2021 21:14:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627A022AB92\"", - "client-request-id" : "52af0221-01e0-4164-b353-09621a8af9a8", - "elapsed-time" : "1102", + "ETag" : "W/\"0x8D921545AD859B4\"", + "client-request-id" : "bc858b01-6d76-4a04-a417-94531ab8d781", + "elapsed-time" : "1428", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8805", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627A022AB92\\\"\",\"name\":\"hotelscananalyzewithallpossiblenames93f80501aca562c78f\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "52af0221-01e0-4164-b353-09621a8af9a8", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921545AD859B4\\\"\",\"name\":\"hotelscananalyzewithallpossiblenames5ba268515f14e95827\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "bc858b01-6d76-4a04-a417-94531ab8d781", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscananalyzewithallpossiblenames93f80501aca562c78f')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscananalyzewithallpossiblenames5ba268515f14e95827')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscananalyzewithallpossiblenames93f80501aca562c78f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscananalyzewithallpossiblenames5ba268515f14e95827')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "899b56ea-f48e-48cc-a471-a2bce596a51f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "41de5c96-d550-4434-8bc7-78ec13c99d29" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "899b56ea-f48e-48cc-a471-a2bce596a51f", - "elapsed-time" : "956", + "client-request-id" : "41de5c96-d550-4434-8bc7-78ec13c99d29", + "elapsed-time" : "502", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "899b56ea-f48e-48cc-a471-a2bce596a51f", + "request-id" : "41de5c96-d550-4434-8bc7-78ec13c99d29", "StatusCode" : "204", - "x-ms-client-request-id" : "899b56ea-f48e-48cc-a471-a2bce596a51f", - "Date" : "Fri, 02 Apr 2021 22:35:32 GMT" + "x-ms-client-request-id" : "41de5c96-d550-4434-8bc7-78ec13c99d29", + "Date" : "Thu, 27 May 2021 21:14:04 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscananalyzewithallpossiblenames93f80501aca562c78f" ] + "variables" : [ "hotelscananalyzewithallpossiblenames5ba268515f14e95827" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canCreateAllAnalysisComponents.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canCreateAllAnalysisComponents.json index 0cd146f5dc43..ca0e00b5f13a 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canCreateAllAnalysisComponents.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canCreateAllAnalysisComponents.json @@ -1,231 +1,231 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2a189f97-b90f-4e49-a408-46f9d6fa46a5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "05e8c4cb-f1ea-464b-be2c-dd630773e277", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "15471", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2a189f97-b90f-4e49-a408-46f9d6fa46a5", + "request-id" : "05e8c4cb-f1ea-464b-be2c-dd630773e277", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:15 GMT", + "Date" : "Thu, 27 May 2021 21:14:47 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627BA60A66A\"", - "client-request-id" : "2a189f97-b90f-4e49-a408-46f9d6fa46a5", - "elapsed-time" : "1243", + "ETag" : "W/\"0x8D921547589F898\"", + "client-request-id" : "05e8c4cb-f1ea-464b-be2c-dd630773e277", + "elapsed-time" : "1687", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "15974", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627BA60A66A\\\"\",\"name\":\"hotelscancreateallanalysiscomponentsd8583327752eca29a6\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet99762931fe1\",\"tokenizer\":\"my_tokenizer\",\"tokenFilters\":[\"my_tokenfilter\"],\"charFilters\":[\"my_charfilter\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet016637df32b\",\"tokenizer\":\"edgeNGram\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternAnalyzer\",\"name\":\"azsmnet5328812b729\",\"lowercase\":false,\"pattern\":\"abc\",\"flags\":\"DOTALL\",\"stopwords\":[\"the\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.StandardAnalyzer\",\"name\":\"azsmnet610116aab97\",\"maxTokenLength\":100,\"stopwords\":[\"the\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.StopAnalyzer\",\"name\":\"azsmnet173434d6c01\",\"stopwords\":[\"the\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.StopAnalyzer\",\"name\":\"azsmnet0567077ca0e\",\"stopwords\":[]}],\"normalizers\":[],\"tokenizers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenizer\",\"name\":\"my_tokenizer\",\"minGram\":1,\"maxGram\":2,\"tokenChars\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenizer\",\"name\":\"azsmnet08776058edd\",\"minGram\":2,\"maxGram\":4,\"tokenChars\":[\"letter\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.NGramTokenizer\",\"name\":\"azsmnet9265180ae59\",\"minGram\":2,\"maxGram\":4,\"tokenChars\":[\"letter\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.ClassicTokenizer\",\"name\":\"azsmnet7205714a2ae\",\"maxTokenLength\":100},{\"@odata.type\":\"#Microsoft.Azure.Search.KeywordTokenizerV2\",\"name\":\"azsmnet150458c8762\",\"maxTokenLength\":100},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet39928ae7aa2\",\"maxTokenLength\":100,\"isSearchTokenizer\":true,\"language\":\"croatian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageTokenizer\",\"name\":\"azsmnet85124d05c5f\",\"maxTokenLength\":100,\"isSearchTokenizer\":true,\"language\":\"thai\"},{\"@odata.type\":\"#Microsoft.Azure.Search.PathHierarchyTokenizerV2\",\"name\":\"azsmnet02333306699\",\"delimiter\":\":\",\"replacement\":\"_\",\"maxTokenLength\":300,\"reverse\":true,\"skip\":2},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternTokenizer\",\"name\":\"azsmnet34837a14ebc\",\"pattern\":\".*\",\"flags\":\"MULTILINE\",\"group\":0},{\"@odata.type\":\"#Microsoft.Azure.Search.StandardTokenizerV2\",\"name\":\"azsmnet68218a90f28\",\"maxTokenLength\":100},{\"@odata.type\":\"#Microsoft.Azure.Search.UaxUrlEmailTokenizer\",\"name\":\"azsmnet91240860496\",\"maxTokenLength\":100}],\"tokenFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.CjkBigramTokenFilter\",\"name\":\"my_tokenfilter\",\"ignoreScripts\":[],\"outputUnigrams\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.CjkBigramTokenFilter\",\"name\":\"azsmnet04319fbf7af\",\"ignoreScripts\":[\"han\"],\"outputUnigrams\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.CjkBigramTokenFilter\",\"name\":\"azsmnet36702fb831d\",\"ignoreScripts\":[],\"outputUnigrams\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.AsciiFoldingTokenFilter\",\"name\":\"azsmnet2890398f988\",\"preserveOriginal\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.AsciiFoldingTokenFilter\",\"name\":\"azsmnet66334e21751\",\"preserveOriginal\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.CommonGramTokenFilter\",\"name\":\"azsmnet114693a6cfc\",\"commonWords\":[\"hello\",\"goodbye\"],\"ignoreCase\":true,\"queryMode\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.CommonGramTokenFilter\",\"name\":\"azsmnet8300653e669\",\"commonWords\":[\"at\"],\"ignoreCase\":false,\"queryMode\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.DictionaryDecompounderTokenFilter\",\"name\":\"azsmnet082979c53ef\",\"wordList\":[\"Schadenfreude\"],\"minWordSize\":10,\"minSubwordSize\":5,\"maxSubwordSize\":13,\"onlyLongestMatch\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenFilterV2\",\"name\":\"azsmnet35971393809\",\"minGram\":2,\"maxGram\":10,\"side\":\"back\"},{\"@odata.type\":\"#Microsoft.Azure.Search.ElisionTokenFilter\",\"name\":\"azsmnet03958027db9\",\"articles\":[\"a\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.ElisionTokenFilter\",\"name\":\"azsmnet169698eb7cd\",\"articles\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.KeepTokenFilter\",\"name\":\"azsmnet90578dffae0\",\"keepWords\":[\"aloha\"],\"keepWordsCase\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.KeepTokenFilter\",\"name\":\"azsmnet71111846cf0\",\"keepWords\":[\"e\",\"komo\",\"mai\"],\"keepWordsCase\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.KeywordMarkerTokenFilter\",\"name\":\"azsmnet70843ddf58e\",\"keywords\":[\"key\",\"words\"],\"ignoreCase\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.KeywordMarkerTokenFilter\",\"name\":\"azsmnet37153951cdd\",\"keywords\":[\"essential\"],\"ignoreCase\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.LengthTokenFilter\",\"name\":\"azsmnet427614c1f93\",\"min\":5,\"max\":10},{\"@odata.type\":\"#Microsoft.Azure.Search.LimitTokenFilter\",\"name\":\"azsmnet434455cdd6e\",\"maxTokenCount\":10,\"consumeAllTokens\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.NGramTokenFilterV2\",\"name\":\"azsmnet49698574730\",\"minGram\":2,\"maxGram\":3},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternCaptureTokenFilter\",\"name\":\"azsmnet92171736485\",\"patterns\":[\".*\"],\"preserveOriginal\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternReplaceTokenFilter\",\"name\":\"azsmnet4478005ec57\",\"pattern\":\"abc\",\"replacement\":\"123\"},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet52439851b34\",\"encoder\":\"soundex\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.ShingleTokenFilter\",\"name\":\"azsmnet97840e3094a\",\"maxShingleSize\":10,\"minShingleSize\":5,\"outputUnigrams\":false,\"outputUnigramsIfNoShingles\":true,\"tokenSeparator\":\" \",\"filterToken\":\"|\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet68506fb1ead\",\"language\":\"english\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerOverrideTokenFilter\",\"name\":\"azsmnet52790df6c72\",\"rules\":[\"ran => run\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet66354f80191\",\"language\":\"french\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet4953389c53a\",\"stopwords\":[\"a\",\"the\"],\"stopwordsList\":null,\"ignoreCase\":true,\"removeTrailing\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet70292eaeb13\",\"stopwords\":[],\"stopwordsList\":\"italian\",\"ignoreCase\":true,\"removeTrailing\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.SynonymTokenFilter\",\"name\":\"azsmnet34230ea1cc2\",\"synonyms\":[\"great, good\"],\"ignoreCase\":true,\"expand\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.TruncateTokenFilter\",\"name\":\"azsmnet06648fa201d\",\"length\":10},{\"@odata.type\":\"#Microsoft.Azure.Search.UniqueTokenFilter\",\"name\":\"azsmnet22900c6a327\",\"onlyOnSamePosition\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.UniqueTokenFilter\",\"name\":\"azsmnet92749f91233\",\"onlyOnSamePosition\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.WordDelimiterTokenFilter\",\"name\":\"azsmnet37283413ae4\",\"generateWordParts\":false,\"generateNumberParts\":false,\"catenateWords\":true,\"catenateNumbers\":true,\"catenateAll\":true,\"splitOnCaseChange\":false,\"preserveOriginal\":true,\"splitOnNumerics\":false,\"stemEnglishPossessive\":false,\"protectedWords\":[\"protected\"]}],\"charFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.MappingCharFilter\",\"name\":\"my_charfilter\",\"mappings\":[\"a => b\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.MappingCharFilter\",\"name\":\"azsmnet838735609c3\",\"mappings\":[\"s => $\",\"S => $\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternReplaceCharFilter\",\"name\":\"azsmnet87365e17306\",\"pattern\":\"abc\",\"replacement\":\"123\"}],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "2a189f97-b90f-4e49-a408-46f9d6fa46a5", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921547589F898\\\"\",\"name\":\"hotelscancreateallanalysiscomponentsa9720195f28d4fe652\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet88693219f52\",\"tokenizer\":\"my_tokenizer\",\"tokenFilters\":[\"my_tokenfilter\"],\"charFilters\":[\"my_charfilter\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet646302f76a9\",\"tokenizer\":\"edgeNGram\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternAnalyzer\",\"name\":\"azsmnet92223b6bfc3\",\"lowercase\":false,\"pattern\":\"abc\",\"flags\":\"DOTALL\",\"stopwords\":[\"the\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.StandardAnalyzer\",\"name\":\"azsmnet29842031837\",\"maxTokenLength\":100,\"stopwords\":[\"the\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.StopAnalyzer\",\"name\":\"azsmnet40805111350\",\"stopwords\":[\"the\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.StopAnalyzer\",\"name\":\"azsmnet845632eb5f9\",\"stopwords\":[]}],\"tokenizers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenizer\",\"name\":\"my_tokenizer\",\"minGram\":1,\"maxGram\":2,\"tokenChars\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenizer\",\"name\":\"azsmnet52191539869\",\"minGram\":2,\"maxGram\":4,\"tokenChars\":[\"letter\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.NGramTokenizer\",\"name\":\"azsmnet041830c9d56\",\"minGram\":2,\"maxGram\":4,\"tokenChars\":[\"letter\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.ClassicTokenizer\",\"name\":\"azsmnet96377e861e8\",\"maxTokenLength\":100},{\"@odata.type\":\"#Microsoft.Azure.Search.KeywordTokenizerV2\",\"name\":\"azsmnet1206279cef3\",\"maxTokenLength\":100},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet62876acffc0\",\"maxTokenLength\":100,\"isSearchTokenizer\":true,\"language\":\"croatian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageTokenizer\",\"name\":\"azsmnet59490e06a6c\",\"maxTokenLength\":100,\"isSearchTokenizer\":true,\"language\":\"thai\"},{\"@odata.type\":\"#Microsoft.Azure.Search.PathHierarchyTokenizerV2\",\"name\":\"azsmnet00656d8a8af\",\"delimiter\":\":\",\"replacement\":\"_\",\"maxTokenLength\":300,\"reverse\":true,\"skip\":2},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternTokenizer\",\"name\":\"azsmnet5215055b15f\",\"pattern\":\".*\",\"flags\":\"MULTILINE\",\"group\":0},{\"@odata.type\":\"#Microsoft.Azure.Search.StandardTokenizerV2\",\"name\":\"azsmnet38682316419\",\"maxTokenLength\":100},{\"@odata.type\":\"#Microsoft.Azure.Search.UaxUrlEmailTokenizer\",\"name\":\"azsmnet4810695d98f\",\"maxTokenLength\":100}],\"tokenFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.CjkBigramTokenFilter\",\"name\":\"my_tokenfilter\",\"ignoreScripts\":[],\"outputUnigrams\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.CjkBigramTokenFilter\",\"name\":\"azsmnet16833a53109\",\"ignoreScripts\":[\"han\"],\"outputUnigrams\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.CjkBigramTokenFilter\",\"name\":\"azsmnet40600c37697\",\"ignoreScripts\":[],\"outputUnigrams\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.AsciiFoldingTokenFilter\",\"name\":\"azsmnet99577bc5ca0\",\"preserveOriginal\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.AsciiFoldingTokenFilter\",\"name\":\"azsmnet844479e342b\",\"preserveOriginal\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.CommonGramTokenFilter\",\"name\":\"azsmnet83725e29b75\",\"commonWords\":[\"hello\",\"goodbye\"],\"ignoreCase\":true,\"queryMode\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.CommonGramTokenFilter\",\"name\":\"azsmnet16342ea74dd\",\"commonWords\":[\"at\"],\"ignoreCase\":false,\"queryMode\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.DictionaryDecompounderTokenFilter\",\"name\":\"azsmnet7968404f388\",\"wordList\":[\"Schadenfreude\"],\"minWordSize\":10,\"minSubwordSize\":5,\"maxSubwordSize\":13,\"onlyLongestMatch\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenFilterV2\",\"name\":\"azsmnet06627e63a27\",\"minGram\":2,\"maxGram\":10,\"side\":\"back\"},{\"@odata.type\":\"#Microsoft.Azure.Search.ElisionTokenFilter\",\"name\":\"azsmnet768290063c5\",\"articles\":[\"a\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.ElisionTokenFilter\",\"name\":\"azsmnet39470e1615a\",\"articles\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.KeepTokenFilter\",\"name\":\"azsmnet75505c60baa\",\"keepWords\":[\"aloha\"],\"keepWordsCase\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.KeepTokenFilter\",\"name\":\"azsmnet116680e945a\",\"keepWords\":[\"e\",\"komo\",\"mai\"],\"keepWordsCase\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.KeywordMarkerTokenFilter\",\"name\":\"azsmnet57929b32409\",\"keywords\":[\"key\",\"words\"],\"ignoreCase\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.KeywordMarkerTokenFilter\",\"name\":\"azsmnet07288a063c0\",\"keywords\":[\"essential\"],\"ignoreCase\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.LengthTokenFilter\",\"name\":\"azsmnet88860aec059\",\"min\":5,\"max\":10},{\"@odata.type\":\"#Microsoft.Azure.Search.LimitTokenFilter\",\"name\":\"azsmnet8819762d7aa\",\"maxTokenCount\":10,\"consumeAllTokens\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.NGramTokenFilterV2\",\"name\":\"azsmnet362442e7ff7\",\"minGram\":2,\"maxGram\":3},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternCaptureTokenFilter\",\"name\":\"azsmnet51441ea360a\",\"patterns\":[\".*\"],\"preserveOriginal\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternReplaceTokenFilter\",\"name\":\"azsmnet40529f6d10b\",\"pattern\":\"abc\",\"replacement\":\"123\"},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet96695fcbd90\",\"encoder\":\"soundex\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.ShingleTokenFilter\",\"name\":\"azsmnet125679e09d5\",\"maxShingleSize\":10,\"minShingleSize\":5,\"outputUnigrams\":false,\"outputUnigramsIfNoShingles\":true,\"tokenSeparator\":\" \",\"filterToken\":\"|\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet88262f06de0\",\"language\":\"english\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerOverrideTokenFilter\",\"name\":\"azsmnet4704309cb6d\",\"rules\":[\"ran => run\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet28320c5b404\",\"language\":\"french\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet37975d30656\",\"stopwords\":[\"a\",\"the\"],\"stopwordsList\":null,\"ignoreCase\":true,\"removeTrailing\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet16592dd2f83\",\"stopwords\":[],\"stopwordsList\":\"italian\",\"ignoreCase\":true,\"removeTrailing\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.SynonymTokenFilter\",\"name\":\"azsmnet581543c29aa\",\"synonyms\":[\"great, good\"],\"ignoreCase\":true,\"expand\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.TruncateTokenFilter\",\"name\":\"azsmnet5546989f648\",\"length\":10},{\"@odata.type\":\"#Microsoft.Azure.Search.UniqueTokenFilter\",\"name\":\"azsmnet0866772c7ef\",\"onlyOnSamePosition\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.UniqueTokenFilter\",\"name\":\"azsmnet87802d662e1\",\"onlyOnSamePosition\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.WordDelimiterTokenFilter\",\"name\":\"azsmnet4104358cc39\",\"generateWordParts\":false,\"generateNumberParts\":false,\"catenateWords\":true,\"catenateNumbers\":true,\"catenateAll\":true,\"splitOnCaseChange\":false,\"preserveOriginal\":true,\"splitOnNumerics\":false,\"stemEnglishPossessive\":false,\"protectedWords\":[\"protected\"]}],\"charFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.MappingCharFilter\",\"name\":\"my_charfilter\",\"mappings\":[\"a => b\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.MappingCharFilter\",\"name\":\"azsmnet25171ae365b\",\"mappings\":[\"s => $\",\"S => $\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternReplaceCharFilter\",\"name\":\"azsmnet907290aaafb\",\"pattern\":\"abc\",\"replacement\":\"123\"}],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "05e8c4cb-f1ea-464b-be2c-dd630773e277", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancreateallanalysiscomponentsd8583327752eca29a6')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancreateallanalysiscomponentsa9720195f28d4fe652')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateallanalysiscomponentsd8583327752eca29a6')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateallanalysiscomponentsa9720195f28d4fe652')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "53fa45aa-7019-4028-8e93-f2cd450019da" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3c3215d1-5975-41a2-91fa-aa280bd4a6c4" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "53fa45aa-7019-4028-8e93-f2cd450019da", - "elapsed-time" : "1409", + "client-request-id" : "3c3215d1-5975-41a2-91fa-aa280bd4a6c4", + "elapsed-time" : "565", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "53fa45aa-7019-4028-8e93-f2cd450019da", + "request-id" : "3c3215d1-5975-41a2-91fa-aa280bd4a6c4", "StatusCode" : "204", - "x-ms-client-request-id" : "53fa45aa-7019-4028-8e93-f2cd450019da", - "Date" : "Fri, 02 Apr 2021 22:36:17 GMT" + "x-ms-client-request-id" : "3c3215d1-5975-41a2-91fa-aa280bd4a6c4", + "Date" : "Thu, 27 May 2021 21:14:48 GMT" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "dc5f1a72-9ca3-4207-b70d-1a08886bf8d1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "196d8e4e-ea06-4345-840c-e9dff63cbd14", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8540", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "dc5f1a72-9ca3-4207-b70d-1a08886bf8d1", + "request-id" : "196d8e4e-ea06-4345-840c-e9dff63cbd14", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:18 GMT", + "Date" : "Thu, 27 May 2021 21:14:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627BBF17756\"", - "client-request-id" : "dc5f1a72-9ca3-4207-b70d-1a08886bf8d1", - "elapsed-time" : "1090", + "ETag" : "W/\"0x8D9215476E7A5A6\"", + "client-request-id" : "196d8e4e-ea06-4345-840c-e9dff63cbd14", + "elapsed-time" : "1618", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "9043", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627BBF17756\\\"\",\"name\":\"hotelscancreateallanalysiscomponentsd8518170437bf4d6ba\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternAnalyzer\",\"name\":\"a0\",\"lowercase\":true,\"pattern\":\"\\\\W+\",\"flags\":null,\"stopwords\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.StandardAnalyzer\",\"name\":\"a1\",\"maxTokenLength\":255,\"stopwords\":[]}],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "dc5f1a72-9ca3-4207-b70d-1a08886bf8d1", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215476E7A5A6\\\"\",\"name\":\"hotelscancreateallanalysiscomponentsa971879874d1e2e52c\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternAnalyzer\",\"name\":\"a0\",\"lowercase\":true,\"pattern\":\"\\\\W+\",\"flags\":null,\"stopwords\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.StandardAnalyzer\",\"name\":\"a1\",\"maxTokenLength\":255,\"stopwords\":[]}],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "196d8e4e-ea06-4345-840c-e9dff63cbd14", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancreateallanalysiscomponentsd8518170437bf4d6ba')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancreateallanalysiscomponentsa971879874d1e2e52c')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateallanalysiscomponentsd8518170437bf4d6ba')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateallanalysiscomponentsa971879874d1e2e52c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5a923ef7-ca2e-4d29-9200-a9061c977def" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "39b746c0-70e5-489b-8809-b16424cee25a" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5a923ef7-ca2e-4d29-9200-a9061c977def", - "elapsed-time" : "547", + "client-request-id" : "39b746c0-70e5-489b-8809-b16424cee25a", + "elapsed-time" : "581", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "5a923ef7-ca2e-4d29-9200-a9061c977def", + "request-id" : "39b746c0-70e5-489b-8809-b16424cee25a", "StatusCode" : "204", - "x-ms-client-request-id" : "5a923ef7-ca2e-4d29-9200-a9061c977def", - "Date" : "Fri, 02 Apr 2021 22:36:18 GMT" + "x-ms-client-request-id" : "39b746c0-70e5-489b-8809-b16424cee25a", + "Date" : "Thu, 27 May 2021 21:14:51 GMT" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "127df61c-3b6d-4e49-bb5a-08518f788e74", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fd2033a6-9797-463f-a63a-a3759a31bc12", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "9479", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "127df61c-3b6d-4e49-bb5a-08518f788e74", + "request-id" : "fd2033a6-9797-463f-a63a-a3759a31bc12", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:19 GMT", + "Date" : "Thu, 27 May 2021 21:14:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627BCFA62D3\"", - "client-request-id" : "127df61c-3b6d-4e49-bb5a-08518f788e74", - "elapsed-time" : "1170", + "ETag" : "W/\"0x8D92154783E4C4A\"", + "client-request-id" : "fd2033a6-9797-463f-a63a-a3759a31bc12", + "elapsed-time" : "1608", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "9982", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627BCFA62D3\\\"\",\"name\":\"hotelscancreateallanalysiscomponentsd857456225815a81b0\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenizer\",\"name\":\"a2\",\"minGram\":1,\"maxGram\":2,\"tokenChars\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.NGramTokenizer\",\"name\":\"a3\",\"minGram\":1,\"maxGram\":2,\"tokenChars\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.ClassicTokenizer\",\"name\":\"a4\",\"maxTokenLength\":255},{\"@odata.type\":\"#Microsoft.Azure.Search.KeywordTokenizerV2\",\"name\":\"a5\",\"maxTokenLength\":256},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"a6\",\"maxTokenLength\":255,\"isSearchTokenizer\":false,\"language\":\"english\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageTokenizer\",\"name\":\"a7\",\"maxTokenLength\":255,\"isSearchTokenizer\":false,\"language\":\"english\"},{\"@odata.type\":\"#Microsoft.Azure.Search.PathHierarchyTokenizerV2\",\"name\":\"a8\",\"delimiter\":\"/\",\"replacement\":\"/\",\"maxTokenLength\":300,\"reverse\":false,\"skip\":0},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternTokenizer\",\"name\":\"a9\",\"pattern\":\"\\\\W+\",\"flags\":null,\"group\":-1},{\"@odata.type\":\"#Microsoft.Azure.Search.StandardTokenizerV2\",\"name\":\"a10\",\"maxTokenLength\":255},{\"@odata.type\":\"#Microsoft.Azure.Search.UaxUrlEmailTokenizer\",\"name\":\"a11\",\"maxTokenLength\":255}],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "127df61c-3b6d-4e49-bb5a-08518f788e74", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154783E4C4A\\\"\",\"name\":\"hotelscancreateallanalysiscomponentsa9754246f7d5ec8bef\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenizer\",\"name\":\"a2\",\"minGram\":1,\"maxGram\":2,\"tokenChars\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.NGramTokenizer\",\"name\":\"a3\",\"minGram\":1,\"maxGram\":2,\"tokenChars\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.ClassicTokenizer\",\"name\":\"a4\",\"maxTokenLength\":255},{\"@odata.type\":\"#Microsoft.Azure.Search.KeywordTokenizerV2\",\"name\":\"a5\",\"maxTokenLength\":256},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"a6\",\"maxTokenLength\":255,\"isSearchTokenizer\":false,\"language\":\"english\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageTokenizer\",\"name\":\"a7\",\"maxTokenLength\":255,\"isSearchTokenizer\":false,\"language\":\"english\"},{\"@odata.type\":\"#Microsoft.Azure.Search.PathHierarchyTokenizerV2\",\"name\":\"a8\",\"delimiter\":\"/\",\"replacement\":\"/\",\"maxTokenLength\":300,\"reverse\":false,\"skip\":0},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternTokenizer\",\"name\":\"a9\",\"pattern\":\"\\\\W+\",\"flags\":null,\"group\":-1},{\"@odata.type\":\"#Microsoft.Azure.Search.StandardTokenizerV2\",\"name\":\"a10\",\"maxTokenLength\":255},{\"@odata.type\":\"#Microsoft.Azure.Search.UaxUrlEmailTokenizer\",\"name\":\"a11\",\"maxTokenLength\":255}],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "fd2033a6-9797-463f-a63a-a3759a31bc12", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancreateallanalysiscomponentsd857456225815a81b0')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancreateallanalysiscomponentsa9754246f7d5ec8bef')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateallanalysiscomponentsd857456225815a81b0')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateallanalysiscomponentsa9754246f7d5ec8bef')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ff0ccc64-fc22-4ca9-8d7c-fc65e27cfc2e" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ed062e5d-3cb8-46bb-a7e7-465f2e75092d" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ff0ccc64-fc22-4ca9-8d7c-fc65e27cfc2e", - "elapsed-time" : "1412", + "client-request-id" : "ed062e5d-3cb8-46bb-a7e7-465f2e75092d", + "elapsed-time" : "522", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "ff0ccc64-fc22-4ca9-8d7c-fc65e27cfc2e", + "request-id" : "ed062e5d-3cb8-46bb-a7e7-465f2e75092d", "StatusCode" : "204", - "x-ms-client-request-id" : "ff0ccc64-fc22-4ca9-8d7c-fc65e27cfc2e", - "Date" : "Fri, 02 Apr 2021 22:36:21 GMT" + "x-ms-client-request-id" : "ed062e5d-3cb8-46bb-a7e7-465f2e75092d", + "Date" : "Thu, 27 May 2021 21:14:53 GMT" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "16ba3bdb-b340-4528-9ca2-57781b8c6b22", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "304d9f80-1a9d-4cdc-91ef-52cd59666953", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "10069", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "16ba3bdb-b340-4528-9ca2-57781b8c6b22", + "request-id" : "304d9f80-1a9d-4cdc-91ef-52cd59666953", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:22 GMT", + "Date" : "Thu, 27 May 2021 21:14:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627BE87146A\"", - "client-request-id" : "16ba3bdb-b340-4528-9ca2-57781b8c6b22", - "elapsed-time" : "1092", + "ETag" : "W/\"0x8D92154797FB963\"", + "client-request-id" : "304d9f80-1a9d-4cdc-91ef-52cd59666953", + "elapsed-time" : "1516", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "10572", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627BE87146A\\\"\",\"name\":\"hotelscancreateallanalysiscomponentsd8545719ba58993d78\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.DictionaryDecompounderTokenFilter\",\"name\":\"a12\",\"wordList\":[\"Bahnhof\"],\"minWordSize\":5,\"minSubwordSize\":2,\"maxSubwordSize\":15,\"onlyLongestMatch\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenFilterV2\",\"name\":\"a13\",\"minGram\":1,\"maxGram\":2,\"side\":\"front\"},{\"@odata.type\":\"#Microsoft.Azure.Search.LengthTokenFilter\",\"name\":\"a14\",\"min\":0,\"max\":300},{\"@odata.type\":\"#Microsoft.Azure.Search.LimitTokenFilter\",\"name\":\"a15\",\"maxTokenCount\":1,\"consumeAllTokens\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.NGramTokenFilterV2\",\"name\":\"a16\",\"minGram\":1,\"maxGram\":2},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternCaptureTokenFilter\",\"name\":\"a17\",\"patterns\":[\"[a-z]*\"],\"preserveOriginal\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"a18\",\"encoder\":\"metaphone\",\"replace\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.ShingleTokenFilter\",\"name\":\"a19\",\"maxShingleSize\":2,\"minShingleSize\":2,\"outputUnigrams\":true,\"outputUnigramsIfNoShingles\":false,\"tokenSeparator\":\" \",\"filterToken\":\"_\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"a20\",\"stopwords\":[],\"stopwordsList\":\"english\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.SynonymTokenFilter\",\"name\":\"a21\",\"synonyms\":[\"mutt, canine => dog\"],\"ignoreCase\":false,\"expand\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.TruncateTokenFilter\",\"name\":\"a22\",\"length\":300},{\"@odata.type\":\"#Microsoft.Azure.Search.WordDelimiterTokenFilter\",\"name\":\"a23\",\"generateWordParts\":true,\"generateNumberParts\":true,\"catenateWords\":false,\"catenateNumbers\":false,\"catenateAll\":false,\"splitOnCaseChange\":true,\"preserveOriginal\":false,\"splitOnNumerics\":true,\"stemEnglishPossessive\":true,\"protectedWords\":[]}],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "16ba3bdb-b340-4528-9ca2-57781b8c6b22", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154797FB963\\\"\",\"name\":\"hotelscancreateallanalysiscomponentsa97178978af0d73770\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.DictionaryDecompounderTokenFilter\",\"name\":\"a12\",\"wordList\":[\"Bahnhof\"],\"minWordSize\":5,\"minSubwordSize\":2,\"maxSubwordSize\":15,\"onlyLongestMatch\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenFilterV2\",\"name\":\"a13\",\"minGram\":1,\"maxGram\":2,\"side\":\"front\"},{\"@odata.type\":\"#Microsoft.Azure.Search.LengthTokenFilter\",\"name\":\"a14\",\"min\":0,\"max\":300},{\"@odata.type\":\"#Microsoft.Azure.Search.LimitTokenFilter\",\"name\":\"a15\",\"maxTokenCount\":1,\"consumeAllTokens\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.NGramTokenFilterV2\",\"name\":\"a16\",\"minGram\":1,\"maxGram\":2},{\"@odata.type\":\"#Microsoft.Azure.Search.PatternCaptureTokenFilter\",\"name\":\"a17\",\"patterns\":[\"[a-z]*\"],\"preserveOriginal\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"a18\",\"encoder\":\"metaphone\",\"replace\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.ShingleTokenFilter\",\"name\":\"a19\",\"maxShingleSize\":2,\"minShingleSize\":2,\"outputUnigrams\":true,\"outputUnigramsIfNoShingles\":false,\"tokenSeparator\":\" \",\"filterToken\":\"_\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"a20\",\"stopwords\":[],\"stopwordsList\":\"english\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.SynonymTokenFilter\",\"name\":\"a21\",\"synonyms\":[\"mutt, canine => dog\"],\"ignoreCase\":false,\"expand\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.TruncateTokenFilter\",\"name\":\"a22\",\"length\":300},{\"@odata.type\":\"#Microsoft.Azure.Search.WordDelimiterTokenFilter\",\"name\":\"a23\",\"generateWordParts\":true,\"generateNumberParts\":true,\"catenateWords\":false,\"catenateNumbers\":false,\"catenateAll\":false,\"splitOnCaseChange\":true,\"preserveOriginal\":false,\"splitOnNumerics\":true,\"stemEnglishPossessive\":true,\"protectedWords\":[]}],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "304d9f80-1a9d-4cdc-91ef-52cd59666953", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancreateallanalysiscomponentsd8545719ba58993d78')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancreateallanalysiscomponentsa97178978af0d73770')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateallanalysiscomponentsd8545719ba58993d78')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateallanalysiscomponentsa97178978af0d73770')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e71fc776-b663-4d93-aee0-950863be7b37" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5a94cd5d-4606-4be8-bc41-ef96d67b1bbd" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e71fc776-b663-4d93-aee0-950863be7b37", - "elapsed-time" : "572", + "client-request-id" : "5a94cd5d-4606-4be8-bc41-ef96d67b1bbd", + "elapsed-time" : "546", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "e71fc776-b663-4d93-aee0-950863be7b37", + "request-id" : "5a94cd5d-4606-4be8-bc41-ef96d67b1bbd", "StatusCode" : "204", - "x-ms-client-request-id" : "e71fc776-b663-4d93-aee0-950863be7b37", - "Date" : "Fri, 02 Apr 2021 22:36:23 GMT" + "x-ms-client-request-id" : "5a94cd5d-4606-4be8-bc41-ef96d67b1bbd", + "Date" : "Thu, 27 May 2021 21:14:55 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateallanalysiscomponentsd8583327752eca29a6')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateallanalysiscomponentsa9720195f28d4fe652')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9dad3278-dd86-412a-8648-07dc8025077c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "575550e8-85e7-4f0a-b2c0-f16f4a8d5405" }, "Response" : { + "content-length" : "362", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9dad3278-dd86-412a-8648-07dc8025077c", + "request-id" : "575550e8-85e7-4f0a-b2c0-f16f4a8d5405", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:36:24 GMT", + "Date" : "Thu, 27 May 2021 21:14:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9dad3278-dd86-412a-8648-07dc8025077c", - "elapsed-time" : "24", + "client-request-id" : "575550e8-85e7-4f0a-b2c0-f16f4a8d5405", + "elapsed-time" : "16", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "159", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No index with the name 'hotelscancreateallanalysiscomponentsd8583327752eca29a6' was found in a service named 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"OperationNotAllowed\",\"message\":\"No index with the name 'hotelscancreateallanalysiscomponentsa9720195f28d4fe652' was found in a service named 'alzimmer-test'.\",\"details\":[{\"code\":\"IndexNotFoundInService\",\"message\":\"No index with the name 'hotelscancreateallanalysiscomponentsa9720195f28d4fe652' was found in a service named 'alzimmer-test'.\"}]}}", "Content-Language" : "en", - "x-ms-client-request-id" : "9dad3278-dd86-412a-8648-07dc8025077c", + "x-ms-client-request-id" : "575550e8-85e7-4f0a-b2c0-f16f4a8d5405", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "hotelscancreateallanalysiscomponentsd8583327752eca29a6", "azsmnet99762931fe1", "azsmnet016637df32b", "azsmnet5328812b729", "azsmnet610116aab97", "azsmnet173434d6c01", "azsmnet0567077ca0e", "azsmnet08776058edd", "azsmnet9265180ae59", "azsmnet7205714a2ae", "azsmnet150458c8762", "azsmnet39928ae7aa2", "azsmnet85124d05c5f", "azsmnet02333306699", "azsmnet34837a14ebc", "azsmnet68218a90f28", "azsmnet91240860496", "azsmnet04319fbf7af", "azsmnet36702fb831d", "azsmnet2890398f988", "azsmnet66334e21751", "azsmnet114693a6cfc", "azsmnet8300653e669", "azsmnet082979c53ef", "azsmnet35971393809", "azsmnet03958027db9", "azsmnet169698eb7cd", "azsmnet90578dffae0", "azsmnet71111846cf0", "azsmnet70843ddf58e", "azsmnet37153951cdd", "azsmnet427614c1f93", "azsmnet434455cdd6e", "azsmnet49698574730", "azsmnet92171736485", "azsmnet4478005ec57", "azsmnet52439851b34", "azsmnet97840e3094a", "azsmnet68506fb1ead", "azsmnet52790df6c72", "azsmnet66354f80191", "azsmnet4953389c53a", "azsmnet70292eaeb13", "azsmnet34230ea1cc2", "azsmnet06648fa201d", "azsmnet22900c6a327", "azsmnet92749f91233", "azsmnet37283413ae4", "azsmnet838735609c3", "azsmnet87365e17306", "hotelscancreateallanalysiscomponentsd8593527af14ad4fe5", "hotelscancreateallanalysiscomponentsd852394766a9bc1721", "hotelscancreateallanalysiscomponentsd85134279aa4e0f084", "hotelscancreateallanalysiscomponentsd8559283a4b60105b5", "hotelscancreateallanalysiscomponentsd8518170437bf4d6ba", "hotelscancreateallanalysiscomponentsd857456225815a81b0", "hotelscancreateallanalysiscomponentsd8545719ba58993d78" ] + "variables" : [ "hotelscancreateallanalysiscomponentsa9720195f28d4fe652", "azsmnet88693219f52", "azsmnet646302f76a9", "azsmnet92223b6bfc3", "azsmnet29842031837", "azsmnet40805111350", "azsmnet845632eb5f9", "azsmnet52191539869", "azsmnet041830c9d56", "azsmnet96377e861e8", "azsmnet1206279cef3", "azsmnet62876acffc0", "azsmnet59490e06a6c", "azsmnet00656d8a8af", "azsmnet5215055b15f", "azsmnet38682316419", "azsmnet4810695d98f", "azsmnet16833a53109", "azsmnet40600c37697", "azsmnet99577bc5ca0", "azsmnet844479e342b", "azsmnet83725e29b75", "azsmnet16342ea74dd", "azsmnet7968404f388", "azsmnet06627e63a27", "azsmnet768290063c5", "azsmnet39470e1615a", "azsmnet75505c60baa", "azsmnet116680e945a", "azsmnet57929b32409", "azsmnet07288a063c0", "azsmnet88860aec059", "azsmnet8819762d7aa", "azsmnet362442e7ff7", "azsmnet51441ea360a", "azsmnet40529f6d10b", "azsmnet96695fcbd90", "azsmnet125679e09d5", "azsmnet88262f06de0", "azsmnet4704309cb6d", "azsmnet28320c5b404", "azsmnet37975d30656", "azsmnet16592dd2f83", "azsmnet581543c29aa", "azsmnet5546989f648", "azsmnet0866772c7ef", "azsmnet87802d662e1", "azsmnet4104358cc39", "azsmnet25171ae365b", "azsmnet907290aaafb", "hotelscancreateallanalysiscomponentsa9732724f23f59127d", "hotelscancreateallanalysiscomponentsa9776978f2614128ac", "hotelscancreateallanalysiscomponentsa9700589d7a31435fa", "hotelscancreateallanalysiscomponentsa9713797a7c388300d", "hotelscancreateallanalysiscomponentsa971879874d1e2e52c", "hotelscancreateallanalysiscomponentsa9754246f7d5ec8bef", "hotelscancreateallanalysiscomponentsa97178978af0d73770" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canSearchWithCustomAnalyzer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canSearchWithCustomAnalyzer.json index 4a255474191c..889c2a673fb7 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canSearchWithCustomAnalyzer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canSearchWithCustomAnalyzer.json @@ -1,108 +1,108 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0aa0ecd-d660-494d-a34d-a102f1fa6167", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "655be164-d8af-4f8c-b642-bde35f5c1cee", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1184", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c0aa0ecd-d660-494d-a34d-a102f1fa6167", + "request-id" : "655be164-d8af-4f8c-b642-bde35f5c1cee", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:36 GMT", + "Date" : "Thu, 27 May 2021 21:14:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627A2BE3D0F\"", - "client-request-id" : "c0aa0ecd-d660-494d-a34d-a102f1fa6167", - "elapsed-time" : "1051", + "ETag" : "W/\"0x8D921545D503565\"", + "client-request-id" : "655be164-d8af-4f8c-b642-bde35f5c1cee", + "elapsed-time" : "1473", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1237", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627A2BE3D0F\\\"\",\"name\":\"testindexcansearchwithcustomanalyzer675804504ba7fedf9b\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"message\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"my_email_analyzer\",\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"my_email_analyzer\",\"tokenizer\":\"standard_v2\",\"tokenFilters\":[],\"charFilters\":[\"my_email_filter\"]}],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternReplaceCharFilter\",\"name\":\"my_email_filter\",\"pattern\":\"@\",\"replacement\":\"_\"}],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "c0aa0ecd-d660-494d-a34d-a102f1fa6167", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921545D503565\\\"\",\"name\":\"testindexcansearchwithcustomanalyzer50901116e21d3fd127\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"message\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"my_email_analyzer\",\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"my_email_analyzer\",\"tokenizer\":\"standard_v2\",\"tokenFilters\":[],\"charFilters\":[\"my_email_filter\"]}],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternReplaceCharFilter\",\"name\":\"my_email_filter\",\"pattern\":\"@\",\"replacement\":\"_\"}],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "655be164-d8af-4f8c-b642-bde35f5c1cee", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('testindexcansearchwithcustomanalyzer675804504ba7fedf9b')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('testindexcansearchwithcustomanalyzer50901116e21d3fd127')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('testindexcansearchwithcustomanalyzer675804504ba7fedf9b')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('testindexcansearchwithcustomanalyzer50901116e21d3fd127')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4d122759-f9d7-4def-bda8-a91f28ba1776", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "821e47a1-1f28-456d-9df7-0c533468eb55", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "137", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4d122759-f9d7-4def-bda8-a91f28ba1776", + "request-id" : "821e47a1-1f28-456d-9df7-0c533468eb55", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:36 GMT", + "Date" : "Thu, 27 May 2021 21:14:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4d122759-f9d7-4def-bda8-a91f28ba1776", - "elapsed-time" : "134", + "client-request-id" : "821e47a1-1f28-456d-9df7-0c533468eb55", + "elapsed-time" : "99", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "137", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "4d122759-f9d7-4def-bda8-a91f28ba1776", + "x-ms-client-request-id" : "821e47a1-1f28-456d-9df7-0c533468eb55", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('testindexcansearchwithcustomanalyzer675804504ba7fedf9b')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('testindexcansearchwithcustomanalyzer50901116e21d3fd127')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "706510a7-ce13-4563-86f4-acc0aebfb75d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "833818f2-afbf-4f6b-8777-4d8cf2828f59", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "101", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "706510a7-ce13-4563-86f4-acc0aebfb75d", + "request-id" : "833818f2-afbf-4f6b-8777-4d8cf2828f59", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:39 GMT", + "Date" : "Thu, 27 May 2021 21:14:10 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "706510a7-ce13-4563-86f4-acc0aebfb75d", - "elapsed-time" : "82", + "client-request-id" : "833818f2-afbf-4f6b-8777-4d8cf2828f59", + "elapsed-time" : "76", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "101", "Body" : "{\"value\":[{\"@search.score\":0.6931472,\"id\":\"1\",\"message\":\"My email is someone@somewhere.something.\"}]}", - "x-ms-client-request-id" : "706510a7-ce13-4563-86f4-acc0aebfb75d", + "x-ms-client-request-id" : "833818f2-afbf-4f6b-8777-4d8cf2828f59", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('testindexcansearchwithcustomanalyzer675804504ba7fedf9b')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('testindexcansearchwithcustomanalyzer50901116e21d3fd127')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a19e2bf7-ce94-420f-af5d-75f16320a32b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1f1c49b1-1155-4d97-808a-53d15c5c6cf3" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a19e2bf7-ce94-420f-af5d-75f16320a32b", - "elapsed-time" : "524", + "client-request-id" : "1f1c49b1-1155-4d97-808a-53d15c5c6cf3", + "elapsed-time" : "481", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "a19e2bf7-ce94-420f-af5d-75f16320a32b", + "request-id" : "1f1c49b1-1155-4d97-808a-53d15c5c6cf3", "StatusCode" : "204", - "x-ms-client-request-id" : "a19e2bf7-ce94-420f-af5d-75f16320a32b", - "Date" : "Fri, 02 Apr 2021 22:35:40 GMT" + "x-ms-client-request-id" : "1f1c49b1-1155-4d97-808a-53d15c5c6cf3", + "Date" : "Thu, 27 May 2021 21:14:11 GMT" }, "Exception" : null } ], - "variables" : [ "testindexcansearchwithcustomanalyzer675804504ba7fedf9b" ] + "variables" : [ "testindexcansearchwithcustomanalyzer50901116e21d3fd127" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllAnalysisComponentNames.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllAnalysisComponentNames.json index 95ffc650eda0..2a5f3986383b 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllAnalysisComponentNames.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllAnalysisComponentNames.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c9d618c-fd5b-46ad-9304-c1bdc0232e38", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5c0d47eb-76cc-42f7-98fd-2f9f5bc775d5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "11025", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6c9d618c-fd5b-46ad-9304-c1bdc0232e38", + "request-id" : "5c0d47eb-76cc-42f7-98fd-2f9f5bc775d5", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:49 GMT", + "Date" : "Thu, 27 May 2021 21:14:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627AA5516A8\"", - "client-request-id" : "6c9d618c-fd5b-46ad-9304-c1bdc0232e38", - "elapsed-time" : "1155", + "ETag" : "W/\"0x8D9215465999EC9\"", + "client-request-id" : "5c0d47eb-76cc-42f7-98fd-2f9f5bc775d5", + "elapsed-time" : "1464", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "11528", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627AA5516A8\\\"\",\"name\":\"hotelscanuseallanalysiscomponentnames0ed314445f5e4fc3b\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"abc\",\"tokenizer\":\"lowercase\",\"tokenFilters\":[\"apostrophe\",\"arabic_normalization\",\"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_folding\",\"scandinavian_normalization\",\"shingle\",\"snowball\",\"sorani_normalization\",\"stemmer\",\"stopwords\",\"trim\",\"truncate\",\"unique\",\"uppercase\",\"word_delimiter\"],\"charFilters\":[\"html_strip\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet72273b6ba8aclassic\",\"tokenizer\":\"classic\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet72273b6ba8aedgeNGram\",\"tokenizer\":\"edgeNGram\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet72273b6ba8akeyword_v2\",\"tokenizer\":\"keyword_v2\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet72273b6ba8aletter\",\"tokenizer\":\"letter\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet72273b6ba8alowercase\",\"tokenizer\":\"lowercase\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet72273b6ba8amicrosoft_language_stemming_tokenizer\",\"tokenizer\":\"microsoft_language_stemming_tokenizer\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet72273b6ba8amicrosoft_language_tokenizer\",\"tokenizer\":\"microsoft_language_tokenizer\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet72273b6ba8anGram\",\"tokenizer\":\"nGram\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet72273b6ba8apath_hierarchy_v2\",\"tokenizer\":\"path_hierarchy_v2\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet72273b6ba8apattern\",\"tokenizer\":\"pattern\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet72273b6ba8astandard_v2\",\"tokenizer\":\"standard_v2\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet72273b6ba8auax_url_email\",\"tokenizer\":\"uax_url_email\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet72273b6ba8awhitespace\",\"tokenizer\":\"whitespace\",\"tokenFilters\":[],\"charFilters\":[]}],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "6c9d618c-fd5b-46ad-9304-c1bdc0232e38", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215465999EC9\\\"\",\"name\":\"hotelscanuseallanalysiscomponentnames73e06023973036929\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"abc\",\"tokenizer\":\"lowercase\",\"tokenFilters\":[\"apostrophe\",\"arabic_normalization\",\"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_folding\",\"scandinavian_normalization\",\"shingle\",\"snowball\",\"sorani_normalization\",\"stemmer\",\"stopwords\",\"trim\",\"truncate\",\"unique\",\"uppercase\",\"word_delimiter\"],\"charFilters\":[\"html_strip\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet303519da289classic\",\"tokenizer\":\"classic\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet303519da289edgeNGram\",\"tokenizer\":\"edgeNGram\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet303519da289keyword_v2\",\"tokenizer\":\"keyword_v2\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet303519da289letter\",\"tokenizer\":\"letter\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet303519da289lowercase\",\"tokenizer\":\"lowercase\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet303519da289microsoft_language_stemming_tokenizer\",\"tokenizer\":\"microsoft_language_stemming_tokenizer\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet303519da289microsoft_language_tokenizer\",\"tokenizer\":\"microsoft_language_tokenizer\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet303519da289nGram\",\"tokenizer\":\"nGram\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet303519da289path_hierarchy_v2\",\"tokenizer\":\"path_hierarchy_v2\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet303519da289pattern\",\"tokenizer\":\"pattern\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet303519da289standard_v2\",\"tokenizer\":\"standard_v2\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet303519da289uax_url_email\",\"tokenizer\":\"uax_url_email\",\"tokenFilters\":[],\"charFilters\":[]},{\"@odata.type\":\"#Microsoft.Azure.Search.CustomAnalyzer\",\"name\":\"azsmnet303519da289whitespace\",\"tokenizer\":\"whitespace\",\"tokenFilters\":[],\"charFilters\":[]}],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "5c0d47eb-76cc-42f7-98fd-2f9f5bc775d5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallanalysiscomponentnames0ed314445f5e4fc3b')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallanalysiscomponentnames73e06023973036929')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentnames0ed314445f5e4fc3b')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentnames73e06023973036929')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a7e9120d-dedb-4651-bea0-9fbefa4c8d4f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2de010f0-b316-4bc5-a69a-42ca0144a9f2" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a7e9120d-dedb-4651-bea0-9fbefa4c8d4f", - "elapsed-time" : "1389", + "client-request-id" : "2de010f0-b316-4bc5-a69a-42ca0144a9f2", + "elapsed-time" : "521", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "a7e9120d-dedb-4651-bea0-9fbefa4c8d4f", + "request-id" : "2de010f0-b316-4bc5-a69a-42ca0144a9f2", "StatusCode" : "204", - "x-ms-client-request-id" : "a7e9120d-dedb-4651-bea0-9fbefa4c8d4f", - "Date" : "Fri, 02 Apr 2021 22:35:50 GMT" + "x-ms-client-request-id" : "2de010f0-b316-4bc5-a69a-42ca0144a9f2", + "Date" : "Thu, 27 May 2021 21:14:21 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallanalysiscomponentnames0ed314445f5e4fc3b", "azsmnet72273b6ba8a" ] + "variables" : [ "hotelscanuseallanalysiscomponentnames73e06023973036929", "azsmnet303519da289" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllAnalysisComponentOptions.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllAnalysisComponentOptions.json index 62b0bbf5aaf9..3d940cbaa862 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllAnalysisComponentOptions.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllAnalysisComponentOptions.json @@ -1,312 +1,312 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "83af6f3f-14fb-45f4-80d9-ac7caab26ec3", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "399a5b88-ada8-4505-87dd-d8c27c868424", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "16303", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "83af6f3f-14fb-45f4-80d9-ac7caab26ec3", + "request-id" : "399a5b88-ada8-4505-87dd-d8c27c868424", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:55 GMT", + "Date" : "Thu, 27 May 2021 21:14:28 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627ADEE471E\"", - "client-request-id" : "83af6f3f-14fb-45f4-80d9-ac7caab26ec3", - "elapsed-time" : "1139", + "ETag" : "W/\"0x8D9215469A9A20F\"", + "client-request-id" : "399a5b88-ada8-4505-87dd-d8c27c868424", + "elapsed-time" : "1523", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "16806", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627ADEE471E\\\"\",\"name\":\"hotelscanuseallanalysiscomponentoptionsda58414476953353\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenizer\",\"name\":\"azsmnet19416c010c9\",\"minGram\":1,\"maxGram\":2,\"tokenChars\":[\"letter\",\"digit\",\"whitespace\",\"punctuation\",\"symbol\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet399345bc710\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"arabic\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet438892617f1\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"bangla\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet0149633ea34\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"bulgarian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet71538e34950\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"catalan\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet81706e22564\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"croatian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet43574602e90\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"czech\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet806389e168b\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"danish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet860377d1f4f\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"dutch\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet31939f9a792\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"english\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet23357a2b674\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"estonian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet44849263eac\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"finnish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet29062b4ec04\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"french\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet44318f71195\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"german\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet84993fc8d8d\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"greek\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet4255269e331\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"gujarati\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet6325273780c\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"hebrew\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet69263abf8d8\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"hindi\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet257730fc1ee\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"hungarian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet41625b2f74f\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"icelandic\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet4369171d590\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"indonesian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet15350772958\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"italian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet75715a13b5c\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"kannada\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet69788d9eea4\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"latvian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet895610969ab\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"lithuanian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet8965057740d\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"malay\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet07909005cd1\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"malayalam\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet56683fd48f3\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"marathi\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet35979b3dab8\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"norwegianBokmaal\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet56935748788\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"polish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet4353986215c\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"portuguese\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet498429ab589\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"portugueseBrazilian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet7036487bcf4\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"punjabi\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet7854472b694\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"romanian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet78614c6aea8\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"russian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet73383081ec4\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"serbianCyrillic\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet008664ed59e\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"serbianLatin\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet149242c55cd\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"slovak\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet0323904a894\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"slovenian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet876518719fe\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"spanish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet71754accfc6\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"swedish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet0154216437d\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"tamil\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet4044472e74b\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"telugu\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet78531ad252d\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"turkish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet3117549de12\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"ukrainian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet09385ef91f7\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"urdu\"}],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "83af6f3f-14fb-45f4-80d9-ac7caab26ec3", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215469A9A20F\\\"\",\"name\":\"hotelscanuseallanalysiscomponentoptions09c0410868b1de1c\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenizer\",\"name\":\"azsmnet07740f389b2\",\"minGram\":1,\"maxGram\":2,\"tokenChars\":[\"letter\",\"digit\",\"whitespace\",\"punctuation\",\"symbol\"]},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet832705a05fa\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"arabic\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet872627dbf11\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"bangla\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet1717411a2a9\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"bulgarian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet00607bc13d5\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"catalan\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet45141d1e549\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"croatian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet28913ddd2e9\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"czech\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet8405561a1ab\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"danish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet658526de072\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"dutch\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet9366893c412\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"english\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet4904273ce5c\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"estonian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet34660c96325\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"finnish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet62882fc9e7b\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"french\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet0377284ba03\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"german\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet855277f4a6c\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"greek\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet6610574bbbe\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"gujarati\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet8450017baa7\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"hebrew\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet59866965980\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"hindi\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet79368219b71\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"hungarian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet519658d74d0\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"icelandic\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet79782e13021\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"indonesian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet542374ead2a\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"italian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet0655891ea2f\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"kannada\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet574731102e4\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"latvian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet457798302f5\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"lithuanian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet751005a175e\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"malay\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet40523808c00\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"malayalam\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet28467fed2e5\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"marathi\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet75682d81241\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"norwegianBokmaal\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet805419b4738\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"polish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet418713619a1\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"portuguese\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet71483eda58a\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"portugueseBrazilian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet26904da87cc\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"punjabi\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet632141182c7\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"romanian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet44840b9cb62\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"russian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet332238198ff\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"serbianCyrillic\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet931524d852d\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"serbianLatin\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet302996c63c6\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"slovak\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet32350cff6fd\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"slovenian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet135347a8fbd\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"spanish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet340659e09f3\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"swedish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet523687c7f85\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"tamil\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet363563b1770\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"telugu\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet17853fb9c9b\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"turkish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet524113e0167\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"ukrainian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.MicrosoftLanguageStemmingTokenizer\",\"name\":\"azsmnet09637695226\",\"maxTokenLength\":200,\"isSearchTokenizer\":false,\"language\":\"urdu\"}],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "399a5b88-ada8-4505-87dd-d8c27c868424", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptionsda58414476953353')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptions09c0410868b1de1c')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptionsda58414476953353')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptions09c0410868b1de1c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b63ab79-c13a-4ee9-80b4-84a8378ef460" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "42b93fcd-eb15-446c-904c-9a5f2ed80ba5" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6b63ab79-c13a-4ee9-80b4-84a8378ef460", - "elapsed-time" : "937", + "client-request-id" : "42b93fcd-eb15-446c-904c-9a5f2ed80ba5", + "elapsed-time" : "524", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "6b63ab79-c13a-4ee9-80b4-84a8378ef460", + "request-id" : "42b93fcd-eb15-446c-904c-9a5f2ed80ba5", "StatusCode" : "204", - "x-ms-client-request-id" : "6b63ab79-c13a-4ee9-80b4-84a8378ef460", - "Date" : "Fri, 02 Apr 2021 22:35:56 GMT" + "x-ms-client-request-id" : "42b93fcd-eb15-446c-904c-9a5f2ed80ba5", + "Date" : "Thu, 27 May 2021 21:14:27 GMT" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e563e17d-5e5d-412f-b8fe-c1bcff0349b8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "85dd2b0b-0267-4ff3-a8cd-03dde4a55d5b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "14159", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e563e17d-5e5d-412f-b8fe-c1bcff0349b8", + "request-id" : "85dd2b0b-0267-4ff3-a8cd-03dde4a55d5b", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:57 GMT", + "Date" : "Thu, 27 May 2021 21:14:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627AF451248\"", - "client-request-id" : "e563e17d-5e5d-412f-b8fe-c1bcff0349b8", - "elapsed-time" : "1202", + "ETag" : "W/\"0x8D921546AF59861\"", + "client-request-id" : "85dd2b0b-0267-4ff3-a8cd-03dde4a55d5b", + "elapsed-time" : "1528", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "14662", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627AF451248\\\"\",\"name\":\"hotelscanuseallanalysiscomponentoptionsda592545dafd362b\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.CjkBigramTokenFilter\",\"name\":\"azsmnet912458df8b8\",\"ignoreScripts\":[\"han\",\"hiragana\",\"katakana\",\"hangul\"],\"outputUnigrams\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenFilterV2\",\"name\":\"azsmnet603073fecc4\",\"minGram\":1,\"maxGram\":2,\"side\":\"front\"},{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenFilterV2\",\"name\":\"azsmnet99100bceec6\",\"minGram\":1,\"maxGram\":2,\"side\":\"back\"},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet880954e0ec6\",\"encoder\":\"metaphone\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet6550560d2e3\",\"encoder\":\"doubleMetaphone\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet672809d4726\",\"encoder\":\"soundex\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet49675ed062a\",\"encoder\":\"refinedSoundex\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet525021d8841\",\"encoder\":\"caverphone1\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet73869f4c7b4\",\"encoder\":\"caverphone2\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet974249047a7\",\"encoder\":\"cologne\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet133031dfb71\",\"encoder\":\"nysiis\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet860768154e4\",\"encoder\":\"koelnerPhonetik\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet0379725f0b7\",\"encoder\":\"haasePhonetik\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet248652a4cfb\",\"encoder\":\"beiderMorse\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet932538404c3\",\"language\":\"armenian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet74391d29166\",\"language\":\"basque\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet49922dfb952\",\"language\":\"catalan\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet25230b0455a\",\"language\":\"danish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet77522b94999\",\"language\":\"dutch\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet35932d6cefc\",\"language\":\"english\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet81348dc8ae5\",\"language\":\"finnish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet73907179750\",\"language\":\"french\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet2988492dee4\",\"language\":\"german\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet57580ba809c\",\"language\":\"german2\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet72146909299\",\"language\":\"hungarian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet84548be603a\",\"language\":\"italian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet84701515e71\",\"language\":\"kp\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet7248803904b\",\"language\":\"lovins\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet759704df7f2\",\"language\":\"norwegian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet37007ebee16\",\"language\":\"porter\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet81937aae4f6\",\"language\":\"portuguese\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet97696eff576\",\"language\":\"romanian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet4929425bf5c\",\"language\":\"russian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet5122844c880\",\"language\":\"spanish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet91506854fe3\",\"language\":\"swedish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet352055a9609\",\"language\":\"turkish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet53344f8b17f\",\"language\":\"arabic\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet479422f2349\",\"language\":\"armenian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet1462153c00b\",\"language\":\"basque\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet5071282f29b\",\"language\":\"brazilian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet8021506a71e\",\"language\":\"bulgarian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet449617ed95d\",\"language\":\"catalan\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet79179fa4983\",\"language\":\"czech\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet578399a9dbe\",\"language\":\"danish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet76680103e08\",\"language\":\"dutch\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet12821944767\",\"language\":\"dutchKp\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet817457a037c\",\"language\":\"english\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet099658285ae\",\"language\":\"lightEnglish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet273070d86fa\",\"language\":\"minimalEnglish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet85054cbf0ee\",\"language\":\"possessiveEnglish\"}],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "e563e17d-5e5d-412f-b8fe-c1bcff0349b8", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921546AF59861\\\"\",\"name\":\"hotelscanuseallanalysiscomponentoptions09c077981efaca53\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.CjkBigramTokenFilter\",\"name\":\"azsmnet191571e8ce9\",\"ignoreScripts\":[\"han\",\"hiragana\",\"katakana\",\"hangul\"],\"outputUnigrams\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenFilterV2\",\"name\":\"azsmnet53088b9054f\",\"minGram\":1,\"maxGram\":2,\"side\":\"front\"},{\"@odata.type\":\"#Microsoft.Azure.Search.EdgeNGramTokenFilterV2\",\"name\":\"azsmnet61829d280e7\",\"minGram\":1,\"maxGram\":2,\"side\":\"back\"},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet46201d5876b\",\"encoder\":\"metaphone\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet773053e1b2f\",\"encoder\":\"doubleMetaphone\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet865607b4655\",\"encoder\":\"soundex\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet14898eac14f\",\"encoder\":\"refinedSoundex\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet14722be0ddb\",\"encoder\":\"caverphone1\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet32610aab942\",\"encoder\":\"caverphone2\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet2957267ac38\",\"encoder\":\"cologne\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet0705872b254\",\"encoder\":\"nysiis\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet308940398ed\",\"encoder\":\"koelnerPhonetik\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet57580302c89\",\"encoder\":\"haasePhonetik\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.PhoneticTokenFilter\",\"name\":\"azsmnet9619793b2a5\",\"encoder\":\"beiderMorse\",\"replace\":false},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet29542fb8c51\",\"language\":\"armenian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet3879493f71c\",\"language\":\"basque\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet30403fa2a04\",\"language\":\"catalan\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet698399717be\",\"language\":\"danish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet73352396df4\",\"language\":\"dutch\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet999470e9f37\",\"language\":\"english\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet78201c66937\",\"language\":\"finnish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet5619397c3c5\",\"language\":\"french\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet6236889ce80\",\"language\":\"german\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet02029424af3\",\"language\":\"german2\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet34335a00ffa\",\"language\":\"hungarian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet5789053dd3a\",\"language\":\"italian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet7386759a62b\",\"language\":\"kp\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet96601d7e9ce\",\"language\":\"lovins\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet466512e3c11\",\"language\":\"norwegian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet33574aed9cf\",\"language\":\"porter\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet9955106bef8\",\"language\":\"portuguese\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet5041919af93\",\"language\":\"romanian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet266328f1435\",\"language\":\"russian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet43735db422c\",\"language\":\"spanish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet06859797766\",\"language\":\"swedish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.SnowballTokenFilter\",\"name\":\"azsmnet090980956dd\",\"language\":\"turkish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet9357273bbc4\",\"language\":\"arabic\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet487335b61ac\",\"language\":\"armenian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet124651e8720\",\"language\":\"basque\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet955752d3791\",\"language\":\"brazilian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet423624923e5\",\"language\":\"bulgarian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet936583bf56e\",\"language\":\"catalan\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet443378d797b\",\"language\":\"czech\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet815124aeeae\",\"language\":\"danish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet22387898a54\",\"language\":\"dutch\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet356701c8f52\",\"language\":\"dutchKp\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet902517ee391\",\"language\":\"english\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet3974325770d\",\"language\":\"lightEnglish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet54192dc8856\",\"language\":\"minimalEnglish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet071637309ef\",\"language\":\"possessiveEnglish\"}],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "85dd2b0b-0267-4ff3-a8cd-03dde4a55d5b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptionsda592545dafd362b')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptions09c077981efaca53')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptionsda592545dafd362b')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptions09c077981efaca53')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2f307f5-b5df-4535-9e59-8254c9270694" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "00cb8e54-2741-42fc-96d5-e47404cacc39" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d2f307f5-b5df-4535-9e59-8254c9270694", - "elapsed-time" : "1346", + "client-request-id" : "00cb8e54-2741-42fc-96d5-e47404cacc39", + "elapsed-time" : "505", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "d2f307f5-b5df-4535-9e59-8254c9270694", + "request-id" : "00cb8e54-2741-42fc-96d5-e47404cacc39", "StatusCode" : "204", - "x-ms-client-request-id" : "d2f307f5-b5df-4535-9e59-8254c9270694", - "Date" : "Fri, 02 Apr 2021 22:35:58 GMT" + "x-ms-client-request-id" : "00cb8e54-2741-42fc-96d5-e47404cacc39", + "Date" : "Thu, 27 May 2021 21:14:31 GMT" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8d40ff7b-2602-47ea-9274-a53e901d1a33", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5bf94ea6-e199-4e2e-a69e-3ddb00e6d1e0", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "14545", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8d40ff7b-2602-47ea-9274-a53e901d1a33", + "request-id" : "5bf94ea6-e199-4e2e-a69e-3ddb00e6d1e0", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:00 GMT", + "Date" : "Thu, 27 May 2021 21:14:31 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627B0D10030\"", - "client-request-id" : "8d40ff7b-2602-47ea-9274-a53e901d1a33", - "elapsed-time" : "1151", + "ETag" : "W/\"0x8D921546C470DF3\"", + "client-request-id" : "5bf94ea6-e199-4e2e-a69e-3ddb00e6d1e0", + "elapsed-time" : "1595", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "15048", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627B0D10030\\\"\",\"name\":\"hotelscanuseallanalysiscomponentoptionsda53281522ef22ba\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet99786f1caec\",\"language\":\"porter2\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet13478dd9ade\",\"language\":\"lovins\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet41180b8fc84\",\"language\":\"finnish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet98596d386f2\",\"language\":\"lightFinnish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet869796a9b3e\",\"language\":\"french\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet31067441374\",\"language\":\"lightFrench\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet88736357f25\",\"language\":\"minimalFrench\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet34967746fe2\",\"language\":\"galician\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet08324aa7fe9\",\"language\":\"minimalGalician\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet46214a01e52\",\"language\":\"german\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet81737e2d3a3\",\"language\":\"german2\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet116833c515c\",\"language\":\"lightGerman\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet64086ee8893\",\"language\":\"minimalGerman\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet433618f0fca\",\"language\":\"greek\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet59770eedebd\",\"language\":\"hindi\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet705306b02c1\",\"language\":\"hungarian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet0896252d8be\",\"language\":\"lightHungarian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet35942c768cb\",\"language\":\"indonesian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet64389f6b959\",\"language\":\"irish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet351522cf4e7\",\"language\":\"italian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet31527947764\",\"language\":\"lightItalian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet134832fce73\",\"language\":\"sorani\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet070873e1551\",\"language\":\"latvian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet98616bc074b\",\"language\":\"norwegian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet8757289d6ae\",\"language\":\"lightNorwegian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet273022ed1e0\",\"language\":\"minimalNorwegian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet36487066a24\",\"language\":\"lightNynorsk\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet6472163a141\",\"language\":\"minimalNynorsk\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet34889716b41\",\"language\":\"portuguese\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet19378bf7083\",\"language\":\"lightPortuguese\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet882242ec429\",\"language\":\"minimalPortuguese\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet194476067db\",\"language\":\"portugueseRslp\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet03700000b77\",\"language\":\"romanian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet351655de8c3\",\"language\":\"russian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet06898aa6a0f\",\"language\":\"lightRussian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet400772bac50\",\"language\":\"spanish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet63819bebf72\",\"language\":\"lightSpanish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet96456b597ee\",\"language\":\"swedish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet02100811f17\",\"language\":\"lightSwedish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet86981fb31bc\",\"language\":\"turkish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet30816c257fa\",\"stopwords\":[],\"stopwordsList\":\"arabic\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet9812494a1eb\",\"stopwords\":[],\"stopwordsList\":\"armenian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet5561053960a\",\"stopwords\":[],\"stopwordsList\":\"basque\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet593713de2f6\",\"stopwords\":[],\"stopwordsList\":\"brazilian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet031880b61e6\",\"stopwords\":[],\"stopwordsList\":\"bulgarian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet55779de04a2\",\"stopwords\":[],\"stopwordsList\":\"catalan\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet9373754ae9b\",\"stopwords\":[],\"stopwordsList\":\"czech\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet51803e163a6\",\"stopwords\":[],\"stopwordsList\":\"danish\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet829283d6de0\",\"stopwords\":[],\"stopwordsList\":\"dutch\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet7476367bd22\",\"stopwords\":[],\"stopwordsList\":\"english\",\"ignoreCase\":false,\"removeTrailing\":true}],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "8d40ff7b-2602-47ea-9274-a53e901d1a33", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921546C470DF3\\\"\",\"name\":\"hotelscanuseallanalysiscomponentoptions09c215378d775e50\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet869274bd809\",\"language\":\"porter2\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet218986a9647\",\"language\":\"lovins\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet62151fc08f9\",\"language\":\"finnish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet706258ab88c\",\"language\":\"lightFinnish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet0087241eaf0\",\"language\":\"french\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet83822e7fbe6\",\"language\":\"lightFrench\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet5406933f2df\",\"language\":\"minimalFrench\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet09165b6d736\",\"language\":\"galician\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet178504ce698\",\"language\":\"minimalGalician\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet7917001223d\",\"language\":\"german\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet64709196128\",\"language\":\"german2\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet5645377cf3a\",\"language\":\"lightGerman\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet73914468225\",\"language\":\"minimalGerman\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet80810cb1d03\",\"language\":\"greek\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet1122341d43d\",\"language\":\"hindi\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet191940493b7\",\"language\":\"hungarian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet5052598bc95\",\"language\":\"lightHungarian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet01388595676\",\"language\":\"indonesian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet9057359a29d\",\"language\":\"irish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet30161fd922e\",\"language\":\"italian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet91020890ae3\",\"language\":\"lightItalian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet39221944cf7\",\"language\":\"sorani\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet08321548335\",\"language\":\"latvian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet1993955759b\",\"language\":\"norwegian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet84518f35fcc\",\"language\":\"lightNorwegian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet25442807126\",\"language\":\"minimalNorwegian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet30801aabf52\",\"language\":\"lightNynorsk\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet58964f0e4f8\",\"language\":\"minimalNynorsk\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet07787e8ee28\",\"language\":\"portuguese\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet5754993483e\",\"language\":\"lightPortuguese\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet574413bb81d\",\"language\":\"minimalPortuguese\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet99937992579\",\"language\":\"portugueseRslp\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet717104a8c17\",\"language\":\"romanian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet42171659f5d\",\"language\":\"russian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet69872a302c2\",\"language\":\"lightRussian\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet487790cacc9\",\"language\":\"spanish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet88224b2c274\",\"language\":\"lightSpanish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet483658e68e5\",\"language\":\"swedish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet3772361734a\",\"language\":\"lightSwedish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StemmerTokenFilter\",\"name\":\"azsmnet1890768fae4\",\"language\":\"turkish\"},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet15706f4175f\",\"stopwords\":[],\"stopwordsList\":\"arabic\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet37496ea2b7b\",\"stopwords\":[],\"stopwordsList\":\"armenian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet06733174fa3\",\"stopwords\":[],\"stopwordsList\":\"basque\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet65603cd4d4d\",\"stopwords\":[],\"stopwordsList\":\"brazilian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet34324fe17f5\",\"stopwords\":[],\"stopwordsList\":\"bulgarian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet0282573d12c\",\"stopwords\":[],\"stopwordsList\":\"catalan\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet98592b5c3b6\",\"stopwords\":[],\"stopwordsList\":\"czech\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet27338aeb2cb\",\"stopwords\":[],\"stopwordsList\":\"danish\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet542482fd364\",\"stopwords\":[],\"stopwordsList\":\"dutch\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet945167deb79\",\"stopwords\":[],\"stopwordsList\":\"english\",\"ignoreCase\":false,\"removeTrailing\":true}],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "5bf94ea6-e199-4e2e-a69e-3ddb00e6d1e0", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptionsda53281522ef22ba')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptions09c215378d775e50')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptionsda53281522ef22ba')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptions09c215378d775e50')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "037db046-d87d-4c1c-a594-a03e51ae651b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "12b8e8ea-b950-4411-b340-4a65301fa6dd" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "037db046-d87d-4c1c-a594-a03e51ae651b", - "elapsed-time" : "1533", + "client-request-id" : "12b8e8ea-b950-4411-b340-4a65301fa6dd", + "elapsed-time" : "516", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "037db046-d87d-4c1c-a594-a03e51ae651b", + "request-id" : "12b8e8ea-b950-4411-b340-4a65301fa6dd", "StatusCode" : "204", - "x-ms-client-request-id" : "037db046-d87d-4c1c-a594-a03e51ae651b", - "Date" : "Fri, 02 Apr 2021 22:36:01 GMT" + "x-ms-client-request-id" : "12b8e8ea-b950-4411-b340-4a65301fa6dd", + "Date" : "Thu, 27 May 2021 21:14:32 GMT" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0cd69cb9-f76a-4c63-8f39-ebdefb488a3e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9def5796-1021-4f68-b88a-4956732a6e5d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "11935", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0cd69cb9-f76a-4c63-8f39-ebdefb488a3e", + "request-id" : "9def5796-1021-4f68-b88a-4956732a6e5d", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:03 GMT", + "Date" : "Thu, 27 May 2021 21:14:34 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627B271B26F\"", - "client-request-id" : "0cd69cb9-f76a-4c63-8f39-ebdefb488a3e", - "elapsed-time" : "1110", + "ETag" : "W/\"0x8D921546D87B79A\"", + "client-request-id" : "9def5796-1021-4f68-b88a-4956732a6e5d", + "elapsed-time" : "1490", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12438", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627B271B26F\\\"\",\"name\":\"hotelscanuseallanalysiscomponentoptionsda5356929dfb26b3\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet16279838e1a\",\"stopwords\":[],\"stopwordsList\":\"finnish\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet81398cf28f3\",\"stopwords\":[],\"stopwordsList\":\"french\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet3330953ebc2\",\"stopwords\":[],\"stopwordsList\":\"galician\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet84027b8a440\",\"stopwords\":[],\"stopwordsList\":\"german\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet793806a0ba4\",\"stopwords\":[],\"stopwordsList\":\"greek\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet60507cead8b\",\"stopwords\":[],\"stopwordsList\":\"hindi\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet2728240b987\",\"stopwords\":[],\"stopwordsList\":\"hungarian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet77982dbb815\",\"stopwords\":[],\"stopwordsList\":\"indonesian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet9074658e159\",\"stopwords\":[],\"stopwordsList\":\"irish\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet866010ce86d\",\"stopwords\":[],\"stopwordsList\":\"italian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet6108540a4f2\",\"stopwords\":[],\"stopwordsList\":\"latvian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet060614693eb\",\"stopwords\":[],\"stopwordsList\":\"norwegian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet020249bfbac\",\"stopwords\":[],\"stopwordsList\":\"persian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet767853d7eba\",\"stopwords\":[],\"stopwordsList\":\"portuguese\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet38824e271ed\",\"stopwords\":[],\"stopwordsList\":\"romanian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet83473701795\",\"stopwords\":[],\"stopwordsList\":\"russian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet603751e70d8\",\"stopwords\":[],\"stopwordsList\":\"sorani\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet223373f77e6\",\"stopwords\":[],\"stopwordsList\":\"spanish\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet551173690c3\",\"stopwords\":[],\"stopwordsList\":\"swedish\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet77308c335cb\",\"stopwords\":[],\"stopwordsList\":\"thai\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet77844e22ed4\",\"stopwords\":[],\"stopwordsList\":\"turkish\",\"ignoreCase\":false,\"removeTrailing\":true}],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "0cd69cb9-f76a-4c63-8f39-ebdefb488a3e", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921546D87B79A\\\"\",\"name\":\"hotelscanuseallanalysiscomponentoptions09c267127bd6ea8d\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet09806955cf1\",\"stopwords\":[],\"stopwordsList\":\"finnish\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet878591db7dc\",\"stopwords\":[],\"stopwordsList\":\"french\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet71285840c53\",\"stopwords\":[],\"stopwordsList\":\"galician\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet41395028ad4\",\"stopwords\":[],\"stopwordsList\":\"german\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet57164dbb6ce\",\"stopwords\":[],\"stopwordsList\":\"greek\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet246432c5048\",\"stopwords\":[],\"stopwordsList\":\"hindi\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet13523cbedf5\",\"stopwords\":[],\"stopwordsList\":\"hungarian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet405308026fb\",\"stopwords\":[],\"stopwordsList\":\"indonesian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet3473700c2fc\",\"stopwords\":[],\"stopwordsList\":\"irish\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet1853391193f\",\"stopwords\":[],\"stopwordsList\":\"italian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet452838875ba\",\"stopwords\":[],\"stopwordsList\":\"latvian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet61915978be9\",\"stopwords\":[],\"stopwordsList\":\"norwegian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet96920caf881\",\"stopwords\":[],\"stopwordsList\":\"persian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet50508cdb97c\",\"stopwords\":[],\"stopwordsList\":\"portuguese\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet533065b816b\",\"stopwords\":[],\"stopwordsList\":\"romanian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet645219357d6\",\"stopwords\":[],\"stopwordsList\":\"russian\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet411778dbecc\",\"stopwords\":[],\"stopwordsList\":\"sorani\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet336761460b8\",\"stopwords\":[],\"stopwordsList\":\"spanish\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet8264055e8f6\",\"stopwords\":[],\"stopwordsList\":\"swedish\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet1349677e6a8\",\"stopwords\":[],\"stopwordsList\":\"thai\",\"ignoreCase\":false,\"removeTrailing\":true},{\"@odata.type\":\"#Microsoft.Azure.Search.StopwordsTokenFilter\",\"name\":\"azsmnet23993826103\",\"stopwords\":[],\"stopwordsList\":\"turkish\",\"ignoreCase\":false,\"removeTrailing\":true}],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "9def5796-1021-4f68-b88a-4956732a6e5d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptionsda5356929dfb26b3')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptions09c267127bd6ea8d')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptionsda5356929dfb26b3')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptions09c267127bd6ea8d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "270dc7f9-abca-49bf-bafe-e41cfe10f386" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5cebf278-5cae-423a-b4a3-6ffcbeeaa437" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "270dc7f9-abca-49bf-bafe-e41cfe10f386", - "elapsed-time" : "529", + "client-request-id" : "5cebf278-5cae-423a-b4a3-6ffcbeeaa437", + "elapsed-time" : "571", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "270dc7f9-abca-49bf-bafe-e41cfe10f386", + "request-id" : "5cebf278-5cae-423a-b4a3-6ffcbeeaa437", "StatusCode" : "204", - "x-ms-client-request-id" : "270dc7f9-abca-49bf-bafe-e41cfe10f386", - "Date" : "Fri, 02 Apr 2021 22:36:03 GMT" + "x-ms-client-request-id" : "5cebf278-5cae-423a-b4a3-6ffcbeeaa437", + "Date" : "Thu, 27 May 2021 21:14:35 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptionsda58414476953353')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptions09c0410868b1de1c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "940bc1d8-b58c-46b5-bf4a-3693069810bf" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "37517cb2-8c08-4966-97c1-1c88e063f6c7" }, "Response" : { + "content-length" : "364", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "940bc1d8-b58c-46b5-bf4a-3693069810bf", + "request-id" : "37517cb2-8c08-4966-97c1-1c88e063f6c7", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:36:03 GMT", + "Date" : "Thu, 27 May 2021 21:14:34 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "940bc1d8-b58c-46b5-bf4a-3693069810bf", - "elapsed-time" : "28", + "client-request-id" : "37517cb2-8c08-4966-97c1-1c88e063f6c7", + "elapsed-time" : "18", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No index with the name 'hotelscanuseallanalysiscomponentoptionsda58414476953353' was found in a service named 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"OperationNotAllowed\",\"message\":\"No index with the name 'hotelscanuseallanalysiscomponentoptions09c0410868b1de1c' was found in a service named 'alzimmer-test'.\",\"details\":[{\"code\":\"IndexNotFoundInService\",\"message\":\"No index with the name 'hotelscanuseallanalysiscomponentoptions09c0410868b1de1c' was found in a service named 'alzimmer-test'.\"}]}}", "Content-Language" : "en", - "x-ms-client-request-id" : "940bc1d8-b58c-46b5-bf4a-3693069810bf", + "x-ms-client-request-id" : "37517cb2-8c08-4966-97c1-1c88e063f6c7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptionsda592545dafd362b')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptions09c077981efaca53')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "aef0f6e1-c944-472a-a226-2bccf27f16ed" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a09560bf-23f1-4105-bdec-fa9410c18c69" }, "Response" : { + "content-length" : "364", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "aef0f6e1-c944-472a-a226-2bccf27f16ed", + "request-id" : "a09560bf-23f1-4105-bdec-fa9410c18c69", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:36:03 GMT", + "Date" : "Thu, 27 May 2021 21:14:35 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "aef0f6e1-c944-472a-a226-2bccf27f16ed", - "elapsed-time" : "27", + "client-request-id" : "a09560bf-23f1-4105-bdec-fa9410c18c69", + "elapsed-time" : "15", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No index with the name 'hotelscanuseallanalysiscomponentoptionsda592545dafd362b' was found in a service named 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"OperationNotAllowed\",\"message\":\"No index with the name 'hotelscanuseallanalysiscomponentoptions09c077981efaca53' was found in a service named 'alzimmer-test'.\",\"details\":[{\"code\":\"IndexNotFoundInService\",\"message\":\"No index with the name 'hotelscanuseallanalysiscomponentoptions09c077981efaca53' was found in a service named 'alzimmer-test'.\"}]}}", "Content-Language" : "en", - "x-ms-client-request-id" : "aef0f6e1-c944-472a-a226-2bccf27f16ed", + "x-ms-client-request-id" : "a09560bf-23f1-4105-bdec-fa9410c18c69", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptionsda53281522ef22ba')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptions09c215378d775e50')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "82f39250-1198-43db-b855-56d02660b303" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bdbb739b-cfaa-44d2-913e-a03852df0172" }, "Response" : { + "content-length" : "364", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "82f39250-1198-43db-b855-56d02660b303", + "request-id" : "bdbb739b-cfaa-44d2-913e-a03852df0172", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:36:03 GMT", + "Date" : "Thu, 27 May 2021 21:14:34 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "82f39250-1198-43db-b855-56d02660b303", - "elapsed-time" : "14", + "client-request-id" : "bdbb739b-cfaa-44d2-913e-a03852df0172", + "elapsed-time" : "18", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No index with the name 'hotelscanuseallanalysiscomponentoptionsda53281522ef22ba' was found in a service named 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"OperationNotAllowed\",\"message\":\"No index with the name 'hotelscanuseallanalysiscomponentoptions09c215378d775e50' was found in a service named 'alzimmer-test'.\",\"details\":[{\"code\":\"IndexNotFoundInService\",\"message\":\"No index with the name 'hotelscanuseallanalysiscomponentoptions09c215378d775e50' was found in a service named 'alzimmer-test'.\"}]}}", "Content-Language" : "en", - "x-ms-client-request-id" : "82f39250-1198-43db-b855-56d02660b303", + "x-ms-client-request-id" : "bdbb739b-cfaa-44d2-913e-a03852df0172", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptionsda5356929dfb26b3')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallanalysiscomponentoptions09c267127bd6ea8d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8a8c2486-641d-451d-a3ea-1dc00cf1e7d4" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "558fe5fa-0811-43d5-b77f-d6af036540a7" }, "Response" : { + "content-length" : "364", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8a8c2486-641d-451d-a3ea-1dc00cf1e7d4", + "request-id" : "558fe5fa-0811-43d5-b77f-d6af036540a7", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:36:03 GMT", + "Date" : "Thu, 27 May 2021 21:14:35 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8a8c2486-641d-451d-a3ea-1dc00cf1e7d4", - "elapsed-time" : "15", + "client-request-id" : "558fe5fa-0811-43d5-b77f-d6af036540a7", + "elapsed-time" : "14", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No index with the name 'hotelscanuseallanalysiscomponentoptionsda5356929dfb26b3' was found in a service named 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"OperationNotAllowed\",\"message\":\"No index with the name 'hotelscanuseallanalysiscomponentoptions09c267127bd6ea8d' was found in a service named 'alzimmer-test'.\",\"details\":[{\"code\":\"IndexNotFoundInService\",\"message\":\"No index with the name 'hotelscanuseallanalysiscomponentoptions09c267127bd6ea8d' was found in a service named 'alzimmer-test'.\"}]}}", "Content-Language" : "en", - "x-ms-client-request-id" : "8a8c2486-641d-451d-a3ea-1dc00cf1e7d4", + "x-ms-client-request-id" : "558fe5fa-0811-43d5-b77f-d6af036540a7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallanalysiscomponentoptionsda513032eae1f5b6", "azsmnet19416c010c9", "azsmnet399345bc710", "azsmnet438892617f1", "azsmnet0149633ea34", "azsmnet71538e34950", "azsmnet81706e22564", "azsmnet43574602e90", "azsmnet806389e168b", "azsmnet860377d1f4f", "azsmnet31939f9a792", "azsmnet23357a2b674", "azsmnet44849263eac", "azsmnet29062b4ec04", "azsmnet44318f71195", "azsmnet84993fc8d8d", "azsmnet4255269e331", "azsmnet6325273780c", "azsmnet69263abf8d8", "azsmnet257730fc1ee", "azsmnet41625b2f74f", "azsmnet4369171d590", "azsmnet15350772958", "azsmnet75715a13b5c", "azsmnet69788d9eea4", "azsmnet895610969ab", "azsmnet8965057740d", "azsmnet07909005cd1", "azsmnet56683fd48f3", "azsmnet35979b3dab8", "azsmnet56935748788", "azsmnet4353986215c", "azsmnet498429ab589", "azsmnet7036487bcf4", "azsmnet7854472b694", "azsmnet78614c6aea8", "azsmnet73383081ec4", "azsmnet008664ed59e", "azsmnet149242c55cd", "azsmnet0323904a894", "azsmnet876518719fe", "azsmnet71754accfc6", "azsmnet0154216437d", "azsmnet4044472e74b", "azsmnet78531ad252d", "azsmnet3117549de12", "azsmnet09385ef91f7", "azsmnet912458df8b8", "azsmnet603073fecc4", "azsmnet99100bceec6", "azsmnet880954e0ec6", "azsmnet6550560d2e3", "azsmnet672809d4726", "azsmnet49675ed062a", "azsmnet525021d8841", "azsmnet73869f4c7b4", "azsmnet974249047a7", "azsmnet133031dfb71", "azsmnet860768154e4", "azsmnet0379725f0b7", "azsmnet248652a4cfb", "azsmnet932538404c3", "azsmnet74391d29166", "azsmnet49922dfb952", "azsmnet25230b0455a", "azsmnet77522b94999", "azsmnet35932d6cefc", "azsmnet81348dc8ae5", "azsmnet73907179750", "azsmnet2988492dee4", "azsmnet57580ba809c", "azsmnet72146909299", "azsmnet84548be603a", "azsmnet84701515e71", "azsmnet7248803904b", "azsmnet759704df7f2", "azsmnet37007ebee16", "azsmnet81937aae4f6", "azsmnet97696eff576", "azsmnet4929425bf5c", "azsmnet5122844c880", "azsmnet91506854fe3", "azsmnet352055a9609", "azsmnet53344f8b17f", "azsmnet479422f2349", "azsmnet1462153c00b", "azsmnet5071282f29b", "azsmnet8021506a71e", "azsmnet449617ed95d", "azsmnet79179fa4983", "azsmnet578399a9dbe", "azsmnet76680103e08", "azsmnet12821944767", "azsmnet817457a037c", "azsmnet099658285ae", "azsmnet273070d86fa", "azsmnet85054cbf0ee", "azsmnet99786f1caec", "azsmnet13478dd9ade", "azsmnet41180b8fc84", "azsmnet98596d386f2", "azsmnet869796a9b3e", "azsmnet31067441374", "azsmnet88736357f25", "azsmnet34967746fe2", "azsmnet08324aa7fe9", "azsmnet46214a01e52", "azsmnet81737e2d3a3", "azsmnet116833c515c", "azsmnet64086ee8893", "azsmnet433618f0fca", "azsmnet59770eedebd", "azsmnet705306b02c1", "azsmnet0896252d8be", "azsmnet35942c768cb", "azsmnet64389f6b959", "azsmnet351522cf4e7", "azsmnet31527947764", "azsmnet134832fce73", "azsmnet070873e1551", "azsmnet98616bc074b", "azsmnet8757289d6ae", "azsmnet273022ed1e0", "azsmnet36487066a24", "azsmnet6472163a141", "azsmnet34889716b41", "azsmnet19378bf7083", "azsmnet882242ec429", "azsmnet194476067db", "azsmnet03700000b77", "azsmnet351655de8c3", "azsmnet06898aa6a0f", "azsmnet400772bac50", "azsmnet63819bebf72", "azsmnet96456b597ee", "azsmnet02100811f17", "azsmnet86981fb31bc", "azsmnet30816c257fa", "azsmnet9812494a1eb", "azsmnet5561053960a", "azsmnet593713de2f6", "azsmnet031880b61e6", "azsmnet55779de04a2", "azsmnet9373754ae9b", "azsmnet51803e163a6", "azsmnet829283d6de0", "azsmnet7476367bd22", "azsmnet16279838e1a", "azsmnet81398cf28f3", "azsmnet3330953ebc2", "azsmnet84027b8a440", "azsmnet793806a0ba4", "azsmnet60507cead8b", "azsmnet2728240b987", "azsmnet77982dbb815", "azsmnet9074658e159", "azsmnet866010ce86d", "azsmnet6108540a4f2", "azsmnet060614693eb", "azsmnet020249bfbac", "azsmnet767853d7eba", "azsmnet38824e271ed", "azsmnet83473701795", "azsmnet603751e70d8", "azsmnet223373f77e6", "azsmnet551173690c3", "azsmnet77308c335cb", "azsmnet77844e22ed4", "hotelscanuseallanalysiscomponentoptionsda58414476953353", "hotelscanuseallanalysiscomponentoptionsda592545dafd362b", "hotelscanuseallanalysiscomponentoptionsda53281522ef22ba", "hotelscanuseallanalysiscomponentoptionsda5356929dfb26b3" ] + "variables" : [ "hotelscanuseallanalysiscomponentoptions09c3323145ee8b9e", "azsmnet07740f389b2", "azsmnet832705a05fa", "azsmnet872627dbf11", "azsmnet1717411a2a9", "azsmnet00607bc13d5", "azsmnet45141d1e549", "azsmnet28913ddd2e9", "azsmnet8405561a1ab", "azsmnet658526de072", "azsmnet9366893c412", "azsmnet4904273ce5c", "azsmnet34660c96325", "azsmnet62882fc9e7b", "azsmnet0377284ba03", "azsmnet855277f4a6c", "azsmnet6610574bbbe", "azsmnet8450017baa7", "azsmnet59866965980", "azsmnet79368219b71", "azsmnet519658d74d0", "azsmnet79782e13021", "azsmnet542374ead2a", "azsmnet0655891ea2f", "azsmnet574731102e4", "azsmnet457798302f5", "azsmnet751005a175e", "azsmnet40523808c00", "azsmnet28467fed2e5", "azsmnet75682d81241", "azsmnet805419b4738", "azsmnet418713619a1", "azsmnet71483eda58a", "azsmnet26904da87cc", "azsmnet632141182c7", "azsmnet44840b9cb62", "azsmnet332238198ff", "azsmnet931524d852d", "azsmnet302996c63c6", "azsmnet32350cff6fd", "azsmnet135347a8fbd", "azsmnet340659e09f3", "azsmnet523687c7f85", "azsmnet363563b1770", "azsmnet17853fb9c9b", "azsmnet524113e0167", "azsmnet09637695226", "azsmnet191571e8ce9", "azsmnet53088b9054f", "azsmnet61829d280e7", "azsmnet46201d5876b", "azsmnet773053e1b2f", "azsmnet865607b4655", "azsmnet14898eac14f", "azsmnet14722be0ddb", "azsmnet32610aab942", "azsmnet2957267ac38", "azsmnet0705872b254", "azsmnet308940398ed", "azsmnet57580302c89", "azsmnet9619793b2a5", "azsmnet29542fb8c51", "azsmnet3879493f71c", "azsmnet30403fa2a04", "azsmnet698399717be", "azsmnet73352396df4", "azsmnet999470e9f37", "azsmnet78201c66937", "azsmnet5619397c3c5", "azsmnet6236889ce80", "azsmnet02029424af3", "azsmnet34335a00ffa", "azsmnet5789053dd3a", "azsmnet7386759a62b", "azsmnet96601d7e9ce", "azsmnet466512e3c11", "azsmnet33574aed9cf", "azsmnet9955106bef8", "azsmnet5041919af93", "azsmnet266328f1435", "azsmnet43735db422c", "azsmnet06859797766", "azsmnet090980956dd", "azsmnet9357273bbc4", "azsmnet487335b61ac", "azsmnet124651e8720", "azsmnet955752d3791", "azsmnet423624923e5", "azsmnet936583bf56e", "azsmnet443378d797b", "azsmnet815124aeeae", "azsmnet22387898a54", "azsmnet356701c8f52", "azsmnet902517ee391", "azsmnet3974325770d", "azsmnet54192dc8856", "azsmnet071637309ef", "azsmnet869274bd809", "azsmnet218986a9647", "azsmnet62151fc08f9", "azsmnet706258ab88c", "azsmnet0087241eaf0", "azsmnet83822e7fbe6", "azsmnet5406933f2df", "azsmnet09165b6d736", "azsmnet178504ce698", "azsmnet7917001223d", "azsmnet64709196128", "azsmnet5645377cf3a", "azsmnet73914468225", "azsmnet80810cb1d03", "azsmnet1122341d43d", "azsmnet191940493b7", "azsmnet5052598bc95", "azsmnet01388595676", "azsmnet9057359a29d", "azsmnet30161fd922e", "azsmnet91020890ae3", "azsmnet39221944cf7", "azsmnet08321548335", "azsmnet1993955759b", "azsmnet84518f35fcc", "azsmnet25442807126", "azsmnet30801aabf52", "azsmnet58964f0e4f8", "azsmnet07787e8ee28", "azsmnet5754993483e", "azsmnet574413bb81d", "azsmnet99937992579", "azsmnet717104a8c17", "azsmnet42171659f5d", "azsmnet69872a302c2", "azsmnet487790cacc9", "azsmnet88224b2c274", "azsmnet483658e68e5", "azsmnet3772361734a", "azsmnet1890768fae4", "azsmnet15706f4175f", "azsmnet37496ea2b7b", "azsmnet06733174fa3", "azsmnet65603cd4d4d", "azsmnet34324fe17f5", "azsmnet0282573d12c", "azsmnet98592b5c3b6", "azsmnet27338aeb2cb", "azsmnet542482fd364", "azsmnet945167deb79", "azsmnet09806955cf1", "azsmnet878591db7dc", "azsmnet71285840c53", "azsmnet41395028ad4", "azsmnet57164dbb6ce", "azsmnet246432c5048", "azsmnet13523cbedf5", "azsmnet405308026fb", "azsmnet3473700c2fc", "azsmnet1853391193f", "azsmnet452838875ba", "azsmnet61915978be9", "azsmnet96920caf881", "azsmnet50508cdb97c", "azsmnet533065b816b", "azsmnet645219357d6", "azsmnet411778dbecc", "azsmnet336761460b8", "azsmnet8264055e8f6", "azsmnet1349677e6a8", "azsmnet23993826103", "hotelscanuseallanalysiscomponentoptions09c0410868b1de1c", "hotelscanuseallanalysiscomponentoptions09c077981efaca53", "hotelscanuseallanalysiscomponentoptions09c215378d775e50", "hotelscanuseallanalysiscomponentoptions09c267127bd6ea8d" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllAnalyzerNamesInIndexDefinition.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllAnalyzerNamesInIndexDefinition.json index 63d1853fc01f..71b77603f47e 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllAnalyzerNamesInIndexDefinition.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllAnalyzerNamesInIndexDefinition.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "de33b76f-f259-4e20-b8ea-6498ba7df11e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "181092d4-4fb0-4419-854c-3029b4d1ea34", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "23270", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "de33b76f-f259-4e20-b8ea-6498ba7df11e", + "request-id" : "181092d4-4fb0-4419-854c-3029b4d1ea34", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:19 GMT", + "Date" : "Thu, 27 May 2021 21:13:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62798692898\"", - "client-request-id" : "de33b76f-f259-4e20-b8ea-6498ba7df11e", - "elapsed-time" : "1160", + "ETag" : "W/\"0x8D9215453FC56F8\"", + "client-request-id" : "181092d4-4fb0-4419-854c-3029b4d1ea34", + "elapsed-time" : "1481", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "25069", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62798692898\\\"\",\"name\":\"hotelcanuseallanalyzernamesinindexdefinition2e370135d41218\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"field0\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ar.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field1\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ar.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field2\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"bg.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field3\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"bg.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field4\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"bn.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field5\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ca.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field6\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ca.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field7\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"cs.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field8\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"cs.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field9\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"da.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field10\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"da.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field11\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"de.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field12\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"de.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field13\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"el.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field14\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"el.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field15\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field16\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field17\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"es.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field18\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"es.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field19\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"et.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field20\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"eu.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field21\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fa.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field22\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fi.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field23\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fi.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field24\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field25\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field26\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ga.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field27\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"gl.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field28\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"gu.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field29\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"he.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field30\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"hi.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field31\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"hi.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field32\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"hr.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field33\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"hu.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field34\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"hu.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field35\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"hy.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field36\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"id.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field37\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"id.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field38\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"is.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field39\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"it.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field40\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"it.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field41\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ja.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field42\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ja.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field43\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"keyword\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field44\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"kn.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field45\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ko.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field46\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ko.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field47\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"lt.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field48\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"lv.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field49\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"lv.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field50\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ml.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field51\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"mr.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field52\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ms.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field53\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"nb.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field54\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"nl.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field55\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"nl.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field56\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"no.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field57\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"pa.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field58\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"pattern\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field59\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"pl.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field60\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"pl.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field61\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"pt-BR.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field62\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"pt-BR.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field63\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"pt-PT.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field64\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"pt-PT.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field65\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ro.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field66\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ro.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field67\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ru.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field68\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ru.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field69\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"simple\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field70\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"sk.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field71\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"sl.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field72\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"sr-cyrillic.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field73\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"sr-latin.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field74\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"standard.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field75\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"standardasciifolding.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field76\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"stop\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field77\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"sv.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field78\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"sv.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field79\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ta.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field80\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"te.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field81\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"th.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field82\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"th.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field83\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"tr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field84\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"tr.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field85\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"uk.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field86\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ur.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field87\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"vi.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field88\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"whitespace\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field89\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"zh-Hans.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field90\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"zh-Hans.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field91\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"zh-Hant.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field92\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"zh-Hant.microsoft\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field93\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"keyword\",\"searchAnalyzer\":\"keyword\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field94\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"pattern\",\"searchAnalyzer\":\"pattern\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field95\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"simple\",\"searchAnalyzer\":\"simple\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field96\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"field97\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"whitespace\",\"searchAnalyzer\":\"whitespace\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "de33b76f-f259-4e20-b8ea-6498ba7df11e", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215453FC56F8\\\"\",\"name\":\"hotelcanuseallanalyzernamesinindexdefinitionbdd2787528ec4b\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"field0\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ar.lucene\",\"synonymMaps\":[]},{\"name\":\"field1\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ar.microsoft\",\"synonymMaps\":[]},{\"name\":\"field2\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"bg.lucene\",\"synonymMaps\":[]},{\"name\":\"field3\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"bg.microsoft\",\"synonymMaps\":[]},{\"name\":\"field4\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"bn.microsoft\",\"synonymMaps\":[]},{\"name\":\"field5\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ca.lucene\",\"synonymMaps\":[]},{\"name\":\"field6\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ca.microsoft\",\"synonymMaps\":[]},{\"name\":\"field7\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"cs.lucene\",\"synonymMaps\":[]},{\"name\":\"field8\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"cs.microsoft\",\"synonymMaps\":[]},{\"name\":\"field9\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"da.lucene\",\"synonymMaps\":[]},{\"name\":\"field10\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"da.microsoft\",\"synonymMaps\":[]},{\"name\":\"field11\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"de.lucene\",\"synonymMaps\":[]},{\"name\":\"field12\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"de.microsoft\",\"synonymMaps\":[]},{\"name\":\"field13\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"el.lucene\",\"synonymMaps\":[]},{\"name\":\"field14\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"el.microsoft\",\"synonymMaps\":[]},{\"name\":\"field15\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"field16\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.microsoft\",\"synonymMaps\":[]},{\"name\":\"field17\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"es.lucene\",\"synonymMaps\":[]},{\"name\":\"field18\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"es.microsoft\",\"synonymMaps\":[]},{\"name\":\"field19\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"et.microsoft\",\"synonymMaps\":[]},{\"name\":\"field20\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"eu.lucene\",\"synonymMaps\":[]},{\"name\":\"field21\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fa.lucene\",\"synonymMaps\":[]},{\"name\":\"field22\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fi.lucene\",\"synonymMaps\":[]},{\"name\":\"field23\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fi.microsoft\",\"synonymMaps\":[]},{\"name\":\"field24\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"field25\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.microsoft\",\"synonymMaps\":[]},{\"name\":\"field26\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ga.lucene\",\"synonymMaps\":[]},{\"name\":\"field27\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"gl.lucene\",\"synonymMaps\":[]},{\"name\":\"field28\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"gu.microsoft\",\"synonymMaps\":[]},{\"name\":\"field29\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"he.microsoft\",\"synonymMaps\":[]},{\"name\":\"field30\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"hi.lucene\",\"synonymMaps\":[]},{\"name\":\"field31\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"hi.microsoft\",\"synonymMaps\":[]},{\"name\":\"field32\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"hr.microsoft\",\"synonymMaps\":[]},{\"name\":\"field33\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"hu.lucene\",\"synonymMaps\":[]},{\"name\":\"field34\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"hu.microsoft\",\"synonymMaps\":[]},{\"name\":\"field35\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"hy.lucene\",\"synonymMaps\":[]},{\"name\":\"field36\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"id.lucene\",\"synonymMaps\":[]},{\"name\":\"field37\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"id.microsoft\",\"synonymMaps\":[]},{\"name\":\"field38\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"is.microsoft\",\"synonymMaps\":[]},{\"name\":\"field39\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"it.lucene\",\"synonymMaps\":[]},{\"name\":\"field40\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"it.microsoft\",\"synonymMaps\":[]},{\"name\":\"field41\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ja.lucene\",\"synonymMaps\":[]},{\"name\":\"field42\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ja.microsoft\",\"synonymMaps\":[]},{\"name\":\"field43\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"keyword\",\"synonymMaps\":[]},{\"name\":\"field44\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"kn.microsoft\",\"synonymMaps\":[]},{\"name\":\"field45\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ko.lucene\",\"synonymMaps\":[]},{\"name\":\"field46\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ko.microsoft\",\"synonymMaps\":[]},{\"name\":\"field47\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"lt.microsoft\",\"synonymMaps\":[]},{\"name\":\"field48\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"lv.lucene\",\"synonymMaps\":[]},{\"name\":\"field49\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"lv.microsoft\",\"synonymMaps\":[]},{\"name\":\"field50\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ml.microsoft\",\"synonymMaps\":[]},{\"name\":\"field51\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"mr.microsoft\",\"synonymMaps\":[]},{\"name\":\"field52\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ms.microsoft\",\"synonymMaps\":[]},{\"name\":\"field53\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"nb.microsoft\",\"synonymMaps\":[]},{\"name\":\"field54\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"nl.lucene\",\"synonymMaps\":[]},{\"name\":\"field55\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"nl.microsoft\",\"synonymMaps\":[]},{\"name\":\"field56\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"no.lucene\",\"synonymMaps\":[]},{\"name\":\"field57\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"pa.microsoft\",\"synonymMaps\":[]},{\"name\":\"field58\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"pattern\",\"synonymMaps\":[]},{\"name\":\"field59\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"pl.lucene\",\"synonymMaps\":[]},{\"name\":\"field60\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"pl.microsoft\",\"synonymMaps\":[]},{\"name\":\"field61\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"pt-BR.lucene\",\"synonymMaps\":[]},{\"name\":\"field62\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"pt-BR.microsoft\",\"synonymMaps\":[]},{\"name\":\"field63\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"pt-PT.lucene\",\"synonymMaps\":[]},{\"name\":\"field64\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"pt-PT.microsoft\",\"synonymMaps\":[]},{\"name\":\"field65\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ro.lucene\",\"synonymMaps\":[]},{\"name\":\"field66\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ro.microsoft\",\"synonymMaps\":[]},{\"name\":\"field67\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ru.lucene\",\"synonymMaps\":[]},{\"name\":\"field68\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ru.microsoft\",\"synonymMaps\":[]},{\"name\":\"field69\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"simple\",\"synonymMaps\":[]},{\"name\":\"field70\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"sk.microsoft\",\"synonymMaps\":[]},{\"name\":\"field71\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"sl.microsoft\",\"synonymMaps\":[]},{\"name\":\"field72\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"sr-cyrillic.microsoft\",\"synonymMaps\":[]},{\"name\":\"field73\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"sr-latin.microsoft\",\"synonymMaps\":[]},{\"name\":\"field74\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"standard.lucene\",\"synonymMaps\":[]},{\"name\":\"field75\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"standardasciifolding.lucene\",\"synonymMaps\":[]},{\"name\":\"field76\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"stop\",\"synonymMaps\":[]},{\"name\":\"field77\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"sv.lucene\",\"synonymMaps\":[]},{\"name\":\"field78\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"sv.microsoft\",\"synonymMaps\":[]},{\"name\":\"field79\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ta.microsoft\",\"synonymMaps\":[]},{\"name\":\"field80\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"te.microsoft\",\"synonymMaps\":[]},{\"name\":\"field81\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"th.lucene\",\"synonymMaps\":[]},{\"name\":\"field82\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"th.microsoft\",\"synonymMaps\":[]},{\"name\":\"field83\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"tr.lucene\",\"synonymMaps\":[]},{\"name\":\"field84\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"tr.microsoft\",\"synonymMaps\":[]},{\"name\":\"field85\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"uk.microsoft\",\"synonymMaps\":[]},{\"name\":\"field86\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"ur.microsoft\",\"synonymMaps\":[]},{\"name\":\"field87\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"vi.microsoft\",\"synonymMaps\":[]},{\"name\":\"field88\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"whitespace\",\"synonymMaps\":[]},{\"name\":\"field89\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"zh-Hans.lucene\",\"synonymMaps\":[]},{\"name\":\"field90\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"zh-Hans.microsoft\",\"synonymMaps\":[]},{\"name\":\"field91\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"zh-Hant.lucene\",\"synonymMaps\":[]},{\"name\":\"field92\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"zh-Hant.microsoft\",\"synonymMaps\":[]},{\"name\":\"field93\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"keyword\",\"searchAnalyzer\":\"keyword\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"field94\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"pattern\",\"searchAnalyzer\":\"pattern\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"field95\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"simple\",\"searchAnalyzer\":\"simple\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"field96\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"field97\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"whitespace\",\"searchAnalyzer\":\"whitespace\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "181092d4-4fb0-4419-854c-3029b4d1ea34", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelcanuseallanalyzernamesinindexdefinition2e370135d41218')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelcanuseallanalyzernamesinindexdefinitionbdd2787528ec4b')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelcanuseallanalyzernamesinindexdefinition2e370135d41218')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelcanuseallanalyzernamesinindexdefinitionbdd2787528ec4b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ba046f0c-a665-460c-bca3-bb75561ef9ff" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ce82d46d-7717-482d-ab4b-09f84d974728" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ba046f0c-a665-460c-bca3-bb75561ef9ff", - "elapsed-time" : "1371", + "client-request-id" : "ce82d46d-7717-482d-ab4b-09f84d974728", + "elapsed-time" : "529", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "ba046f0c-a665-460c-bca3-bb75561ef9ff", + "request-id" : "ce82d46d-7717-482d-ab4b-09f84d974728", "StatusCode" : "204", - "x-ms-client-request-id" : "ba046f0c-a665-460c-bca3-bb75561ef9ff", - "Date" : "Fri, 02 Apr 2021 22:35:20 GMT" + "x-ms-client-request-id" : "ce82d46d-7717-482d-ab4b-09f84d974728", + "Date" : "Thu, 27 May 2021 21:13:52 GMT" }, "Exception" : null } ], - "variables" : [ "hotelcanuseallanalyzernamesinindexdefinition2e370135d41218" ] + "variables" : [ "hotelcanuseallanalyzernamesinindexdefinitionbdd2787528ec4b" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsAnalyzer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsAnalyzer.json index e8c654ae57e9..d4d3bd97d51b 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsAnalyzer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsAnalyzer.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7703be12-c899-4552-8c61-5d3d097d1038", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1aca7bf7-f57b-4ba0-9026-0c073c9f4b04", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8541", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7703be12-c899-4552-8c61-5d3d097d1038", + "request-id" : "1aca7bf7-f57b-4ba0-9026-0c073c9f4b04", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:43 GMT", + "Date" : "Thu, 27 May 2021 21:14:14 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627A6C02CB1\"", - "client-request-id" : "7703be12-c899-4552-8c61-5d3d097d1038", - "elapsed-time" : "1161", + "ETag" : "W/\"0x8D9215461C3530F\"", + "client-request-id" : "1aca7bf7-f57b-4ba0-9026-0c073c9f4b04", + "elapsed-time" : "1560", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "9044", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627A6C02CB1\\\"\",\"name\":\"hotelscanuseallregexflagsanalyzerc5f49402158f299ee73\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternAnalyzer\",\"name\":\"azsmnet23648976f5c\",\"lowercase\":true,\"pattern\":\".*\",\"flags\":\"CANON_EQ|CASE_INSENSITIVE|COMMENTS|DOTALL|LITERAL|MULTILINE|UNICODE_CASE|UNIX_LINES\",\"stopwords\":[\"stop1\",\"stop2\"]}],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "7703be12-c899-4552-8c61-5d3d097d1038", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215461C3530F\\\"\",\"name\":\"hotelscanuseallregexflagsanalyzerb959420130b029a699e\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternAnalyzer\",\"name\":\"azsmnet88368151751\",\"lowercase\":true,\"pattern\":\".*\",\"flags\":\"CANON_EQ|CASE_INSENSITIVE|COMMENTS|DOTALL|LITERAL|MULTILINE|UNICODE_CASE|UNIX_LINES\",\"stopwords\":[\"stop1\",\"stop2\"]}],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "1aca7bf7-f57b-4ba0-9026-0c073c9f4b04", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsanalyzerc5f49402158f299ee73')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsanalyzerb959420130b029a699e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsanalyzerc5f49402158f299ee73')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsanalyzerb959420130b029a699e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5117b707-e9ac-4c16-b41c-60c6635c2204" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c7a0d051-7e8d-454b-843a-54cfb0465bc0" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5117b707-e9ac-4c16-b41c-60c6635c2204", - "elapsed-time" : "1364", + "client-request-id" : "c7a0d051-7e8d-454b-843a-54cfb0465bc0", + "elapsed-time" : "574", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "5117b707-e9ac-4c16-b41c-60c6635c2204", + "request-id" : "c7a0d051-7e8d-454b-843a-54cfb0465bc0", "StatusCode" : "204", - "x-ms-client-request-id" : "5117b707-e9ac-4c16-b41c-60c6635c2204", - "Date" : "Fri, 02 Apr 2021 22:35:44 GMT" + "x-ms-client-request-id" : "c7a0d051-7e8d-454b-843a-54cfb0465bc0", + "Date" : "Thu, 27 May 2021 21:14:14 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsanalyzerc5f49402158f299ee73", "azsmnet23648976f5c" ] + "variables" : [ "hotelscanuseallregexflagsanalyzerb959420130b029a699e", "azsmnet88368151751" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyAnalyzer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyAnalyzer.json index a04267cd4441..ae6ce23e886b 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyAnalyzer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyAnalyzer.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "86dc5c48-0e67-4f18-bb53-5d3c7d7e79f1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f7afda07-257a-4c0b-adf2-59c2e4515232", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8303", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "86dc5c48-0e67-4f18-bb53-5d3c7d7e79f1", + "request-id" : "f7afda07-257a-4c0b-adf2-59c2e4515232", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:34 GMT", + "Date" : "Thu, 27 May 2021 21:14:05 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627A16A7FC3\"", - "client-request-id" : "86dc5c48-0e67-4f18-bb53-5d3c7d7e79f1", - "elapsed-time" : "1114", + "ETag" : "W/\"0x8D921545C11AF06\"", + "client-request-id" : "f7afda07-257a-4c0b-adf2-59c2e4515232", + "elapsed-time" : "1465", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8806", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627A16A7FC3\\\"\",\"name\":\"hotelscanuseallregexflagsemptyanalyzer0cd64210ba63494ee\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "86dc5c48-0e67-4f18-bb53-5d3c7d7e79f1", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921545C11AF06\\\"\",\"name\":\"hotelscanuseallregexflagsemptyanalyzer69d83638f3d783db6\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "f7afda07-257a-4c0b-adf2-59c2e4515232", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsemptyanalyzer0cd64210ba63494ee')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsemptyanalyzer69d83638f3d783db6')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsemptyanalyzer0cd64210ba63494ee')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsemptyanalyzer69d83638f3d783db6')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "70b1a62a-2ffa-46a4-817c-99833ac75262" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b088e3b4-75ca-4ea0-8dc0-5ad05f8578c0" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "70b1a62a-2ffa-46a4-817c-99833ac75262", - "elapsed-time" : "1000", + "client-request-id" : "b088e3b4-75ca-4ea0-8dc0-5ad05f8578c0", + "elapsed-time" : "494", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "70b1a62a-2ffa-46a4-817c-99833ac75262", + "request-id" : "b088e3b4-75ca-4ea0-8dc0-5ad05f8578c0", "StatusCode" : "204", - "x-ms-client-request-id" : "70b1a62a-2ffa-46a4-817c-99833ac75262", - "Date" : "Fri, 02 Apr 2021 22:35:34 GMT" + "x-ms-client-request-id" : "b088e3b4-75ca-4ea0-8dc0-5ad05f8578c0", + "Date" : "Thu, 27 May 2021 21:14:06 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsemptyanalyzer0cd64210ba63494ee" ] + "variables" : [ "hotelscanuseallregexflagsemptyanalyzer69d83638f3d783db6" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyFlagsAnalyzer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyFlagsAnalyzer.json index 72e9331f2e78..a9e26ef03c20 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyFlagsAnalyzer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyFlagsAnalyzer.json @@ -1,32 +1,32 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6235ec5a-0d3e-44f7-aa56-ba74b9e47a72", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8d5ab181-1ac1-47aa-8dd6-5fb1c82c5f33", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "333", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6235ec5a-0d3e-44f7-aa56-ba74b9e47a72", + "request-id" : "8d5ab181-1ac1-47aa-8dd6-5fb1c82c5f33", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:35:20 GMT", + "Date" : "Thu, 27 May 2021 21:13:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6235ec5a-0d3e-44f7-aa56-ba74b9e47a72", - "elapsed-time" : "23", + "client-request-id" : "8d5ab181-1ac1-47aa-8dd6-5fb1c82c5f33", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "333", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The request is invalid. Details: index.analyzers[0].flags : Values of property \\\"flags\\\" must belong to the set of allowed values (case-sensitive) or be in the pipe form of them (e.g. value1|value2|...): CANON_EQ, CASE_INSENSITIVE, COMMENTS, DOTALL, LITERAL, MULTILINE, UNICODE_CASE, UNIX_LINES.\\r\\n\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "6235ec5a-0d3e-44f7-aa56-ba74b9e47a72", + "x-ms-client-request-id" : "8d5ab181-1ac1-47aa-8dd6-5fb1c82c5f33", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsemptyflagsanalyzer95a18942449c13", "azsmnet970172421fd" ] + "variables" : [ "hotelscanuseallregexflagsemptyflagsanalyzer47f9375154f513", "azsmnet5179090d89f" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyFlagsTokenizer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyFlagsTokenizer.json index 65fea632d7f5..fea39ae74348 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyFlagsTokenizer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyFlagsTokenizer.json @@ -1,32 +1,32 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "76ded9f5-47d4-4674-a42b-fb630a701f20", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "93688b2a-16f1-4f22-8628-fbba02a2f13d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "334", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "76ded9f5-47d4-4674-a42b-fb630a701f20", + "request-id" : "93688b2a-16f1-4f22-8628-fbba02a2f13d", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:35:34 GMT", + "Date" : "Thu, 27 May 2021 21:14:06 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "76ded9f5-47d4-4674-a42b-fb630a701f20", - "elapsed-time" : "17", + "client-request-id" : "93688b2a-16f1-4f22-8628-fbba02a2f13d", + "elapsed-time" : "4", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "334", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The request is invalid. Details: index.tokenizers[0].flags : Values of property \\\"flags\\\" must belong to the set of allowed values (case-sensitive) or be in the pipe form of them (e.g. value1|value2|...): CANON_EQ, CASE_INSENSITIVE, COMMENTS, DOTALL, LITERAL, MULTILINE, UNICODE_CASE, UNIX_LINES.\\r\\n\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "76ded9f5-47d4-4674-a42b-fb630a701f20", + "x-ms-client-request-id" : "93688b2a-16f1-4f22-8628-fbba02a2f13d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsemptyflagstokenizer0de192577b9026", "azsmnet5078242dc17" ] + "variables" : [ "hotelscanuseallregexflagsemptyflagstokenizerd0789894b9c1d0", "azsmnet7010955ea90" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyNameAnalyzer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyNameAnalyzer.json index f71fc9e6d170..7eff7c1db9af 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyNameAnalyzer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyNameAnalyzer.json @@ -1,32 +1,32 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "529064f5-972a-443a-ae4d-5e319c1d1675", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a1468099-fdaa-4c9f-87d8-eb4cb80f8a4d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "124", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "529064f5-972a-443a-ae4d-5e319c1d1675", + "request-id" : "a1468099-fdaa-4c9f-87d8-eb4cb80f8a4d", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:36:08 GMT", + "Date" : "Thu, 27 May 2021 21:14:39 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "529064f5-972a-443a-ae4d-5e319c1d1675", - "elapsed-time" : "16", + "client-request-id" : "a1468099-fdaa-4c9f-87d8-eb4cb80f8a4d", + "elapsed-time" : "4", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "124", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The request is invalid. Details: index.analyzers[0].name : The name field is required.\\r\\n\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "529064f5-972a-443a-ae4d-5e319c1d1675", + "x-ms-client-request-id" : "a1468099-fdaa-4c9f-87d8-eb4cb80f8a4d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsemptynameanalyzera9c964941afbd78" ] + "variables" : [ "hotelscanuseallregexflagsemptynameanalyzer32236469f9cce27" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyNameTokenizer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyNameTokenizer.json index b5c1e749a850..29182f8a9f51 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyNameTokenizer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyNameTokenizer.json @@ -1,32 +1,32 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "feae0155-789f-4c81-bdd1-f3605b37c99e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "caae9917-9b83-4f2a-8353-8868782d808e", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "125", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "feae0155-789f-4c81-bdd1-f3605b37c99e", + "request-id" : "caae9917-9b83-4f2a-8353-8868782d808e", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:35:50 GMT", + "Date" : "Thu, 27 May 2021 21:14:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "feae0155-789f-4c81-bdd1-f3605b37c99e", - "elapsed-time" : "18", + "client-request-id" : "caae9917-9b83-4f2a-8353-8868782d808e", + "elapsed-time" : "4", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "125", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The request is invalid. Details: index.tokenizers[0].name : The name field is required.\\r\\n\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "feae0155-789f-4c81-bdd1-f3605b37c99e", + "x-ms-client-request-id" : "caae9917-9b83-4f2a-8353-8868782d808e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsemptynametokenizer59d7739652b9bf" ] + "variables" : [ "hotelscanuseallregexflagsemptynametokenizer4fe09705281f29" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyPatternAnalyzer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyPatternAnalyzer.json index ee185ab7c21b..81cef1e48d59 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyPatternAnalyzer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyPatternAnalyzer.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "869cbf43-1fa5-4c1b-be53-25d661da7862", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ebe4db8f-6d9e-4ab1-b917-24816046933d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8449", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "869cbf43-1fa5-4c1b-be53-25d661da7862", + "request-id" : "ebe4db8f-6d9e-4ab1-b917-24816046933d", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:41 GMT", + "Date" : "Thu, 27 May 2021 21:14:12 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627A5B1258A\"", - "client-request-id" : "869cbf43-1fa5-4c1b-be53-25d661da7862", - "elapsed-time" : "1074", + "ETag" : "W/\"0x8D92154607B5512\"", + "client-request-id" : "ebe4db8f-6d9e-4ab1-b917-24816046933d", + "elapsed-time" : "1506", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8952", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627A5B1258A\\\"\",\"name\":\"hotelscanuseallregexflagsemptypatternanalyzerff26536031f46\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternAnalyzer\",\"name\":\"azsmnet594230341ae\",\"lowercase\":true,\"pattern\":\"\",\"flags\":null,\"stopwords\":[]}],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "869cbf43-1fa5-4c1b-be53-25d661da7862", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154607B5512\\\"\",\"name\":\"hotelscanuseallregexflagsemptypatternanalyzerd5d26357bb5a7\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternAnalyzer\",\"name\":\"azsmnet28652170687\",\"lowercase\":true,\"pattern\":\"\",\"flags\":null,\"stopwords\":[]}],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "ebe4db8f-6d9e-4ab1-b917-24816046933d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsemptypatternanalyzerff26536031f46')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsemptypatternanalyzerd5d26357bb5a7')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsemptypatternanalyzerff26536031f46')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsemptypatternanalyzerd5d26357bb5a7')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7a9cab97-c830-454b-95e2-4066e6a08756" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ff62e71a-43ba-46fc-b838-8b56f3732699" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7a9cab97-c830-454b-95e2-4066e6a08756", - "elapsed-time" : "548", + "client-request-id" : "ff62e71a-43ba-46fc-b838-8b56f3732699", + "elapsed-time" : "512", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "7a9cab97-c830-454b-95e2-4066e6a08756", + "request-id" : "ff62e71a-43ba-46fc-b838-8b56f3732699", "StatusCode" : "204", - "x-ms-client-request-id" : "7a9cab97-c830-454b-95e2-4066e6a08756", - "Date" : "Fri, 02 Apr 2021 22:35:41 GMT" + "x-ms-client-request-id" : "ff62e71a-43ba-46fc-b838-8b56f3732699", + "Date" : "Thu, 27 May 2021 21:14:12 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsemptypatternanalyzerff26536031f46", "azsmnet594230341ae" ] + "variables" : [ "hotelscanuseallregexflagsemptypatternanalyzerd5d26357bb5a7", "azsmnet28652170687" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyPatternTokenizer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyPatternTokenizer.json index 12bfc4e07a9d..7d70b801fb0d 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyPatternTokenizer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyPatternTokenizer.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "61cb6ca6-2206-4f03-94c2-d6f18eef95ac", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bb10e2e4-3c46-4ba0-a5ac-9a8acb3b67d1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8430", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "61cb6ca6-2206-4f03-94c2-d6f18eef95ac", + "request-id" : "bb10e2e4-3c46-4ba0-a5ac-9a8acb3b67d1", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:17 GMT", + "Date" : "Thu, 27 May 2021 21:13:49 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62797593702\"", - "client-request-id" : "61cb6ca6-2206-4f03-94c2-d6f18eef95ac", - "elapsed-time" : "1142", + "ETag" : "W/\"0x8D9215452BF7E99\"", + "client-request-id" : "bb10e2e4-3c46-4ba0-a5ac-9a8acb3b67d1", + "elapsed-time" : "1576", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8933", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62797593702\\\"\",\"name\":\"hotelscanuseallregexflagsemptypatterntokenizer53e42127ca9be\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternTokenizer\",\"name\":\"azsmnet817055b7bdc\",\"pattern\":\"\",\"flags\":null,\"group\":-1}],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "61cb6ca6-2206-4f03-94c2-d6f18eef95ac", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215452BF7E99\\\"\",\"name\":\"hotelscanuseallregexflagsemptypatterntokenizer92c7102499e7e\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternTokenizer\",\"name\":\"azsmnet89036dc96f6\",\"pattern\":\"\",\"flags\":null,\"group\":-1}],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "bb10e2e4-3c46-4ba0-a5ac-9a8acb3b67d1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsemptypatterntokenizer53e42127ca9be')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsemptypatterntokenizer92c7102499e7e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsemptypatterntokenizer53e42127ca9be')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsemptypatterntokenizer92c7102499e7e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b45e386-2832-4d8e-8da5-87757e680134" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "957274dd-ef71-48d2-b3a0-1f05a8a57abf" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7b45e386-2832-4d8e-8da5-87757e680134", - "elapsed-time" : "559", + "client-request-id" : "957274dd-ef71-48d2-b3a0-1f05a8a57abf", + "elapsed-time" : "517", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "7b45e386-2832-4d8e-8da5-87757e680134", + "request-id" : "957274dd-ef71-48d2-b3a0-1f05a8a57abf", "StatusCode" : "204", - "x-ms-client-request-id" : "7b45e386-2832-4d8e-8da5-87757e680134", - "Date" : "Fri, 02 Apr 2021 22:35:17 GMT" + "x-ms-client-request-id" : "957274dd-ef71-48d2-b3a0-1f05a8a57abf", + "Date" : "Thu, 27 May 2021 21:13:50 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsemptypatterntokenizer53e42127ca9be", "azsmnet817055b7bdc" ] + "variables" : [ "hotelscanuseallregexflagsemptypatterntokenizer92c7102499e7e", "azsmnet89036dc96f6" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyStopwordsAnalyzer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyStopwordsAnalyzer.json index 7e10c7f7bbfd..711c2419b04c 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyStopwordsAnalyzer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyStopwordsAnalyzer.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "510786a0-9ded-4126-a1ab-fa95b27e776d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c1aeda5c-da56-4b8b-a290-40ce113fbec7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8454", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "510786a0-9ded-4126-a1ab-fa95b27e776d", + "request-id" : "c1aeda5c-da56-4b8b-a290-40ce113fbec7", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:45 GMT", + "Date" : "Thu, 27 May 2021 21:14:16 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627A84031A3\"", - "client-request-id" : "510786a0-9ded-4126-a1ab-fa95b27e776d", - "elapsed-time" : "1076", + "ETag" : "W/\"0x8D92154630C89C0\"", + "client-request-id" : "c1aeda5c-da56-4b8b-a290-40ce113fbec7", + "elapsed-time" : "1517", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8957", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627A84031A3\\\"\",\"name\":\"hotelscanuseallregexflagsemptystopwordsanalyzer662367889395\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternAnalyzer\",\"name\":\"azsmnet19965cdf6ec\",\"lowercase\":true,\"pattern\":\"\\\\W+\",\"flags\":null,\"stopwords\":[]}],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "510786a0-9ded-4126-a1ab-fa95b27e776d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154630C89C0\\\"\",\"name\":\"hotelscanuseallregexflagsemptystopwordsanalyzerc4b878389ac5\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternAnalyzer\",\"name\":\"azsmnet99709d16ce2\",\"lowercase\":true,\"pattern\":\"\\\\W+\",\"flags\":null,\"stopwords\":[]}],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "c1aeda5c-da56-4b8b-a290-40ce113fbec7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsemptystopwordsanalyzer662367889395')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsemptystopwordsanalyzerc4b878389ac5')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsemptystopwordsanalyzer662367889395')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsemptystopwordsanalyzerc4b878389ac5')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c6e9dde9-81e4-4815-bcad-110d9cb72c9b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1e9b2f1a-ec04-4198-b394-6519a738d1c9" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c6e9dde9-81e4-4815-bcad-110d9cb72c9b", - "elapsed-time" : "550", + "client-request-id" : "1e9b2f1a-ec04-4198-b394-6519a738d1c9", + "elapsed-time" : "533", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "c6e9dde9-81e4-4815-bcad-110d9cb72c9b", + "request-id" : "1e9b2f1a-ec04-4198-b394-6519a738d1c9", "StatusCode" : "204", - "x-ms-client-request-id" : "c6e9dde9-81e4-4815-bcad-110d9cb72c9b", - "Date" : "Fri, 02 Apr 2021 22:35:46 GMT" + "x-ms-client-request-id" : "1e9b2f1a-ec04-4198-b394-6519a738d1c9", + "Date" : "Thu, 27 May 2021 21:14:16 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsemptystopwordsanalyzer662367889395", "azsmnet19965cdf6ec" ] + "variables" : [ "hotelscanuseallregexflagsemptystopwordsanalyzerc4b878389ac5", "azsmnet99709d16ce2" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyTokenizer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyTokenizer.json index 0dbdeff071b7..b5e6134e5156 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyTokenizer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsEmptyTokenizer.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "529ce92b-0511-4297-aebc-a8f7313c7b1d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9c801397-cf83-436f-848b-49b77aefefe7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8303", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "529ce92b-0511-4297-aebc-a8f7313c7b1d", + "request-id" : "9c801397-cf83-436f-848b-49b77aefefe7", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:47 GMT", + "Date" : "Thu, 27 May 2021 21:14:19 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627A9443A85\"", - "client-request-id" : "529ce92b-0511-4297-aebc-a8f7313c7b1d", - "elapsed-time" : "1091", + "ETag" : "W/\"0x8D9215464652C93\"", + "client-request-id" : "9c801397-cf83-436f-848b-49b77aefefe7", + "elapsed-time" : "1666", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8806", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627A9443A85\\\"\",\"name\":\"hotelscanuseallregexflagsemptytokenizer6fb5958165fa73f7\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "529ce92b-0511-4297-aebc-a8f7313c7b1d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215464652C93\\\"\",\"name\":\"hotelscanuseallregexflagsemptytokenizerf50326914b97e54e\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "9c801397-cf83-436f-848b-49b77aefefe7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsemptytokenizer6fb5958165fa73f7')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsemptytokenizerf50326914b97e54e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsemptytokenizer6fb5958165fa73f7')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsemptytokenizerf50326914b97e54e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f5d593d-1b0f-45d0-8551-17c515693550" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5d328092-6c22-419a-bfbb-29d592a0ea04" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2f5d593d-1b0f-45d0-8551-17c515693550", - "elapsed-time" : "552", + "client-request-id" : "5d328092-6c22-419a-bfbb-29d592a0ea04", + "elapsed-time" : "486", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "2f5d593d-1b0f-45d0-8551-17c515693550", + "request-id" : "5d328092-6c22-419a-bfbb-29d592a0ea04", "StatusCode" : "204", - "x-ms-client-request-id" : "2f5d593d-1b0f-45d0-8551-17c515693550", - "Date" : "Fri, 02 Apr 2021 22:35:48 GMT" + "x-ms-client-request-id" : "5d328092-6c22-419a-bfbb-29d592a0ea04", + "Date" : "Thu, 27 May 2021 21:14:20 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsemptytokenizer6fb5958165fa73f7" ] + "variables" : [ "hotelscanuseallregexflagsemptytokenizerf50326914b97e54e" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullAnalyzer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullAnalyzer.json index 273f8cf0305a..93ea3ad8c2e8 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullAnalyzer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullAnalyzer.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9f6fa374-6b39-40c9-9326-b23e29367ccd", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "af776a74-c641-4505-a1dd-df109f936ca6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8302", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9f6fa374-6b39-40c9-9326-b23e29367ccd", + "request-id" : "af776a74-c641-4505-a1dd-df109f936ca6", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:10 GMT", + "Date" : "Thu, 27 May 2021 21:14:43 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627B76D2194\"", - "client-request-id" : "9f6fa374-6b39-40c9-9326-b23e29367ccd", - "elapsed-time" : "1103", + "ETag" : "W/\"0x8D9215472BDAC01\"", + "client-request-id" : "af776a74-c641-4505-a1dd-df109f936ca6", + "elapsed-time" : "1500", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8805", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627B76D2194\\\"\",\"name\":\"hotelscanuseallregexflagsnullanalyzer71a62287434ea458e\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "9f6fa374-6b39-40c9-9326-b23e29367ccd", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215472BDAC01\\\"\",\"name\":\"hotelscanuseallregexflagsnullanalyzera9c294934ecf355de\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "af776a74-c641-4505-a1dd-df109f936ca6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsnullanalyzer71a62287434ea458e')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsnullanalyzera9c294934ecf355de')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsnullanalyzer71a62287434ea458e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsnullanalyzera9c294934ecf355de')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ffddf2a2-2fc7-40a4-9ea6-17ef51b11e6e" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e0b1b7b9-d8e2-44e7-ac02-a18ada8615a1" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ffddf2a2-2fc7-40a4-9ea6-17ef51b11e6e", - "elapsed-time" : "954", + "client-request-id" : "e0b1b7b9-d8e2-44e7-ac02-a18ada8615a1", + "elapsed-time" : "516", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "ffddf2a2-2fc7-40a4-9ea6-17ef51b11e6e", + "request-id" : "e0b1b7b9-d8e2-44e7-ac02-a18ada8615a1", "StatusCode" : "204", - "x-ms-client-request-id" : "ffddf2a2-2fc7-40a4-9ea6-17ef51b11e6e", - "Date" : "Fri, 02 Apr 2021 22:36:12 GMT" + "x-ms-client-request-id" : "e0b1b7b9-d8e2-44e7-ac02-a18ada8615a1", + "Date" : "Thu, 27 May 2021 21:14:44 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsnullanalyzer71a62287434ea458e" ] + "variables" : [ "hotelscanuseallregexflagsnullanalyzera9c294934ecf355de" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullGroupTokenizer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullGroupTokenizer.json index 4a08a2f49e3e..7178f6435bcb 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullGroupTokenizer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullGroupTokenizer.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e8917f8-b1ea-4ada-9ddd-2673d00cf55a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8a3f28cf-2c9c-4f69-9094-0f12658d178f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8432", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8e8917f8-b1ea-4ada-9ddd-2673d00cf55a", + "request-id" : "8a3f28cf-2c9c-4f69-9094-0f12658d178f", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:51 GMT", + "Date" : "Thu, 27 May 2021 21:14:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627ABE2B2C8\"", - "client-request-id" : "8e8917f8-b1ea-4ada-9ddd-2673d00cf55a", - "elapsed-time" : "1093", + "ETag" : "W/\"0x8D9215466E2D4F4\"", + "client-request-id" : "8a3f28cf-2c9c-4f69-9094-0f12658d178f", + "elapsed-time" : "1498", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8935", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627ABE2B2C8\\\"\",\"name\":\"hotelscanuseallregexflagsnullgrouptokenizer86f64749ade877\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternTokenizer\",\"name\":\"azsmnet996269d5d6a\",\"pattern\":\"\\\\W+\",\"flags\":null,\"group\":-1}],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "8e8917f8-b1ea-4ada-9ddd-2673d00cf55a", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215466E2D4F4\\\"\",\"name\":\"hotelscanuseallregexflagsnullgrouptokenizer0f73194501cc36\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternTokenizer\",\"name\":\"azsmnet2877590b830\",\"pattern\":\"\\\\W+\",\"flags\":null,\"group\":-1}],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "8a3f28cf-2c9c-4f69-9094-0f12658d178f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsnullgrouptokenizer86f64749ade877')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsnullgrouptokenizer0f73194501cc36')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsnullgrouptokenizer86f64749ade877')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsnullgrouptokenizer0f73194501cc36')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5a6dde7d-c69d-45be-a6af-1ad0423fe7f0" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "489296b6-8a96-4f25-a9e6-595d67bc67a4" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5a6dde7d-c69d-45be-a6af-1ad0423fe7f0", - "elapsed-time" : "523", + "client-request-id" : "489296b6-8a96-4f25-a9e6-595d67bc67a4", + "elapsed-time" : "509", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "5a6dde7d-c69d-45be-a6af-1ad0423fe7f0", + "request-id" : "489296b6-8a96-4f25-a9e6-595d67bc67a4", "StatusCode" : "204", - "x-ms-client-request-id" : "5a6dde7d-c69d-45be-a6af-1ad0423fe7f0", - "Date" : "Fri, 02 Apr 2021 22:35:51 GMT" + "x-ms-client-request-id" : "489296b6-8a96-4f25-a9e6-595d67bc67a4", + "Date" : "Thu, 27 May 2021 21:14:24 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsnullgrouptokenizer86f64749ade877", "azsmnet996269d5d6a" ] + "variables" : [ "hotelscanuseallregexflagsnullgrouptokenizer0f73194501cc36", "azsmnet2877590b830" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullLowerCaseAnalyzer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullLowerCaseAnalyzer.json index fb68fdfeda50..46aa773ab84e 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullLowerCaseAnalyzer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullLowerCaseAnalyzer.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "99e48cf4-e7ed-4714-b233-d0a5fc782863", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6fd57bce-4b43-400c-97a3-c2fb92e14963", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8454", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "99e48cf4-e7ed-4714-b233-d0a5fc782863", + "request-id" : "6fd57bce-4b43-400c-97a3-c2fb92e14963", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:09 GMT", + "Date" : "Thu, 27 May 2021 21:14:41 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627B6656EB5\"", - "client-request-id" : "99e48cf4-e7ed-4714-b233-d0a5fc782863", - "elapsed-time" : "1100", + "ETag" : "W/\"0x8D92154717C3EE4\"", + "client-request-id" : "6fd57bce-4b43-400c-97a3-c2fb92e14963", + "elapsed-time" : "1507", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8957", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627B6656EB5\\\"\",\"name\":\"hotelscanuseallregexflagsnulllowercaseanalyzer9e078012d965f\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternAnalyzer\",\"name\":\"azsmnet702567e5d98\",\"lowercase\":true,\"pattern\":\"\\\\W+\",\"flags\":null,\"stopwords\":[]}],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "99e48cf4-e7ed-4714-b233-d0a5fc782863", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154717C3EE4\\\"\",\"name\":\"hotelscanuseallregexflagsnulllowercaseanalyzer7cc15923487cd\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternAnalyzer\",\"name\":\"azsmnet912928404e8\",\"lowercase\":true,\"pattern\":\"\\\\W+\",\"flags\":null,\"stopwords\":[]}],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "6fd57bce-4b43-400c-97a3-c2fb92e14963", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsnulllowercaseanalyzer9e078012d965f')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsnulllowercaseanalyzer7cc15923487cd')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsnulllowercaseanalyzer9e078012d965f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsnulllowercaseanalyzer7cc15923487cd')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6cc28bf5-8f90-4f7e-9fd3-779dc7770e30" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "74775dfe-547d-432e-a96a-fe078d8e35e4" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6cc28bf5-8f90-4f7e-9fd3-779dc7770e30", - "elapsed-time" : "559", + "client-request-id" : "74775dfe-547d-432e-a96a-fe078d8e35e4", + "elapsed-time" : "520", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "6cc28bf5-8f90-4f7e-9fd3-779dc7770e30", + "request-id" : "74775dfe-547d-432e-a96a-fe078d8e35e4", "StatusCode" : "204", - "x-ms-client-request-id" : "6cc28bf5-8f90-4f7e-9fd3-779dc7770e30", - "Date" : "Fri, 02 Apr 2021 22:36:10 GMT" + "x-ms-client-request-id" : "74775dfe-547d-432e-a96a-fe078d8e35e4", + "Date" : "Thu, 27 May 2021 21:14:42 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsnulllowercaseanalyzer9e078012d965f", "azsmnet702567e5d98" ] + "variables" : [ "hotelscanuseallregexflagsnulllowercaseanalyzer7cc15923487cd", "azsmnet912928404e8" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullNameAnalyzer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullNameAnalyzer.json index d300a51fc9e4..1b5c95f40e44 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullNameAnalyzer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullNameAnalyzer.json @@ -1,32 +1,32 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a6bfa67-7e02-4051-9601-f1b677e2e314", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9b28e901-d15c-4fe2-9e2f-4df6752a16b5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "124", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4a6bfa67-7e02-4051-9601-f1b677e2e314", + "request-id" : "9b28e901-d15c-4fe2-9e2f-4df6752a16b5", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:35:35 GMT", + "Date" : "Thu, 27 May 2021 21:14:05 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4a6bfa67-7e02-4051-9601-f1b677e2e314", - "elapsed-time" : "22", + "client-request-id" : "9b28e901-d15c-4fe2-9e2f-4df6752a16b5", + "elapsed-time" : "12", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "124", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The request is invalid. Details: index.analyzers[0].name : The name field is required.\\r\\n\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "4a6bfa67-7e02-4051-9601-f1b677e2e314", + "x-ms-client-request-id" : "9b28e901-d15c-4fe2-9e2f-4df6752a16b5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsnullnameanalyzeree0156059fc6fec" ] + "variables" : [ "hotelscanuseallregexflagsnullnameanalyzer7748879514444a6" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullNameTokenizer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullNameTokenizer.json index b6a966c4b39c..76ee293e07a6 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullNameTokenizer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullNameTokenizer.json @@ -1,32 +1,32 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9ce839d-197a-4919-b7fd-7fdcc20a17e5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "677e1f2a-760a-474e-846a-25702a443cdd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "125", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c9ce839d-197a-4919-b7fd-7fdcc20a17e5", + "request-id" : "677e1f2a-760a-474e-846a-25702a443cdd", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:35:27 GMT", + "Date" : "Thu, 27 May 2021 21:13:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c9ce839d-197a-4919-b7fd-7fdcc20a17e5", - "elapsed-time" : "6", + "client-request-id" : "677e1f2a-760a-474e-846a-25702a443cdd", + "elapsed-time" : "8", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "125", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The request is invalid. Details: index.tokenizers[0].name : The name field is required.\\r\\n\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "c9ce839d-197a-4919-b7fd-7fdcc20a17e5", + "x-ms-client-request-id" : "677e1f2a-760a-474e-846a-25702a443cdd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsnullnametokenizer7ea23755a150fb6" ] + "variables" : [ "hotelscanuseallregexflagsnullnametokenizer7b492628be07e75" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullPatternAnalyzer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullPatternAnalyzer.json index e4bc59b55b56..13112b571d77 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullPatternAnalyzer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullPatternAnalyzer.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "84c139ed-010f-4d99-ad48-b10fc987a638", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "557ff0a8-2493-4157-aff5-0f81faf6efc0", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8453", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "84c139ed-010f-4d99-ad48-b10fc987a638", + "request-id" : "557ff0a8-2493-4157-aff5-0f81faf6efc0", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:07 GMT", + "Date" : "Thu, 27 May 2021 21:14:39 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627B5197B1E\"", - "client-request-id" : "84c139ed-010f-4d99-ad48-b10fc987a638", - "elapsed-time" : "1122", + "ETag" : "W/\"0x8D92154703419D6\"", + "client-request-id" : "557ff0a8-2493-4157-aff5-0f81faf6efc0", + "elapsed-time" : "1474", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8956", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627B5197B1E\\\"\",\"name\":\"hotelscanuseallregexflagsnullpatternanalyzer2ef272346acef4\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternAnalyzer\",\"name\":\"azsmnet52910c211ed\",\"lowercase\":true,\"pattern\":\"\\\\W+\",\"flags\":null,\"stopwords\":[]}],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "84c139ed-010f-4d99-ad48-b10fc987a638", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154703419D6\\\"\",\"name\":\"hotelscanuseallregexflagsnullpatternanalyzer53b47552770288\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternAnalyzer\",\"name\":\"azsmnet38722ba2150\",\"lowercase\":true,\"pattern\":\"\\\\W+\",\"flags\":null,\"stopwords\":[]}],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "557ff0a8-2493-4157-aff5-0f81faf6efc0", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsnullpatternanalyzer2ef272346acef4')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsnullpatternanalyzer53b47552770288')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsnullpatternanalyzer2ef272346acef4')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsnullpatternanalyzer53b47552770288')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce66c623-58b7-4f70-b474-efa3a04a93e9" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "83f0331c-ddf9-4a94-aa29-2f539ba9a1fb" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ce66c623-58b7-4f70-b474-efa3a04a93e9", - "elapsed-time" : "960", + "client-request-id" : "83f0331c-ddf9-4a94-aa29-2f539ba9a1fb", + "elapsed-time" : "538", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "ce66c623-58b7-4f70-b474-efa3a04a93e9", + "request-id" : "83f0331c-ddf9-4a94-aa29-2f539ba9a1fb", "StatusCode" : "204", - "x-ms-client-request-id" : "ce66c623-58b7-4f70-b474-efa3a04a93e9", - "Date" : "Fri, 02 Apr 2021 22:36:08 GMT" + "x-ms-client-request-id" : "83f0331c-ddf9-4a94-aa29-2f539ba9a1fb", + "Date" : "Thu, 27 May 2021 21:14:39 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsnullpatternanalyzer2ef272346acef4", "azsmnet52910c211ed" ] + "variables" : [ "hotelscanuseallregexflagsnullpatternanalyzer53b47552770288", "azsmnet38722ba2150" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullPatternTokenizer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullPatternTokenizer.json index ad964971d499..ba91e4cffbfa 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullPatternTokenizer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullPatternTokenizer.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4235700c-43d7-4ed6-ba70-dc7dda4f8eb0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "00b051bf-f60f-4276-891e-b072033f8e26", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8433", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4235700c-43d7-4ed6-ba70-dc7dda4f8eb0", + "request-id" : "00b051bf-f60f-4276-891e-b072033f8e26", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:29 GMT", + "Date" : "Thu, 27 May 2021 21:14:01 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6279E83F582\"", - "client-request-id" : "4235700c-43d7-4ed6-ba70-dc7dda4f8eb0", - "elapsed-time" : "1153", + "ETag" : "W/\"0x8D9215459A54721\"", + "client-request-id" : "00b051bf-f60f-4276-891e-b072033f8e26", + "elapsed-time" : "1496", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8936", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6279E83F582\\\"\",\"name\":\"hotelscanuseallregexflagsnullpatterntokenizerefd88238012ae\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternTokenizer\",\"name\":\"azsmnet89329fd5756\",\"pattern\":\"\\\\W+\",\"flags\":null,\"group\":-1}],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "4235700c-43d7-4ed6-ba70-dc7dda4f8eb0", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215459A54721\\\"\",\"name\":\"hotelscanuseallregexflagsnullpatterntokenizere396830545f28\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternTokenizer\",\"name\":\"azsmnet26130fa6859\",\"pattern\":\"\\\\W+\",\"flags\":null,\"group\":-1}],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "00b051bf-f60f-4276-891e-b072033f8e26", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsnullpatterntokenizerefd88238012ae')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsnullpatterntokenizere396830545f28')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsnullpatterntokenizerefd88238012ae')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsnullpatterntokenizere396830545f28')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "788e534a-98ec-4c44-a4b8-4c204e7787b9" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "98e6edff-f947-4b8b-b8ca-50c95d973efb" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "788e534a-98ec-4c44-a4b8-4c204e7787b9", - "elapsed-time" : "1563", + "client-request-id" : "98e6edff-f947-4b8b-b8ca-50c95d973efb", + "elapsed-time" : "514", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "788e534a-98ec-4c44-a4b8-4c204e7787b9", + "request-id" : "98e6edff-f947-4b8b-b8ca-50c95d973efb", "StatusCode" : "204", - "x-ms-client-request-id" : "788e534a-98ec-4c44-a4b8-4c204e7787b9", - "Date" : "Fri, 02 Apr 2021 22:35:30 GMT" + "x-ms-client-request-id" : "98e6edff-f947-4b8b-b8ca-50c95d973efb", + "Date" : "Thu, 27 May 2021 21:14:01 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsnullpatterntokenizerefd88238012ae", "azsmnet89329fd5756" ] + "variables" : [ "hotelscanuseallregexflagsnullpatterntokenizere396830545f28", "azsmnet26130fa6859" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullTokenizer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullTokenizer.json index f2a922bb556b..5ca664c098d5 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullTokenizer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsNullTokenizer.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2a1df2d-0081-4807-aaad-945656ce3cc3", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7ae871fb-40bf-4dcd-a569-71f03e6c4495", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8303", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f2a1df2d-0081-4807-aaad-945656ce3cc3", + "request-id" : "7ae871fb-40bf-4dcd-a569-71f03e6c4495", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:52 GMT", + "Date" : "Thu, 27 May 2021 21:14:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627ACDFDC6C\"", - "client-request-id" : "f2a1df2d-0081-4807-aaad-945656ce3cc3", - "elapsed-time" : "1075", + "ETag" : "W/\"0x8D921546860B98C\"", + "client-request-id" : "7ae871fb-40bf-4dcd-a569-71f03e6c4495", + "elapsed-time" : "1929", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8806", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627ACDFDC6C\\\"\",\"name\":\"hotelscanuseallregexflagsnulltokenizerdd419967ab05a3e96\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "f2a1df2d-0081-4807-aaad-945656ce3cc3", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921546860B98C\\\"\",\"name\":\"hotelscanuseallregexflagsnulltokenizerb26735514ae19510a\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "7ae871fb-40bf-4dcd-a569-71f03e6c4495", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsnulltokenizerdd419967ab05a3e96')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagsnulltokenizerb26735514ae19510a')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsnulltokenizerdd419967ab05a3e96')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagsnulltokenizerb26735514ae19510a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9df1dbb-ca9d-4245-9ec4-3f796ef17d22" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5be323b5-85af-45e6-b890-6d22687eca44" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f9df1dbb-ca9d-4245-9ec4-3f796ef17d22", - "elapsed-time" : "540", + "client-request-id" : "5be323b5-85af-45e6-b890-6d22687eca44", + "elapsed-time" : "510", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "f9df1dbb-ca9d-4245-9ec4-3f796ef17d22", + "request-id" : "5be323b5-85af-45e6-b890-6d22687eca44", "StatusCode" : "204", - "x-ms-client-request-id" : "f9df1dbb-ca9d-4245-9ec4-3f796ef17d22", - "Date" : "Fri, 02 Apr 2021 22:35:54 GMT" + "x-ms-client-request-id" : "5be323b5-85af-45e6-b890-6d22687eca44", + "Date" : "Thu, 27 May 2021 21:14:26 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagsnulltokenizerdd419967ab05a3e96" ] + "variables" : [ "hotelscanuseallregexflagsnulltokenizerb26735514ae19510a" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsTokenizer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsTokenizer.json index 65d7dbb699f2..d42ec52c4c10 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsTokenizer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/CustomAnalyzerSyncTests.canUseAllRegexFlagsTokenizer.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b6a29179-1caf-42c9-ad5d-2e11b3d55523", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "76555fb7-09af-42b3-894e-7010723fd183", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8506", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b6a29179-1caf-42c9-ad5d-2e11b3d55523", + "request-id" : "76555fb7-09af-42b3-894e-7010723fd183", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:21 GMT", + "Date" : "Thu, 27 May 2021 21:13:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6279A0FA839\"", - "client-request-id" : "b6a29179-1caf-42c9-ad5d-2e11b3d55523", - "elapsed-time" : "1190", + "ETag" : "W/\"0x8D9215455436AA9\"", + "client-request-id" : "76555fb7-09af-42b3-894e-7010723fd183", + "elapsed-time" : "1488", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "9009", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6279A0FA839\\\"\",\"name\":\"hotelscanuseallregexflagstokenizer69c383050f1ca00ef9a\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternTokenizer\",\"name\":\"azsmnet08531f8fd33\",\"pattern\":\".*\",\"flags\":\"CANON_EQ|CASE_INSENSITIVE|COMMENTS|DOTALL|LITERAL|MULTILINE|UNICODE_CASE|UNIX_LINES\",\"group\":0}],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "b6a29179-1caf-42c9-ad5d-2e11b3d55523", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215455436AA9\\\"\",\"name\":\"hotelscanuseallregexflagstokenizerf53480658c022943f74\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[{\"@odata.type\":\"#Microsoft.Azure.Search.PatternTokenizer\",\"name\":\"azsmnet38599f38f22\",\"pattern\":\".*\",\"flags\":\"CANON_EQ|CASE_INSENSITIVE|COMMENTS|DOTALL|LITERAL|MULTILINE|UNICODE_CASE|UNIX_LINES\",\"group\":0}],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "76555fb7-09af-42b3-894e-7010723fd183", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagstokenizer69c383050f1ca00ef9a')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanuseallregexflagstokenizerf53480658c022943f74')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagstokenizer69c383050f1ca00ef9a')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanuseallregexflagstokenizerf53480658c022943f74')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "130e15d0-6f53-4b84-aca5-2f9d68acb46a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ca06eab1-616d-42dc-8a9a-19e34209eee7" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "130e15d0-6f53-4b84-aca5-2f9d68acb46a", - "elapsed-time" : "964", + "client-request-id" : "ca06eab1-616d-42dc-8a9a-19e34209eee7", + "elapsed-time" : "498", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "130e15d0-6f53-4b84-aca5-2f9d68acb46a", + "request-id" : "ca06eab1-616d-42dc-8a9a-19e34209eee7", "StatusCode" : "204", - "x-ms-client-request-id" : "130e15d0-6f53-4b84-aca5-2f9d68acb46a", - "Date" : "Fri, 02 Apr 2021 22:35:22 GMT" + "x-ms-client-request-id" : "ca06eab1-616d-42dc-8a9a-19e34209eee7", + "Date" : "Thu, 27 May 2021 21:13:53 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanuseallregexflagstokenizer69c383050f1ca00ef9a", "azsmnet08531f8fd33" ] + "variables" : [ "hotelscanuseallregexflagstokenizerf53480658c022943f74", "azsmnet38599f38f22" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateAndDeleteDatasource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateAndDeleteDatasource.json index 7a24a63dfe6d..d3164445cc1c 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateAndDeleteDatasource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateAndDeleteDatasource.json @@ -1,58 +1,58 @@ { "networkCallRecords" : [ { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob763539b49')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob04421af1b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "251128d4-a719-4f34-957b-a127f3633c72" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ca3f0b92-b077-4b89-a508-bef4fce2af37" }, "Response" : { + "content-length" : "137", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "251128d4-a719-4f34-957b-a127f3633c72", + "request-id" : "ca3f0b92-b077-4b89-a508-bef4fce2af37", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:36:25 GMT", + "Date" : "Thu, 27 May 2021 21:14:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "251128d4-a719-4f34-957b-a127f3633c72", - "elapsed-time" : "11", + "client-request-id" : "ca3f0b92-b077-4b89-a508-bef4fce2af37", + "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "137", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No datasource with the name 'azs-java-test-blob763539b49' was found in a service named 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No datasource with the name 'azs-java-test-blob04421af1b' was found in a service named 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "251128d4-a719-4f34-957b-a127f3633c72", + "x-ms-client-request-id" : "ca3f0b92-b077-4b89-a508-bef4fce2af37", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob763539b49')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob04421af1b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "abd4028a-f1db-4c03-956d-a6a8d64e24c3" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "205f826b-7f8c-42c4-aadc-e87bcefa81d5" }, "Response" : { + "content-length" : "130", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "abd4028a-f1db-4c03-956d-a6a8d64e24c3", + "request-id" : "205f826b-7f8c-42c4-aadc-e87bcefa81d5", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:36:25 GMT", + "Date" : "Thu, 27 May 2021 21:14:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "abd4028a-f1db-4c03-956d-a6a8d64e24c3", - "elapsed-time" : "17", + "client-request-id" : "205f826b-7f8c-42c4-aadc-e87bcefa81d5", + "elapsed-time" : "15", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "130", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No data source with the name 'azs-java-test-blob763539b49' was found in service 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No data source with the name 'azs-java-test-blob04421af1b' was found in service 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "abd4028a-f1db-4c03-956d-a6a8d64e24c3", + "x-ms-client-request-id" : "205f826b-7f8c-42c4-aadc-e87bcefa81d5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "azs-java-test-blob763539b49" ] + "variables" : [ "azs-java-test-blob04421af1b" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateAndListDataSources.json b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateAndListDataSources.json index ed8858c2b177..41333513b34c 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateAndListDataSources.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateAndListDataSources.json @@ -1,130 +1,130 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob265806690')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob8182963b3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca9b2368-bb3b-4a3b-a738-52a32d2ae415", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e63c45f8-4a37-4499-8659-b556bfd06767", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "422", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ca9b2368-bb3b-4a3b-a738-52a32d2ae415", + "request-id" : "e63c45f8-4a37-4499-8659-b556bfd06767", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:24 GMT", + "Date" : "Thu, 27 May 2021 21:14:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627BF42E3F2\"", - "client-request-id" : "ca9b2368-bb3b-4a3b-a738-52a32d2ae415", - "elapsed-time" : "96", + "ETag" : "W/\"0x8D921547A220A63\"", + "client-request-id" : "e63c45f8-4a37-4499-8659-b556bfd06767", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "422", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627BF42E3F2\\\"\",\"name\":\"azs-java-test-blob265806690\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "ca9b2368-bb3b-4a3b-a738-52a32d2ae415", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547A220A63\\\"\",\"name\":\"azs-java-test-blob8182963b3\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "e63c45f8-4a37-4499-8659-b556bfd06767", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob265806690')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob8182963b3')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql0217018a4b')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql12684b1778')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "76812478-22c7-4c5f-b0f3-bd28537d097d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "cd15752a-0412-4d7a-af5f-b215add1021e", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "408", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "76812478-22c7-4c5f-b0f3-bd28537d097d", + "request-id" : "cd15752a-0412-4d7a-af5f-b215add1021e", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:24 GMT", + "Date" : "Thu, 27 May 2021 21:14:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627BF544C1D\"", - "client-request-id" : "76812478-22c7-4c5f-b0f3-bd28537d097d", - "elapsed-time" : "70", + "ETag" : "W/\"0x8D921547A2ABE87\"", + "client-request-id" : "cd15752a-0412-4d7a-af5f-b215add1021e", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "408", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627BF544C1D\\\"\",\"name\":\"azs-java-test-sql0217018a4b\",\"description\":\"Some data source\",\"type\":\"azuresql\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"GeoNamesRI\",\"query\":null},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "76812478-22c7-4c5f-b0f3-bd28537d097d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547A2ABE87\\\"\",\"name\":\"azs-java-test-sql12684b1778\",\"description\":\"Some data source\",\"type\":\"azuresql\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"GeoNamesRI\",\"query\":null},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "cd15752a-0412-4d7a-af5f-b215add1021e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-sql0217018a4b')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-sql12684b1778')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/datasources?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a82ff696-6448-4ff5-ba35-5d31733898a9" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b22ae4df-07fd-4457-9ccb-090ef4f48726" }, "Response" : { + "content-length" : "750", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a82ff696-6448-4ff5-ba35-5d31733898a9", + "request-id" : "b22ae4df-07fd-4457-9ccb-090ef4f48726", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:24 GMT", + "Date" : "Thu, 27 May 2021 21:14:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a82ff696-6448-4ff5-ba35-5d31733898a9", - "elapsed-time" : "77", + "client-request-id" : "b22ae4df-07fd-4457-9ccb-090ef4f48726", + "elapsed-time" : "14", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "750", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources\",\"value\":[{\"@odata.etag\":\"\\\"0x8D8F627BF42E3F2\\\"\",\"name\":\"azs-java-test-blob265806690\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null},{\"@odata.etag\":\"\\\"0x8D8F627BF544C1D\\\"\",\"name\":\"azs-java-test-sql0217018a4b\",\"description\":\"Some data source\",\"type\":\"azuresql\",\"subtype\":\"sqliaas\",\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"GeoNamesRI\",\"query\":null},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}]}", - "x-ms-client-request-id" : "a82ff696-6448-4ff5-ba35-5d31733898a9", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources\",\"value\":[{\"@odata.etag\":\"\\\"0x8D921547A220A63\\\"\",\"name\":\"azs-java-test-blob8182963b3\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null},{\"@odata.etag\":\"\\\"0x8D921547A2ABE87\\\"\",\"name\":\"azs-java-test-sql12684b1778\",\"description\":\"Some data source\",\"type\":\"azuresql\",\"subtype\":\"sqliaas\",\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"GeoNamesRI\",\"query\":null},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}]}", + "x-ms-client-request-id" : "b22ae4df-07fd-4457-9ccb-090ef4f48726", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob265806690')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob8182963b3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4ecf78c8-be3f-478e-802c-ae021f850a76" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f9d60b14-1082-43a1-b6e5-f2aeb271c1cc" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4ecf78c8-be3f-478e-802c-ae021f850a76", - "elapsed-time" : "55", + "client-request-id" : "f9d60b14-1082-43a1-b6e5-f2aeb271c1cc", + "elapsed-time" : "17", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "4ecf78c8-be3f-478e-802c-ae021f850a76", + "request-id" : "f9d60b14-1082-43a1-b6e5-f2aeb271c1cc", "StatusCode" : "204", - "x-ms-client-request-id" : "4ecf78c8-be3f-478e-802c-ae021f850a76", - "Date" : "Fri, 02 Apr 2021 22:36:24 GMT" + "x-ms-client-request-id" : "f9d60b14-1082-43a1-b6e5-f2aeb271c1cc", + "Date" : "Thu, 27 May 2021 21:14:56 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql0217018a4b')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql12684b1778')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e068c0f3-2a98-4b06-89f7-81c89afba119" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "98f4ab6e-7c94-473c-88c7-1c0f8d66aa5d" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e068c0f3-2a98-4b06-89f7-81c89afba119", - "elapsed-time" : "51", + "client-request-id" : "98f4ab6e-7c94-473c-88c7-1c0f8d66aa5d", + "elapsed-time" : "15", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "e068c0f3-2a98-4b06-89f7-81c89afba119", + "request-id" : "98f4ab6e-7c94-473c-88c7-1c0f8d66aa5d", "StatusCode" : "204", - "x-ms-client-request-id" : "e068c0f3-2a98-4b06-89f7-81c89afba119", - "Date" : "Fri, 02 Apr 2021 22:36:24 GMT" + "x-ms-client-request-id" : "98f4ab6e-7c94-473c-88c7-1c0f8d66aa5d", + "Date" : "Thu, 27 May 2021 21:14:55 GMT" }, "Exception" : null } ], - "variables" : [ "azs-java-test-blob265806690", "azs-java-test-sql0217018a4b" ] + "variables" : [ "azs-java-test-blob8182963b3", "azs-java-test-sql12684b1778" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateAndListDataSourcesWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateAndListDataSourcesWithResponse.json index 926af2beae19..5328f2978021 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateAndListDataSourcesWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateAndListDataSourcesWithResponse.json @@ -1,130 +1,130 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob328559ded')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob98771cc58')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "04cdf4df-91aa-4240-8572-4f962ede6d3e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b90a687b-5784-4b22-b51d-beeea571eddb", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "422", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "04cdf4df-91aa-4240-8572-4f962ede6d3e", + "request-id" : "b90a687b-5784-4b22-b51d-beeea571eddb", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:26 GMT", + "Date" : "Thu, 27 May 2021 21:14:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C0875C56\"", - "client-request-id" : "04cdf4df-91aa-4240-8572-4f962ede6d3e", - "elapsed-time" : "66", + "ETag" : "W/\"0x8D921547AFA906C\"", + "client-request-id" : "b90a687b-5784-4b22-b51d-beeea571eddb", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "422", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C0875C56\\\"\",\"name\":\"azs-java-test-blob328559ded\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "04cdf4df-91aa-4240-8572-4f962ede6d3e", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547AFA906C\\\"\",\"name\":\"azs-java-test-blob98771cc58\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "b90a687b-5784-4b22-b51d-beeea571eddb", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob328559ded')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob98771cc58')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql0031997d75')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql383353429e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "991458af-148b-488c-a2d9-88cf5c9ae46b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8539f544-6167-4239-bb83-ce68d1970be0", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "408", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "991458af-148b-488c-a2d9-88cf5c9ae46b", + "request-id" : "8539f544-6167-4239-bb83-ce68d1970be0", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:26 GMT", + "Date" : "Thu, 27 May 2021 21:14:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C09281D8\"", - "client-request-id" : "991458af-148b-488c-a2d9-88cf5c9ae46b", - "elapsed-time" : "46", + "ETag" : "W/\"0x8D921547B042F1E\"", + "client-request-id" : "8539f544-6167-4239-bb83-ce68d1970be0", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "408", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C09281D8\\\"\",\"name\":\"azs-java-test-sql0031997d75\",\"description\":\"Some data source\",\"type\":\"azuresql\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"GeoNamesRI\",\"query\":null},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "991458af-148b-488c-a2d9-88cf5c9ae46b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547B042F1E\\\"\",\"name\":\"azs-java-test-sql383353429e\",\"description\":\"Some data source\",\"type\":\"azuresql\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"GeoNamesRI\",\"query\":null},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "8539f544-6167-4239-bb83-ce68d1970be0", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-sql0031997d75')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-sql383353429e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/datasources?$select=name&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources?$select=name&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "81c04853-9e06-4eaa-9274-0f1f42dfef96" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8239f502-0060-4b92-a904-33c59c2e47be" }, "Response" : { + "content-length" : "177", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "81c04853-9e06-4eaa-9274-0f1f42dfef96", + "request-id" : "8239f502-0060-4b92-a904-33c59c2e47be", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:26 GMT", + "Date" : "Thu, 27 May 2021 21:14:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "81c04853-9e06-4eaa-9274-0f1f42dfef96", - "elapsed-time" : "99", + "client-request-id" : "8239f502-0060-4b92-a904-33c59c2e47be", + "elapsed-time" : "79", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "177", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources(name)\",\"value\":[{\"name\":\"azs-java-test-blob328559ded\"},{\"name\":\"azs-java-test-sql0031997d75\"}]}", - "x-ms-client-request-id" : "81c04853-9e06-4eaa-9274-0f1f42dfef96", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources(name)\",\"value\":[{\"name\":\"azs-java-test-blob98771cc58\"},{\"name\":\"azs-java-test-sql383353429e\"}]}", + "x-ms-client-request-id" : "8239f502-0060-4b92-a904-33c59c2e47be", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob328559ded')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob98771cc58')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "afb0ca71-6fb1-4fd8-a2fb-7e09393e2294" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "85f59ffb-8ad6-422b-bd41-a246db4d2e5e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "afb0ca71-6fb1-4fd8-a2fb-7e09393e2294", - "elapsed-time" : "49", + "client-request-id" : "85f59ffb-8ad6-422b-bd41-a246db4d2e5e", + "elapsed-time" : "16", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "afb0ca71-6fb1-4fd8-a2fb-7e09393e2294", + "request-id" : "85f59ffb-8ad6-422b-bd41-a246db4d2e5e", "StatusCode" : "204", - "x-ms-client-request-id" : "afb0ca71-6fb1-4fd8-a2fb-7e09393e2294", - "Date" : "Fri, 02 Apr 2021 22:36:26 GMT" + "x-ms-client-request-id" : "85f59ffb-8ad6-422b-bd41-a246db4d2e5e", + "Date" : "Thu, 27 May 2021 21:14:57 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql0031997d75')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql383353429e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8a7cb1f-92d7-42b9-ad21-d770c940a1ab" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0ca1c1d6-31b5-4e99-869c-183c1a8efcbf" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a8a7cb1f-92d7-42b9-ad21-d770c940a1ab", - "elapsed-time" : "50", + "client-request-id" : "0ca1c1d6-31b5-4e99-869c-183c1a8efcbf", + "elapsed-time" : "16", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "a8a7cb1f-92d7-42b9-ad21-d770c940a1ab", + "request-id" : "0ca1c1d6-31b5-4e99-869c-183c1a8efcbf", "StatusCode" : "204", - "x-ms-client-request-id" : "a8a7cb1f-92d7-42b9-ad21-d770c940a1ab", - "Date" : "Fri, 02 Apr 2021 22:36:26 GMT" + "x-ms-client-request-id" : "0ca1c1d6-31b5-4e99-869c-183c1a8efcbf", + "Date" : "Thu, 27 May 2021 21:14:57 GMT" }, "Exception" : null } ], - "variables" : [ "azs-java-test-blob328559ded", "azs-java-test-sql0031997d75" ] + "variables" : [ "azs-java-test-blob98771cc58", "azs-java-test-sql383353429e" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateDataSource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateDataSource.json index cd920dc81db4..b50834f84f69 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateDataSource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateDataSource.json @@ -1,80 +1,80 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/datasources?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e59aa6db-9efe-4c98-b208-b1ca0271fa6d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7ec0f1ad-99b8-42cf-a54a-313ddcf8f261", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "422", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e59aa6db-9efe-4c98-b208-b1ca0271fa6d", + "request-id" : "7ec0f1ad-99b8-42cf-a54a-313ddcf8f261", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:26 GMT", + "Date" : "Thu, 27 May 2021 21:14:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C0601E61\"", - "client-request-id" : "e59aa6db-9efe-4c98-b208-b1ca0271fa6d", - "elapsed-time" : "39", + "ETag" : "W/\"0x8D921547AD8AA64\"", + "client-request-id" : "7ec0f1ad-99b8-42cf-a54a-313ddcf8f261", + "elapsed-time" : "27", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "422", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C0601E61\\\"\",\"name\":\"azs-java-test-blob7170924b7\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "e59aa6db-9efe-4c98-b208-b1ca0271fa6d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547AD8AA64\\\"\",\"name\":\"azs-java-test-blob47433d3ce\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "7ec0f1ad-99b8-42cf-a54a-313ddcf8f261", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob7170924b7')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob47433d3ce')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/datasources?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "48025331-b53f-4de5-93cd-dc7f1b9bc25a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d7a0f23c-b140-4a98-bbe6-8736a711d33c" }, "Response" : { + "content-length" : "426", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "48025331-b53f-4de5-93cd-dc7f1b9bc25a", + "request-id" : "d7a0f23c-b140-4a98-bbe6-8736a711d33c", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:26 GMT", + "Date" : "Thu, 27 May 2021 21:14:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "48025331-b53f-4de5-93cd-dc7f1b9bc25a", - "elapsed-time" : "26", + "client-request-id" : "d7a0f23c-b140-4a98-bbe6-8736a711d33c", + "elapsed-time" : "55", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "426", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources\",\"value\":[{\"@odata.etag\":\"\\\"0x8D8F627C0601E61\\\"\",\"name\":\"azs-java-test-blob7170924b7\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}]}", - "x-ms-client-request-id" : "48025331-b53f-4de5-93cd-dc7f1b9bc25a", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources\",\"value\":[{\"@odata.etag\":\"\\\"0x8D921547AD8AA64\\\"\",\"name\":\"azs-java-test-blob47433d3ce\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}]}", + "x-ms-client-request-id" : "d7a0f23c-b140-4a98-bbe6-8736a711d33c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob7170924b7')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob47433d3ce')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a4136b0-f135-4c83-abe7-604154eb4327" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "dd1cd1e1-8731-47ad-b657-53f127d4da43" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9a4136b0-f135-4c83-abe7-604154eb4327", - "elapsed-time" : "51", + "client-request-id" : "dd1cd1e1-8731-47ad-b657-53f127d4da43", + "elapsed-time" : "16", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "9a4136b0-f135-4c83-abe7-604154eb4327", + "request-id" : "dd1cd1e1-8731-47ad-b657-53f127d4da43", "StatusCode" : "204", - "x-ms-client-request-id" : "9a4136b0-f135-4c83-abe7-604154eb4327", - "Date" : "Fri, 02 Apr 2021 22:36:26 GMT" + "x-ms-client-request-id" : "dd1cd1e1-8731-47ad-b657-53f127d4da43", + "Date" : "Thu, 27 May 2021 21:14:56 GMT" }, "Exception" : null } ], - "variables" : [ "azs-java-test-blob7170924b7" ] + "variables" : [ "azs-java-test-blob47433d3ce" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateDataSourceWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateDataSourceWithResponse.json index a0447fc6b918..05634aebaa6a 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateDataSourceWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canCreateDataSourceWithResponse.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/datasources?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b8a09e6c-74ae-4efa-a996-44e083cdf964", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e9c663f2-7b36-462c-821e-8f7ad6a0aa78", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "422", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b8a09e6c-74ae-4efa-a996-44e083cdf964", + "request-id" : "e9c663f2-7b36-462c-821e-8f7ad6a0aa78", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:26 GMT", + "Date" : "Thu, 27 May 2021 21:14:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C04BA86A\"", - "client-request-id" : "b8a09e6c-74ae-4efa-a996-44e083cdf964", - "elapsed-time" : "44", + "ETag" : "W/\"0x8D921547AC98C76\"", + "client-request-id" : "e9c663f2-7b36-462c-821e-8f7ad6a0aa78", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "422", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C04BA86A\\\"\",\"name\":\"azs-java-test-blob17247bb50\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "b8a09e6c-74ae-4efa-a996-44e083cdf964", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547AC98C76\\\"\",\"name\":\"azs-java-test-blob38299f6ad\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "e9c663f2-7b36-462c-821e-8f7ad6a0aa78", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob17247bb50')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob38299f6ad')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob17247bb50')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob38299f6ad')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a80baa9b-98f6-4c98-95c0-ed19ea1ed056" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "55a7d406-3921-46ec-b23d-274423bfebd6" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a80baa9b-98f6-4c98-95c0-ed19ea1ed056", - "elapsed-time" : "45", + "client-request-id" : "55a7d406-3921-46ec-b23d-274423bfebd6", + "elapsed-time" : "16", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "a80baa9b-98f6-4c98-95c0-ed19ea1ed056", + "request-id" : "55a7d406-3921-46ec-b23d-274423bfebd6", "StatusCode" : "204", - "x-ms-client-request-id" : "a80baa9b-98f6-4c98-95c0-ed19ea1ed056", - "Date" : "Fri, 02 Apr 2021 22:36:26 GMT" + "x-ms-client-request-id" : "55a7d406-3921-46ec-b23d-274423bfebd6", + "Date" : "Thu, 27 May 2021 21:14:57 GMT" }, "Exception" : null } ], - "variables" : [ "azs-java-test-blob17247bb50" ] + "variables" : [ "azs-java-test-blob38299f6ad" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canUpdateConnectionData.json b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canUpdateConnectionData.json index 71265a895dcf..68f0ad2c9cbf 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canUpdateConnectionData.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canUpdateConnectionData.json @@ -1,4 +1,4 @@ { "networkCallRecords" : [ ], - "variables" : [ "azs-java-test-blob71168c95c" ] + "variables" : [ "azs-java-test-blob09998a9fe" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canUpdateDataSource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canUpdateDataSource.json index 26baf67646c5..e76e33ec1e0b 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canUpdateDataSource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.canUpdateDataSource.json @@ -1,83 +1,83 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql11275d9b71')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql30542dcf6f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a165ce6f-744e-468a-ab2b-0f991ad1273d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e7ae6b1c-5c2e-4785-963c-5fafdc41ddf9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "408", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a165ce6f-744e-468a-ab2b-0f991ad1273d", + "request-id" : "e7ae6b1c-5c2e-4785-963c-5fafdc41ddf9", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:28 GMT", + "Date" : "Thu, 27 May 2021 21:14:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C18D3A21\"", - "client-request-id" : "a165ce6f-744e-468a-ab2b-0f991ad1273d", - "elapsed-time" : "63", + "ETag" : "W/\"0x8D921547BC6B82A\"", + "client-request-id" : "e7ae6b1c-5c2e-4785-963c-5fafdc41ddf9", + "elapsed-time" : "28", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "408", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C18D3A21\\\"\",\"name\":\"azs-java-test-sql11275d9b71\",\"description\":\"Some data source\",\"type\":\"azuresql\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"GeoNamesRI\",\"query\":null},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "a165ce6f-744e-468a-ab2b-0f991ad1273d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547BC6B82A\\\"\",\"name\":\"azs-java-test-sql30542dcf6f\",\"description\":\"Some data source\",\"type\":\"azuresql\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"GeoNamesRI\",\"query\":null},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "e7ae6b1c-5c2e-4785-963c-5fafdc41ddf9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-sql11275d9b71')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-sql30542dcf6f')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql12627fdf37')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql70093786db')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e29a31fe-e741-4099-b67d-d7b93b4c3a42", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9e8306c5-7d3b-4acc-94a8-647e8978c4cd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "670", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e29a31fe-e741-4099-b67d-d7b93b4c3a42", + "request-id" : "9e8306c5-7d3b-4acc-94a8-647e8978c4cd", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:28 GMT", + "Date" : "Thu, 27 May 2021 21:14:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C19F65BC\"", - "client-request-id" : "e29a31fe-e741-4099-b67d-d7b93b4c3a42", - "elapsed-time" : "79", + "ETag" : "W/\"0x8D921547BD0CC20\"", + "client-request-id" : "9e8306c5-7d3b-4acc-94a8-647e8978c4cd", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "670", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C19F65BC\\\"\",\"name\":\"azs-java-test-sql12627fdf37\",\"description\":\"somethingdifferent\",\"type\":\"azuresql\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"somethingdifferent\",\"query\":null},\"dataChangeDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy\",\"highWaterMarkColumnName\":\"rowversion\"},\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"isDeleted\",\"softDeleteMarkerValue\":null},\"encryptionKey\":null}", - "x-ms-client-request-id" : "e29a31fe-e741-4099-b67d-d7b93b4c3a42", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547BD0CC20\\\"\",\"name\":\"azs-java-test-sql70093786db\",\"description\":\"somethingdifferent\",\"type\":\"azuresql\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"somethingdifferent\",\"query\":null},\"dataChangeDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.HighWaterMarkChangeDetectionPolicy\",\"highWaterMarkColumnName\":\"rowversion\"},\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"isDeleted\",\"softDeleteMarkerValue\":null},\"encryptionKey\":null}", + "x-ms-client-request-id" : "9e8306c5-7d3b-4acc-94a8-647e8978c4cd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-sql12627fdf37')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-sql70093786db')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql11275d9b71')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql30542dcf6f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d43080e-4446-4f80-89fc-e01ce28ebe0e" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "22725fb8-e81f-4c69-824b-75ed783fea98" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3d43080e-4446-4f80-89fc-e01ce28ebe0e", - "elapsed-time" : "63", + "client-request-id" : "22725fb8-e81f-4c69-824b-75ed783fea98", + "elapsed-time" : "19", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "3d43080e-4446-4f80-89fc-e01ce28ebe0e", + "request-id" : "22725fb8-e81f-4c69-824b-75ed783fea98", "StatusCode" : "204", - "x-ms-client-request-id" : "3d43080e-4446-4f80-89fc-e01ce28ebe0e", - "Date" : "Fri, 02 Apr 2021 22:36:28 GMT" + "x-ms-client-request-id" : "22725fb8-e81f-4c69-824b-75ed783fea98", + "Date" : "Thu, 27 May 2021 21:14:58 GMT" }, "Exception" : null } ], - "variables" : [ "azs-java-test-sql11275d9b71", "azs-java-test-sql1790915149", "azs-java-test-sql12627fdf37" ] + "variables" : [ "azs-java-test-sql30542dcf6f", "azs-java-test-sql60141f8f69", "azs-java-test-sql70093786db" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.createDataSourceFailsWithUsefulMessageOnUserError.json b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.createDataSourceFailsWithUsefulMessageOnUserError.json index 9bf97ed50cfc..98c8d6c6d2a1 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.createDataSourceFailsWithUsefulMessageOnUserError.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.createDataSourceFailsWithUsefulMessageOnUserError.json @@ -1,32 +1,32 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql785523e468')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql747565cae6')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9d23bfea-8fe1-4d6f-a5ca-74bfc2faf373", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "db79cba9-fc41-4ff0-a8e0-bf96db1930dc", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "90", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9d23bfea-8fe1-4d6f-a5ca-74bfc2faf373", + "request-id" : "db79cba9-fc41-4ff0-a8e0-bf96db1930dc", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT", + "Date" : "Thu, 27 May 2021 21:14:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9d23bfea-8fe1-4d6f-a5ca-74bfc2faf373", - "elapsed-time" : "16", + "client-request-id" : "db79cba9-fc41-4ff0-a8e0-bf96db1930dc", + "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "90", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"Data source type 'thistypedoesnotexist' is not supported\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "9d23bfea-8fe1-4d6f-a5ca-74bfc2faf373", + "x-ms-client-request-id" : "db79cba9-fc41-4ff0-a8e0-bf96db1930dc", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "azs-java-test-sql785523e468" ] + "variables" : [ "azs-java-test-sql747565cae6" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.createOrUpdateDatasourceIfNotExistsSucceedsOnNoResource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.createOrUpdateDatasourceIfNotExistsSucceedsOnNoResource.json index 97cb493aba83..410c3d41fcfa 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.createOrUpdateDatasourceIfNotExistsSucceedsOnNoResource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.createOrUpdateDatasourceIfNotExistsSucceedsOnNoResource.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob853793628')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob97028b238')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "03ff4d6b-b334-4538-bd2c-abbe57d95b85", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9cf18dc6-6495-405f-8ec2-14c95b16d518", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "422", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "03ff4d6b-b334-4538-bd2c-abbe57d95b85", + "request-id" : "9cf18dc6-6495-405f-8ec2-14c95b16d518", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:24 GMT", + "Date" : "Thu, 27 May 2021 21:14:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627BF26CB8F\"", - "client-request-id" : "03ff4d6b-b334-4538-bd2c-abbe57d95b85", - "elapsed-time" : "75", + "ETag" : "W/\"0x8D921547A113E70\"", + "client-request-id" : "9cf18dc6-6495-405f-8ec2-14c95b16d518", + "elapsed-time" : "37", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "422", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627BF26CB8F\\\"\",\"name\":\"azs-java-test-blob853793628\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "03ff4d6b-b334-4538-bd2c-abbe57d95b85", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547A113E70\\\"\",\"name\":\"azs-java-test-blob97028b238\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "9cf18dc6-6495-405f-8ec2-14c95b16d518", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob853793628')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob97028b238')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob853793628')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob97028b238')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf1bc42d-886f-4cba-85f5-00a3b92c5df8" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "16587723-2072-4709-8d33-9b5102c1c1b8" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "bf1bc42d-886f-4cba-85f5-00a3b92c5df8", - "elapsed-time" : "54", + "client-request-id" : "16587723-2072-4709-8d33-9b5102c1c1b8", + "elapsed-time" : "16", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "bf1bc42d-886f-4cba-85f5-00a3b92c5df8", + "request-id" : "16587723-2072-4709-8d33-9b5102c1c1b8", "StatusCode" : "204", - "x-ms-client-request-id" : "bf1bc42d-886f-4cba-85f5-00a3b92c5df8", - "Date" : "Fri, 02 Apr 2021 22:36:24 GMT" + "x-ms-client-request-id" : "16587723-2072-4709-8d33-9b5102c1c1b8", + "Date" : "Thu, 27 May 2021 21:14:54 GMT" }, "Exception" : null } ], - "variables" : [ "azs-java-test-blob853793628" ] + "variables" : [ "azs-java-test-blob97028b238" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.deleteDataSourceIfExistsWorksOnlyWhenResourceExists.json b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.deleteDataSourceIfExistsWorksOnlyWhenResourceExists.json index a8ee4e2d6431..3ee1d78d9677 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.deleteDataSourceIfExistsWorksOnlyWhenResourceExists.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.deleteDataSourceIfExistsWorksOnlyWhenResourceExists.json @@ -1,108 +1,108 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob209797ba1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob5481705c5')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3534f0fb-0bf0-4779-a8c3-fea0467f025f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "66b7a6e6-6782-45b1-8632-e99235aecf76", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "422", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3534f0fb-0bf0-4779-a8c3-fea0467f025f", + "request-id" : "66b7a6e6-6782-45b1-8632-e99235aecf76", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:25 GMT", + "Date" : "Thu, 27 May 2021 21:14:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C01DB28F\"", - "client-request-id" : "3534f0fb-0bf0-4779-a8c3-fea0467f025f", - "elapsed-time" : "41", + "ETag" : "W/\"0x8D921547AB20889\"", + "client-request-id" : "66b7a6e6-6782-45b1-8632-e99235aecf76", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "422", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C01DB28F\\\"\",\"name\":\"azs-java-test-blob209797ba1\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "3534f0fb-0bf0-4779-a8c3-fea0467f025f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547AB20889\\\"\",\"name\":\"azs-java-test-blob5481705c5\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "66b7a6e6-6782-45b1-8632-e99235aecf76", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob209797ba1')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob5481705c5')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob209797ba1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob5481705c5')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "22287dc0-f8f7-4ed2-81ac-28f3326206e6" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "145a27fe-528a-4534-9111-ac6798ef5e43" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "22287dc0-f8f7-4ed2-81ac-28f3326206e6", - "elapsed-time" : "77", + "client-request-id" : "145a27fe-528a-4534-9111-ac6798ef5e43", + "elapsed-time" : "17", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "22287dc0-f8f7-4ed2-81ac-28f3326206e6", + "request-id" : "145a27fe-528a-4534-9111-ac6798ef5e43", "StatusCode" : "204", - "x-ms-client-request-id" : "22287dc0-f8f7-4ed2-81ac-28f3326206e6", - "Date" : "Fri, 02 Apr 2021 22:36:26 GMT" + "x-ms-client-request-id" : "145a27fe-528a-4534-9111-ac6798ef5e43", + "Date" : "Thu, 27 May 2021 21:14:56 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob209797ba1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob5481705c5')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "487265cb-cae6-491a-93c6-0cdbb9544f24" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e1290b5b-bd16-4c4d-b191-f6fa93ca4651" }, "Response" : { + "content-length" : "160", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "487265cb-cae6-491a-93c6-0cdbb9544f24", + "request-id" : "e1290b5b-bd16-4c4d-b191-f6fa93ca4651", "StatusCode" : "412", - "Date" : "Fri, 02 Apr 2021 22:36:26 GMT", + "Date" : "Thu, 27 May 2021 21:14:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "487265cb-cae6-491a-93c6-0cdbb9544f24", + "client-request-id" : "e1290b5b-bd16-4c4d-b191-f6fa93ca4651", "elapsed-time" : "4", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "487265cb-cae6-491a-93c6-0cdbb9544f24", + "x-ms-client-request-id" : "e1290b5b-bd16-4c4d-b191-f6fa93ca4651", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob209797ba1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob5481705c5')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "77fb424f-c109-4a25-9163-aa8aaaf813ad" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d33d9b86-1ad7-4c26-ae97-4d7e885037a3" }, "Response" : { + "content-length" : "137", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "77fb424f-c109-4a25-9163-aa8aaaf813ad", + "request-id" : "d33d9b86-1ad7-4c26-ae97-4d7e885037a3", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:36:26 GMT", + "Date" : "Thu, 27 May 2021 21:14:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "77fb424f-c109-4a25-9163-aa8aaaf813ad", - "elapsed-time" : "38", + "client-request-id" : "d33d9b86-1ad7-4c26-ae97-4d7e885037a3", + "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "137", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No datasource with the name 'azs-java-test-blob209797ba1' was found in a service named 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No datasource with the name 'azs-java-test-blob5481705c5' was found in a service named 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "77fb424f-c109-4a25-9163-aa8aaaf813ad", + "x-ms-client-request-id" : "d33d9b86-1ad7-4c26-ae97-4d7e885037a3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "azs-java-test-blob209797ba1" ] + "variables" : [ "azs-java-test-blob5481705c5" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.deleteDataSourceIfNotChangedWorksOnlyOnCurrentResource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.deleteDataSourceIfNotChangedWorksOnlyOnCurrentResource.json index 38da8c80db0b..bcb0d99aca48 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.deleteDataSourceIfNotChangedWorksOnlyOnCurrentResource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.deleteDataSourceIfNotChangedWorksOnlyOnCurrentResource.json @@ -1,109 +1,109 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob06590641f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob52412eb99')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5315eb41-c474-433c-8644-04cac02644bd", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "845f55ca-1b23-4181-9ded-ef710bddce09", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "422", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5315eb41-c474-433c-8644-04cac02644bd", + "request-id" : "845f55ca-1b23-4181-9ded-ef710bddce09", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:25 GMT", + "Date" : "Thu, 27 May 2021 21:14:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627BFB3E1DB\"", - "client-request-id" : "5315eb41-c474-433c-8644-04cac02644bd", - "elapsed-time" : "64", + "ETag" : "W/\"0x8D921547A5E33F8\"", + "client-request-id" : "845f55ca-1b23-4181-9ded-ef710bddce09", + "elapsed-time" : "27", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "422", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627BFB3E1DB\\\"\",\"name\":\"azs-java-test-blob06590641f\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "5315eb41-c474-433c-8644-04cac02644bd", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547A5E33F8\\\"\",\"name\":\"azs-java-test-blob52412eb99\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "845f55ca-1b23-4181-9ded-ef710bddce09", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob06590641f')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob52412eb99')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob06590641f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob52412eb99')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "aa88a0b2-c966-46b8-b122-9a4a4762d8dd", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e22890e0-62c1-4fdf-88c2-3ecabd7ecfe9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "422", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "aa88a0b2-c966-46b8-b122-9a4a4762d8dd", + "request-id" : "e22890e0-62c1-4fdf-88c2-3ecabd7ecfe9", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:25 GMT", + "Date" : "Thu, 27 May 2021 21:14:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627BFC326BE\"", - "client-request-id" : "aa88a0b2-c966-46b8-b122-9a4a4762d8dd", - "elapsed-time" : "92", + "ETag" : "W/\"0x8D921547A678478\"", + "client-request-id" : "e22890e0-62c1-4fdf-88c2-3ecabd7ecfe9", + "elapsed-time" : "38", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "422", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627BFC326BE\\\"\",\"name\":\"azs-java-test-blob06590641f\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "aa88a0b2-c966-46b8-b122-9a4a4762d8dd", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547A678478\\\"\",\"name\":\"azs-java-test-blob52412eb99\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "e22890e0-62c1-4fdf-88c2-3ecabd7ecfe9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob06590641f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob52412eb99')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "03da56de-1834-4581-8975-19f56bf93c83" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8963b789-6015-480c-ad99-7b775b496db0" }, "Response" : { + "content-length" : "160", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "03da56de-1834-4581-8975-19f56bf93c83", + "request-id" : "8963b789-6015-480c-ad99-7b775b496db0", "StatusCode" : "412", - "Date" : "Fri, 02 Apr 2021 22:36:25 GMT", + "Date" : "Thu, 27 May 2021 21:14:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "03da56de-1834-4581-8975-19f56bf93c83", - "elapsed-time" : "6", + "client-request-id" : "8963b789-6015-480c-ad99-7b775b496db0", + "elapsed-time" : "40", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "03da56de-1834-4581-8975-19f56bf93c83", + "x-ms-client-request-id" : "8963b789-6015-480c-ad99-7b775b496db0", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob06590641f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob52412eb99')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c62ab79-f82d-41a0-a9d4-178aa95d53d0" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1d251a72-ce32-4fac-8545-d980668581fb" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5c62ab79-f82d-41a0-a9d4-178aa95d53d0", - "elapsed-time" : "55", + "client-request-id" : "1d251a72-ce32-4fac-8545-d980668581fb", + "elapsed-time" : "16", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "5c62ab79-f82d-41a0-a9d4-178aa95d53d0", + "request-id" : "1d251a72-ce32-4fac-8545-d980668581fb", "StatusCode" : "204", - "x-ms-client-request-id" : "5c62ab79-f82d-41a0-a9d4-178aa95d53d0", - "Date" : "Fri, 02 Apr 2021 22:36:25 GMT" + "x-ms-client-request-id" : "1d251a72-ce32-4fac-8545-d980668581fb", + "Date" : "Thu, 27 May 2021 21:14:56 GMT" }, "Exception" : null } ], - "variables" : [ "azs-java-test-blob06590641f" ] + "variables" : [ "azs-java-test-blob52412eb99" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.deleteDataSourceIsIdempotent.json b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.deleteDataSourceIsIdempotent.json index 8fa116460b94..863569f8abb7 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.deleteDataSourceIsIdempotent.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.deleteDataSourceIsIdempotent.json @@ -1,108 +1,108 @@ { "networkCallRecords" : [ { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob40330c59d')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob93939ac9d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6bccb395-0b60-4ea0-a2e8-c4016bf9fe96" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "45e889c4-04ce-4a5a-9dc7-d48d67a21c41" }, "Response" : { + "content-length" : "137", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6bccb395-0b60-4ea0-a2e8-c4016bf9fe96", + "request-id" : "45e889c4-04ce-4a5a-9dc7-d48d67a21c41", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:36:24 GMT", + "Date" : "Thu, 27 May 2021 21:14:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6bccb395-0b60-4ea0-a2e8-c4016bf9fe96", - "elapsed-time" : "17", + "client-request-id" : "45e889c4-04ce-4a5a-9dc7-d48d67a21c41", + "elapsed-time" : "7", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "137", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No datasource with the name 'azs-java-test-blob40330c59d' was found in a service named 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No datasource with the name 'azs-java-test-blob93939ac9d' was found in a service named 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "6bccb395-0b60-4ea0-a2e8-c4016bf9fe96", + "x-ms-client-request-id" : "45e889c4-04ce-4a5a-9dc7-d48d67a21c41", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob40330c59d')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob93939ac9d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "71231dad-a5a3-4ee6-bbd1-c7c82e968233", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "eec403d5-f859-4e94-8193-f5898dc0895f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "422", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "71231dad-a5a3-4ee6-bbd1-c7c82e968233", + "request-id" : "eec403d5-f859-4e94-8193-f5898dc0895f", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:24 GMT", + "Date" : "Thu, 27 May 2021 21:14:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627BF073022\"", - "client-request-id" : "71231dad-a5a3-4ee6-bbd1-c7c82e968233", - "elapsed-time" : "95", + "ETag" : "W/\"0x8D9215479FBDDCB\"", + "client-request-id" : "eec403d5-f859-4e94-8193-f5898dc0895f", + "elapsed-time" : "111", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "422", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627BF073022\\\"\",\"name\":\"azs-java-test-blob40330c59d\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "71231dad-a5a3-4ee6-bbd1-c7c82e968233", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D9215479FBDDCB\\\"\",\"name\":\"azs-java-test-blob93939ac9d\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "eec403d5-f859-4e94-8193-f5898dc0895f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob40330c59d')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob93939ac9d')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob40330c59d')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob93939ac9d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cf1f8086-6e31-4764-abca-1d47d4c29552" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d981a99b-e893-4b98-827e-86fab556d0b4" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "cf1f8086-6e31-4764-abca-1d47d4c29552", - "elapsed-time" : "51", + "client-request-id" : "d981a99b-e893-4b98-827e-86fab556d0b4", + "elapsed-time" : "18", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "cf1f8086-6e31-4764-abca-1d47d4c29552", + "request-id" : "d981a99b-e893-4b98-827e-86fab556d0b4", "StatusCode" : "204", - "x-ms-client-request-id" : "cf1f8086-6e31-4764-abca-1d47d4c29552", - "Date" : "Fri, 02 Apr 2021 22:36:24 GMT" + "x-ms-client-request-id" : "d981a99b-e893-4b98-827e-86fab556d0b4", + "Date" : "Thu, 27 May 2021 21:14:55 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob40330c59d')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob93939ac9d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a82bb36a-a201-4703-ab19-7c4f8797916e" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "71973fa6-14a8-49f3-854f-a9d9922b32fd" }, "Response" : { + "content-length" : "137", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a82bb36a-a201-4703-ab19-7c4f8797916e", + "request-id" : "71973fa6-14a8-49f3-854f-a9d9922b32fd", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:36:24 GMT", + "Date" : "Thu, 27 May 2021 21:14:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a82bb36a-a201-4703-ab19-7c4f8797916e", - "elapsed-time" : "16", + "client-request-id" : "71973fa6-14a8-49f3-854f-a9d9922b32fd", + "elapsed-time" : "9", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "137", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No datasource with the name 'azs-java-test-blob40330c59d' was found in a service named 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No datasource with the name 'azs-java-test-blob93939ac9d' was found in a service named 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "a82bb36a-a201-4703-ab19-7c4f8797916e", + "x-ms-client-request-id" : "71973fa6-14a8-49f3-854f-a9d9922b32fd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "azs-java-test-blob40330c59d" ] + "variables" : [ "azs-java-test-blob93939ac9d" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.getDataSourceReturnsCorrectDefinition.json b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.getDataSourceReturnsCorrectDefinition.json index 7dead71fc431..b585d3637d61 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.getDataSourceReturnsCorrectDefinition.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.getDataSourceReturnsCorrectDefinition.json @@ -1,420 +1,420 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob666444287')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob57938bcee')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f847df81-bde6-4ec0-81d8-bee093265036", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "60c730bc-cd27-4026-81be-c009715a97e2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "422", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f847df81-bde6-4ec0-81d8-bee093265036", + "request-id" : "60c730bc-cd27-4026-81be-c009715a97e2", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT", + "Date" : "Thu, 27 May 2021 21:14:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C0D58A04\"", - "client-request-id" : "f847df81-bde6-4ec0-81d8-bee093265036", - "elapsed-time" : "70", + "ETag" : "W/\"0x8D921547B37A48B\"", + "client-request-id" : "60c730bc-cd27-4026-81be-c009715a97e2", + "elapsed-time" : "38", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "422", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C0D58A04\\\"\",\"name\":\"azs-java-test-blob666444287\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "f847df81-bde6-4ec0-81d8-bee093265036", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547B37A48B\\\"\",\"name\":\"azs-java-test-blob57938bcee\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "60c730bc-cd27-4026-81be-c009715a97e2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob666444287')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob57938bcee')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob666444287')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob57938bcee')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8945601c-da39-4cc2-b5aa-6af10f0e8ebe" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b9b19877-2e7e-44e8-af3c-13cd225f25f9" }, "Response" : { + "content-length" : "422", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8945601c-da39-4cc2-b5aa-6af10f0e8ebe", + "request-id" : "b9b19877-2e7e-44e8-af3c-13cd225f25f9", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT", + "Date" : "Thu, 27 May 2021 21:14:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C0D58A04\"", - "client-request-id" : "8945601c-da39-4cc2-b5aa-6af10f0e8ebe", - "elapsed-time" : "7", + "ETag" : "W/\"0x8D921547B37A48B\"", + "client-request-id" : "b9b19877-2e7e-44e8-af3c-13cd225f25f9", + "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "422", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C0D58A04\\\"\",\"name\":\"azs-java-test-blob666444287\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "8945601c-da39-4cc2-b5aa-6af10f0e8ebe", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547B37A48B\\\"\",\"name\":\"azs-java-test-blob57938bcee\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "b9b19877-2e7e-44e8-af3c-13cd225f25f9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob666444287')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob57938bcee')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e1c7ec59-1a12-4b00-b1b2-91b4c72eafed" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d9742868-15fd-4727-b509-61b9a81ac92c" }, "Response" : { + "content-length" : "422", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e1c7ec59-1a12-4b00-b1b2-91b4c72eafed", + "request-id" : "d9742868-15fd-4727-b509-61b9a81ac92c", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT", + "Date" : "Thu, 27 May 2021 21:14:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C0D58A04\"", - "client-request-id" : "e1c7ec59-1a12-4b00-b1b2-91b4c72eafed", - "elapsed-time" : "26", + "ETag" : "W/\"0x8D921547B37A48B\"", + "client-request-id" : "d9742868-15fd-4727-b509-61b9a81ac92c", + "elapsed-time" : "9", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "422", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C0D58A04\\\"\",\"name\":\"azs-java-test-blob666444287\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "e1c7ec59-1a12-4b00-b1b2-91b4c72eafed", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547B37A48B\\\"\",\"name\":\"azs-java-test-blob57938bcee\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "d9742868-15fd-4727-b509-61b9a81ac92c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob666444287')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob57938bcee')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "87b8c32e-0924-42a3-bc59-733ffcff5817" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e916464e-f9f7-49f9-a50d-c9bbc8942d52" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "87b8c32e-0924-42a3-bc59-733ffcff5817", - "elapsed-time" : "54", + "client-request-id" : "e916464e-f9f7-49f9-a50d-c9bbc8942d52", + "elapsed-time" : "15", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "87b8c32e-0924-42a3-bc59-733ffcff5817", + "request-id" : "e916464e-f9f7-49f9-a50d-c9bbc8942d52", "StatusCode" : "204", - "x-ms-client-request-id" : "87b8c32e-0924-42a3-bc59-733ffcff5817", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT" + "x-ms-client-request-id" : "e916464e-f9f7-49f9-a50d-c9bbc8942d52", + "Date" : "Thu, 27 May 2021 21:14:57 GMT" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-tablestorage')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-tablestorage')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac6f3a5f-c9b8-45b0-9e2b-3e6615b3bd9f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "85121314-a939-4f09-b602-706d01d04e73", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "416", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ac6f3a5f-c9b8-45b0-9e2b-3e6615b3bd9f", + "request-id" : "85121314-a939-4f09-b602-706d01d04e73", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT", + "Date" : "Thu, 27 May 2021 21:14:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C0FCEF06\"", - "client-request-id" : "ac6f3a5f-c9b8-45b0-9e2b-3e6615b3bd9f", - "elapsed-time" : "68", + "ETag" : "W/\"0x8D921547B536EFA\"", + "client-request-id" : "85121314-a939-4f09-b602-706d01d04e73", + "elapsed-time" : "57", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "416", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C0FCEF06\\\"\",\"name\":\"azs-java-test-tablestorage\",\"description\":\"Some data source\",\"type\":\"azuretable\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"faketable\",\"query\":\"fake query\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "ac6f3a5f-c9b8-45b0-9e2b-3e6615b3bd9f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547B536EFA\\\"\",\"name\":\"azs-java-test-tablestorage\",\"description\":\"Some data source\",\"type\":\"azuretable\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"faketable\",\"query\":\"fake query\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "85121314-a939-4f09-b602-706d01d04e73", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-tablestorage')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-tablestorage')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-tablestorage')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-tablestorage')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "590aa3e5-9349-4b85-bba1-6ad8916166d3" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d8cdbc29-00ef-4043-a510-7d2d68831e76" }, "Response" : { + "content-length" : "416", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "590aa3e5-9349-4b85-bba1-6ad8916166d3", + "request-id" : "d8cdbc29-00ef-4043-a510-7d2d68831e76", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT", + "Date" : "Thu, 27 May 2021 21:14:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C0FCEF06\"", - "client-request-id" : "590aa3e5-9349-4b85-bba1-6ad8916166d3", - "elapsed-time" : "18", + "ETag" : "W/\"0x8D921547B536EFA\"", + "client-request-id" : "d8cdbc29-00ef-4043-a510-7d2d68831e76", + "elapsed-time" : "7", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "416", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C0FCEF06\\\"\",\"name\":\"azs-java-test-tablestorage\",\"description\":\"Some data source\",\"type\":\"azuretable\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"faketable\",\"query\":\"fake query\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "590aa3e5-9349-4b85-bba1-6ad8916166d3", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547B536EFA\\\"\",\"name\":\"azs-java-test-tablestorage\",\"description\":\"Some data source\",\"type\":\"azuretable\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"faketable\",\"query\":\"fake query\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "d8cdbc29-00ef-4043-a510-7d2d68831e76", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-tablestorage')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-tablestorage')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "28093c6c-c451-4865-8f36-a6c970243a60" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "972d819a-f291-4251-b8a8-a0c355c06a69" }, "Response" : { + "content-length" : "416", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "28093c6c-c451-4865-8f36-a6c970243a60", + "request-id" : "972d819a-f291-4251-b8a8-a0c355c06a69", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT", + "Date" : "Thu, 27 May 2021 21:14:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C0FCEF06\"", - "client-request-id" : "28093c6c-c451-4865-8f36-a6c970243a60", - "elapsed-time" : "7", + "ETag" : "W/\"0x8D921547B536EFA\"", + "client-request-id" : "972d819a-f291-4251-b8a8-a0c355c06a69", + "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "416", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C0FCEF06\\\"\",\"name\":\"azs-java-test-tablestorage\",\"description\":\"Some data source\",\"type\":\"azuretable\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"faketable\",\"query\":\"fake query\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "28093c6c-c451-4865-8f36-a6c970243a60", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547B536EFA\\\"\",\"name\":\"azs-java-test-tablestorage\",\"description\":\"Some data source\",\"type\":\"azuretable\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"faketable\",\"query\":\"fake query\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "972d819a-f291-4251-b8a8-a0c355c06a69", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-tablestorage')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-tablestorage')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0aa32ca-ae4f-4b5c-8c79-6fc7a7759b7b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c22db790-1e25-46eb-a6a7-5006597dbf37" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d0aa32ca-ae4f-4b5c-8c79-6fc7a7759b7b", - "elapsed-time" : "44", + "client-request-id" : "c22db790-1e25-46eb-a6a7-5006597dbf37", + "elapsed-time" : "15", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "d0aa32ca-ae4f-4b5c-8c79-6fc7a7759b7b", + "request-id" : "c22db790-1e25-46eb-a6a7-5006597dbf37", "StatusCode" : "204", - "x-ms-client-request-id" : "d0aa32ca-ae4f-4b5c-8c79-6fc7a7759b7b", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT" + "x-ms-client-request-id" : "c22db790-1e25-46eb-a6a7-5006597dbf37", + "Date" : "Thu, 27 May 2021 21:14:57 GMT" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql19863695d1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql23696793a7')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "188c2602-ff14-48df-a8cf-11a7d271d7e5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c7f053bd-d00c-4f67-87a0-9ec9405c97ff", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "408", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "188c2602-ff14-48df-a8cf-11a7d271d7e5", + "request-id" : "c7f053bd-d00c-4f67-87a0-9ec9405c97ff", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT", + "Date" : "Thu, 27 May 2021 21:14:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C11CFFB0\"", - "client-request-id" : "188c2602-ff14-48df-a8cf-11a7d271d7e5", - "elapsed-time" : "48", + "ETag" : "W/\"0x8D921547B6D3D48\"", + "client-request-id" : "c7f053bd-d00c-4f67-87a0-9ec9405c97ff", + "elapsed-time" : "28", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "408", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C11CFFB0\\\"\",\"name\":\"azs-java-test-sql19863695d1\",\"description\":\"Some data source\",\"type\":\"azuresql\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"GeoNamesRI\",\"query\":null},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "188c2602-ff14-48df-a8cf-11a7d271d7e5", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547B6D3D48\\\"\",\"name\":\"azs-java-test-sql23696793a7\",\"description\":\"Some data source\",\"type\":\"azuresql\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"GeoNamesRI\",\"query\":null},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "c7f053bd-d00c-4f67-87a0-9ec9405c97ff", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-sql19863695d1')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-sql23696793a7')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql19863695d1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql23696793a7')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c87871da-f999-4143-abb5-8f62a449cebb" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "252e4049-8119-4df3-b744-e8358bf4532e" }, "Response" : { + "content-length" : "413", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c87871da-f999-4143-abb5-8f62a449cebb", + "request-id" : "252e4049-8119-4df3-b744-e8358bf4532e", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT", + "Date" : "Thu, 27 May 2021 21:14:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C11CFFB0\"", - "client-request-id" : "c87871da-f999-4143-abb5-8f62a449cebb", - "elapsed-time" : "18", + "ETag" : "W/\"0x8D921547B6D3D48\"", + "client-request-id" : "252e4049-8119-4df3-b744-e8358bf4532e", + "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "413", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C11CFFB0\\\"\",\"name\":\"azs-java-test-sql19863695d1\",\"description\":\"Some data source\",\"type\":\"azuresql\",\"subtype\":\"sqliaas\",\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"GeoNamesRI\",\"query\":null},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "c87871da-f999-4143-abb5-8f62a449cebb", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547B6D3D48\\\"\",\"name\":\"azs-java-test-sql23696793a7\",\"description\":\"Some data source\",\"type\":\"azuresql\",\"subtype\":\"sqliaas\",\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"GeoNamesRI\",\"query\":null},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "252e4049-8119-4df3-b744-e8358bf4532e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql19863695d1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql23696793a7')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "80690911-be73-4349-b799-5f16ca389402" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b0a73a15-0053-4ee8-8e21-eb6f9ab8070f" }, "Response" : { + "content-length" : "413", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "80690911-be73-4349-b799-5f16ca389402", + "request-id" : "b0a73a15-0053-4ee8-8e21-eb6f9ab8070f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT", + "Date" : "Thu, 27 May 2021 21:14:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C11CFFB0\"", - "client-request-id" : "80690911-be73-4349-b799-5f16ca389402", - "elapsed-time" : "7", + "ETag" : "W/\"0x8D921547B6D3D48\"", + "client-request-id" : "b0a73a15-0053-4ee8-8e21-eb6f9ab8070f", + "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "413", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C11CFFB0\\\"\",\"name\":\"azs-java-test-sql19863695d1\",\"description\":\"Some data source\",\"type\":\"azuresql\",\"subtype\":\"sqliaas\",\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"GeoNamesRI\",\"query\":null},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "80690911-be73-4349-b799-5f16ca389402", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547B6D3D48\\\"\",\"name\":\"azs-java-test-sql23696793a7\",\"description\":\"Some data source\",\"type\":\"azuresql\",\"subtype\":\"sqliaas\",\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"GeoNamesRI\",\"query\":null},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "b0a73a15-0053-4ee8-8e21-eb6f9ab8070f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql19863695d1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-sql23696793a7')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b8995fec-7b61-4dde-add9-8f4a7b3692ea" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "33ebc15c-7b58-45e1-a4e2-b32365022d80" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b8995fec-7b61-4dde-add9-8f4a7b3692ea", - "elapsed-time" : "44", + "client-request-id" : "33ebc15c-7b58-45e1-a4e2-b32365022d80", + "elapsed-time" : "17", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "b8995fec-7b61-4dde-add9-8f4a7b3692ea", + "request-id" : "33ebc15c-7b58-45e1-a4e2-b32365022d80", "StatusCode" : "204", - "x-ms-client-request-id" : "b8995fec-7b61-4dde-add9-8f4a7b3692ea", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT" + "x-ms-client-request-id" : "33ebc15c-7b58-45e1-a4e2-b32365022d80", + "Date" : "Thu, 27 May 2021 21:14:58 GMT" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-cosmos')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-cosmos')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ebaa1e28-790f-40de-891b-2ad3de342546", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ac862c1a-8721-4d94-b74a-88823cf6c0a7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "444", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ebaa1e28-790f-40de-891b-2ad3de342546", + "request-id" : "ac862c1a-8721-4d94-b74a-88823cf6c0a7", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT", + "Date" : "Thu, 27 May 2021 21:14:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C1454F52\"", - "client-request-id" : "ebaa1e28-790f-40de-891b-2ad3de342546", - "elapsed-time" : "105", + "ETag" : "W/\"0x8D921547B8E11AC\"", + "client-request-id" : "ac862c1a-8721-4d94-b74a-88823cf6c0a7", + "elapsed-time" : "87", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "444", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C1454F52\\\"\",\"name\":\"azs-java-test-cosmos\",\"description\":\"Some data source\",\"type\":\"cosmosdb\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"faketable\",\"query\":\"SELECT ... FROM x where x._ts > @HighWaterMark\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "ebaa1e28-790f-40de-891b-2ad3de342546", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547B8E11AC\\\"\",\"name\":\"azs-java-test-cosmos\",\"description\":\"Some data source\",\"type\":\"cosmosdb\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"faketable\",\"query\":\"SELECT ... FROM x where x._ts > @HighWaterMark\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "ac862c1a-8721-4d94-b74a-88823cf6c0a7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-cosmos')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-cosmos')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-cosmos')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-cosmos')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf6f610f-c749-4f72-96f0-e54e72234a9b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "cb5054e5-4392-4209-956f-e0ed1ce7f390" }, "Response" : { + "content-length" : "444", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "bf6f610f-c749-4f72-96f0-e54e72234a9b", + "request-id" : "cb5054e5-4392-4209-956f-e0ed1ce7f390", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT", + "Date" : "Thu, 27 May 2021 21:14:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C1454F52\"", - "client-request-id" : "bf6f610f-c749-4f72-96f0-e54e72234a9b", - "elapsed-time" : "60", + "ETag" : "W/\"0x8D921547B8E11AC\"", + "client-request-id" : "cb5054e5-4392-4209-956f-e0ed1ce7f390", + "elapsed-time" : "70", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "444", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C1454F52\\\"\",\"name\":\"azs-java-test-cosmos\",\"description\":\"Some data source\",\"type\":\"cosmosdb\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"faketable\",\"query\":\"SELECT ... FROM x where x._ts > @HighWaterMark\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "bf6f610f-c749-4f72-96f0-e54e72234a9b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547B8E11AC\\\"\",\"name\":\"azs-java-test-cosmos\",\"description\":\"Some data source\",\"type\":\"cosmosdb\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"faketable\",\"query\":\"SELECT ... FROM x where x._ts > @HighWaterMark\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "cb5054e5-4392-4209-956f-e0ed1ce7f390", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-cosmos')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-cosmos')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab92fddd-d938-4e8c-b759-46de9d69cda5" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d56f59a8-718d-4dfc-8337-bfad5eb696d0" }, "Response" : { + "content-length" : "444", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ab92fddd-d938-4e8c-b759-46de9d69cda5", + "request-id" : "d56f59a8-718d-4dfc-8337-bfad5eb696d0", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT", + "Date" : "Thu, 27 May 2021 21:14:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C1454F52\"", - "client-request-id" : "ab92fddd-d938-4e8c-b759-46de9d69cda5", - "elapsed-time" : "7", + "ETag" : "W/\"0x8D921547B8E11AC\"", + "client-request-id" : "d56f59a8-718d-4dfc-8337-bfad5eb696d0", + "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "444", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C1454F52\\\"\",\"name\":\"azs-java-test-cosmos\",\"description\":\"Some data source\",\"type\":\"cosmosdb\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"faketable\",\"query\":\"SELECT ... FROM x where x._ts > @HighWaterMark\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "ab92fddd-d938-4e8c-b759-46de9d69cda5", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547B8E11AC\\\"\",\"name\":\"azs-java-test-cosmos\",\"description\":\"Some data source\",\"type\":\"cosmosdb\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"faketable\",\"query\":\"SELECT ... FROM x where x._ts > @HighWaterMark\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "d56f59a8-718d-4dfc-8337-bfad5eb696d0", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-cosmos')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-cosmos')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "83a4b9c0-aa69-43a9-8083-dd3e029c367c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "34ce43fc-9c1a-414d-bf6d-e7b1dc2aa282" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "83a4b9c0-aa69-43a9-8083-dd3e029c367c", - "elapsed-time" : "41", + "client-request-id" : "34ce43fc-9c1a-414d-bf6d-e7b1dc2aa282", + "elapsed-time" : "16", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "83a4b9c0-aa69-43a9-8083-dd3e029c367c", + "request-id" : "34ce43fc-9c1a-414d-bf6d-e7b1dc2aa282", "StatusCode" : "204", - "x-ms-client-request-id" : "83a4b9c0-aa69-43a9-8083-dd3e029c367c", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT" + "x-ms-client-request-id" : "34ce43fc-9c1a-414d-bf6d-e7b1dc2aa282", + "Date" : "Thu, 27 May 2021 21:14:58 GMT" }, "Exception" : null } ], - "variables" : [ "azs-java-test-blob666444287", "azs-java-test-sql19863695d1" ] + "variables" : [ "azs-java-test-blob57938bcee", "azs-java-test-sql23696793a7" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.getDataSourceThrowsOnNotFound.json b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.getDataSourceThrowsOnNotFound.json index 459710193618..7796a0450657 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.getDataSourceThrowsOnNotFound.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.getDataSourceThrowsOnNotFound.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/datasources('thisdatasourcedoesnotexist')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('thisdatasourcedoesnotexist')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "58cf8aeb-77dd-4aac-ba5a-31f94aaef711" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "dae46c48-0bb5-4cc6-ac2b-3fc2bb73daa1" }, "Response" : { + "content-length" : "129", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "58cf8aeb-77dd-4aac-ba5a-31f94aaef711", + "request-id" : "dae46c48-0bb5-4cc6-ac2b-3fc2bb73daa1", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:36:26 GMT", + "Date" : "Thu, 27 May 2021 21:14:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "58cf8aeb-77dd-4aac-ba5a-31f94aaef711", + "client-request-id" : "dae46c48-0bb5-4cc6-ac2b-3fc2bb73daa1", "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "129", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No data source with the name 'thisdatasourcedoesnotexist' was found in service 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "58cf8aeb-77dd-4aac-ba5a-31f94aaef711", + "x-ms-client-request-id" : "dae46c48-0bb5-4cc6-ac2b-3fc2bb73daa1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.updateDataSourceIfExistsSucceedsOnExistingResource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.updateDataSourceIfExistsSucceedsOnExistingResource.json index b51402b17515..a40b5ba449ea 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.updateDataSourceIfExistsSucceedsOnExistingResource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.updateDataSourceIfExistsSucceedsOnExistingResource.json @@ -1,82 +1,82 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob79768d5f7')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob88496e520')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd930bda-9d60-458f-a232-72898f13251b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "31a28d5a-4d61-4059-ba7c-d789505e6b34", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "422", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "bd930bda-9d60-458f-a232-72898f13251b", + "request-id" : "31a28d5a-4d61-4059-ba7c-d789505e6b34", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:25 GMT", + "Date" : "Thu, 27 May 2021 21:14:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627BF8FD8D7\"", - "client-request-id" : "bd930bda-9d60-458f-a232-72898f13251b", - "elapsed-time" : "58", + "ETag" : "W/\"0x8D921547A4688FB\"", + "client-request-id" : "31a28d5a-4d61-4059-ba7c-d789505e6b34", + "elapsed-time" : "27", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "422", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627BF8FD8D7\\\"\",\"name\":\"azs-java-test-blob79768d5f7\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "bd930bda-9d60-458f-a232-72898f13251b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547A4688FB\\\"\",\"name\":\"azs-java-test-blob88496e520\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "31a28d5a-4d61-4059-ba7c-d789505e6b34", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob79768d5f7')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob88496e520')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob79768d5f7')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob88496e520')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "40eb91ee-39be-41fa-8f24-2e3214c62780", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "196a5b0c-bdd0-4cda-8c4c-83712df96c93", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "415", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "40eb91ee-39be-41fa-8f24-2e3214c62780", + "request-id" : "196a5b0c-bdd0-4cda-8c4c-83712df96c93", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:25 GMT", + "Date" : "Thu, 27 May 2021 21:14:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627BF9D48D5\"", - "client-request-id" : "40eb91ee-39be-41fa-8f24-2e3214c62780", - "elapsed-time" : "45", + "ETag" : "W/\"0x8D921547A4EC7D6\"", + "client-request-id" : "196a5b0c-bdd0-4cda-8c4c-83712df96c93", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "415", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627BF9D48D5\\\"\",\"name\":\"azs-java-test-blob79768d5f7\",\"description\":\"an update\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "40eb91ee-39be-41fa-8f24-2e3214c62780", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547A4EC7D6\\\"\",\"name\":\"azs-java-test-blob88496e520\",\"description\":\"an update\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "196a5b0c-bdd0-4cda-8c4c-83712df96c93", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob79768d5f7')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob88496e520')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5a83691e-4e5b-497a-aad7-64103bbe7649" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "70161f74-fcca-49ca-8aae-d62011f662e6" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5a83691e-4e5b-497a-aad7-64103bbe7649", - "elapsed-time" : "60", + "client-request-id" : "70161f74-fcca-49ca-8aae-d62011f662e6", + "elapsed-time" : "17", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "5a83691e-4e5b-497a-aad7-64103bbe7649", + "request-id" : "70161f74-fcca-49ca-8aae-d62011f662e6", "StatusCode" : "204", - "x-ms-client-request-id" : "5a83691e-4e5b-497a-aad7-64103bbe7649", - "Date" : "Fri, 02 Apr 2021 22:36:25 GMT" + "x-ms-client-request-id" : "70161f74-fcca-49ca-8aae-d62011f662e6", + "Date" : "Thu, 27 May 2021 21:14:56 GMT" }, "Exception" : null } ], - "variables" : [ "azs-java-test-blob79768d5f7" ] + "variables" : [ "azs-java-test-blob88496e520" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.updateDataSourceIfNotChangedFailsWhenResourceChanged.json b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.updateDataSourceIfNotChangedFailsWhenResourceChanged.json index cabae906ac0f..92e1a28a1057 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.updateDataSourceIfNotChangedFailsWhenResourceChanged.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.updateDataSourceIfNotChangedFailsWhenResourceChanged.json @@ -1,110 +1,110 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob62005cea8')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob764967c99')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "fb11694f-5764-4d2b-ac20-03e825a1d4f3", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "02b415cf-c7d7-471e-b913-42fea3fbc353", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "422", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "fb11694f-5764-4d2b-ac20-03e825a1d4f3", + "request-id" : "02b415cf-c7d7-471e-b913-42fea3fbc353", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:25 GMT", + "Date" : "Thu, 27 May 2021 21:14:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627BFE5CFF7\"", - "client-request-id" : "fb11694f-5764-4d2b-ac20-03e825a1d4f3", - "elapsed-time" : "42", + "ETag" : "W/\"0x8D921547A8AF16B\"", + "client-request-id" : "02b415cf-c7d7-471e-b913-42fea3fbc353", + "elapsed-time" : "27", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "422", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627BFE5CFF7\\\"\",\"name\":\"azs-java-test-blob62005cea8\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "fb11694f-5764-4d2b-ac20-03e825a1d4f3", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547A8AF16B\\\"\",\"name\":\"azs-java-test-blob764967c99\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "02b415cf-c7d7-471e-b913-42fea3fbc353", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob62005cea8')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob764967c99')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob62005cea8')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob764967c99')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6fbaf089-5dd3-49c7-adcb-4a373dc42e61", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bee04f42-43ef-4499-a8ff-74a82ed78840", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "415", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6fbaf089-5dd3-49c7-adcb-4a373dc42e61", + "request-id" : "bee04f42-43ef-4499-a8ff-74a82ed78840", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:25 GMT", + "Date" : "Thu, 27 May 2021 21:14:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627BFF1B8EE\"", - "client-request-id" : "6fbaf089-5dd3-49c7-adcb-4a373dc42e61", - "elapsed-time" : "56", + "ETag" : "W/\"0x8D921547A91D079\"", + "client-request-id" : "bee04f42-43ef-4499-a8ff-74a82ed78840", + "elapsed-time" : "27", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "415", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627BFF1B8EE\\\"\",\"name\":\"azs-java-test-blob62005cea8\",\"description\":\"an update\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "6fbaf089-5dd3-49c7-adcb-4a373dc42e61", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547A91D079\\\"\",\"name\":\"azs-java-test-blob764967c99\",\"description\":\"an update\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "bee04f42-43ef-4499-a8ff-74a82ed78840", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob62005cea8')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob764967c99')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e07866e-46e6-41ab-939a-26856cf3fa33", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0e7dc416-b7e0-4350-88f4-139c718cee5a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "160", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8e07866e-46e6-41ab-939a-26856cf3fa33", + "request-id" : "0e7dc416-b7e0-4350-88f4-139c718cee5a", "StatusCode" : "412", - "Date" : "Fri, 02 Apr 2021 22:36:25 GMT", + "Date" : "Thu, 27 May 2021 21:14:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8e07866e-46e6-41ab-939a-26856cf3fa33", - "elapsed-time" : "6", + "client-request-id" : "0e7dc416-b7e0-4350-88f4-139c718cee5a", + "elapsed-time" : "7", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "8e07866e-46e6-41ab-939a-26856cf3fa33", + "x-ms-client-request-id" : "0e7dc416-b7e0-4350-88f4-139c718cee5a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob62005cea8')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob764967c99')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f4d6e73-bcf9-4161-bc4a-5e49f84ae704" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1f00b31d-d3e2-4a99-bab3-35ae3e957716" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4f4d6e73-bcf9-4161-bc4a-5e49f84ae704", - "elapsed-time" : "54", + "client-request-id" : "1f00b31d-d3e2-4a99-bab3-35ae3e957716", + "elapsed-time" : "19", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "4f4d6e73-bcf9-4161-bc4a-5e49f84ae704", + "request-id" : "1f00b31d-d3e2-4a99-bab3-35ae3e957716", "StatusCode" : "204", - "x-ms-client-request-id" : "4f4d6e73-bcf9-4161-bc4a-5e49f84ae704", - "Date" : "Fri, 02 Apr 2021 22:36:25 GMT" + "x-ms-client-request-id" : "1f00b31d-d3e2-4a99-bab3-35ae3e957716", + "Date" : "Thu, 27 May 2021 21:14:56 GMT" }, "Exception" : null } ], - "variables" : [ "azs-java-test-blob62005cea8" ] + "variables" : [ "azs-java-test-blob764967c99" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.updateDataSourceIfNotChangedSucceedsWhenResourceUnchanged.json b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.updateDataSourceIfNotChangedSucceedsWhenResourceUnchanged.json index 7a2722fe1ff9..4a8ce98b9a30 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.updateDataSourceIfNotChangedSucceedsWhenResourceUnchanged.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/DataSourceSyncTests.updateDataSourceIfNotChangedSucceedsWhenResourceUnchanged.json @@ -1,82 +1,82 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob513119e18')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob14039cafc')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e0a70d0b-4ac1-4010-991e-954212655e0b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4bc4d8fc-e6e7-44f5-b000-4b5ffa4af3e3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "422", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e0a70d0b-4ac1-4010-991e-954212655e0b", + "request-id" : "4bc4d8fc-e6e7-44f5-b000-4b5ffa4af3e3", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:27 GMT", + "Date" : "Thu, 27 May 2021 21:14:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C1697F4F\"", - "client-request-id" : "e0a70d0b-4ac1-4010-991e-954212655e0b", - "elapsed-time" : "40", + "ETag" : "W/\"0x8D921547BAFA98A\"", + "client-request-id" : "4bc4d8fc-e6e7-44f5-b000-4b5ffa4af3e3", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "422", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C1697F4F\\\"\",\"name\":\"azs-java-test-blob513119e18\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "e0a70d0b-4ac1-4010-991e-954212655e0b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547BAFA98A\\\"\",\"name\":\"azs-java-test-blob14039cafc\",\"description\":\"Some data source\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "4bc4d8fc-e6e7-44f5-b000-4b5ffa4af3e3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob513119e18')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-test-blob14039cafc')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob513119e18')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob14039cafc')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0b113954-fea0-40cd-80fe-be6cdf32a7dc", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b1ea311d-3fcd-46e1-9bc3-f7a313033336", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "415", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0b113954-fea0-40cd-80fe-be6cdf32a7dc", + "request-id" : "b1ea311d-3fcd-46e1-9bc3-f7a313033336", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:28 GMT", + "Date" : "Thu, 27 May 2021 21:14:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C17456A4\"", - "client-request-id" : "0b113954-fea0-40cd-80fe-be6cdf32a7dc", - "elapsed-time" : "56", + "ETag" : "W/\"0x8D921547BB79A40\"", + "client-request-id" : "b1ea311d-3fcd-46e1-9bc3-f7a313033336", + "elapsed-time" : "26", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "415", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C17456A4\\\"\",\"name\":\"azs-java-test-blob513119e18\",\"description\":\"an update\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "0b113954-fea0-40cd-80fe-be6cdf32a7dc", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D921547BB79A40\\\"\",\"name\":\"azs-java-test-blob14039cafc\",\"description\":\"an update\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"fakecontainer\",\"query\":\"/fakefolder/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "b1ea311d-3fcd-46e1-9bc3-f7a313033336", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob513119e18')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-test-blob14039cafc')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "810fa28a-f379-4b1c-858f-a7a6e699b1bc" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "46be3e53-8d14-4059-bdb7-cefb0e022f34" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "810fa28a-f379-4b1c-858f-a7a6e699b1bc", - "elapsed-time" : "50", + "client-request-id" : "46be3e53-8d14-4059-bdb7-cefb0e022f34", + "elapsed-time" : "16", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "810fa28a-f379-4b1c-858f-a7a6e699b1bc", + "request-id" : "46be3e53-8d14-4059-bdb7-cefb0e022f34", "StatusCode" : "204", - "x-ms-client-request-id" : "810fa28a-f379-4b1c-858f-a7a6e699b1bc", - "Date" : "Fri, 02 Apr 2021 22:36:28 GMT" + "x-ms-client-request-id" : "46be3e53-8d14-4059-bdb7-cefb0e022f34", + "Date" : "Thu, 27 May 2021 21:14:58 GMT" }, "Exception" : null } ], - "variables" : [ "azs-java-test-blob513119e18" ] + "variables" : [ "azs-java-test-blob14039cafc" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/FieldBuilderServiceTests.createIndexWithFieldBuilder.json b/sdk/search/azure-search-documents/src/test/resources/session-records/FieldBuilderServiceTests.createIndexWithFieldBuilder.json index 13bd9ed4e7fe..374baf0975a8 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/FieldBuilderServiceTests.createIndexWithFieldBuilder.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/FieldBuilderServiceTests.createIndexWithFieldBuilder.json @@ -1,131 +1,131 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e89d0cd2-77bd-4b31-9439-5c260e09ca7f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1296e9e6-c41e-49ce-9326-71d47bc032aa", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "213", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e89d0cd2-77bd-4b31-9439-5c260e09ca7f", + "request-id" : "1296e9e6-c41e-49ce-9326-71d47bc032aa", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:28 GMT", + "Date" : "Thu, 27 May 2021 21:14:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C1C25D23\"", - "client-request-id" : "e89d0cd2-77bd-4b31-9439-5c260e09ca7f", - "elapsed-time" : "49", + "ETag" : "W/\"0x8D921547BDFC2F5\"", + "client-request-id" : "1296e9e6-c41e-49ce-9326-71d47bc032aa", + "elapsed-time" : "17", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "213", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C1C25D23\\\"\",\"name\":\"fieldbuilder\",\"format\":\"solr\",\"synonyms\":\"hotel,motel\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "e89d0cd2-77bd-4b31-9439-5c260e09ca7f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D921547BDFC2F5\\\"\",\"name\":\"fieldbuilder\",\"format\":\"solr\",\"synonyms\":\"hotel,motel\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "1296e9e6-c41e-49ce-9326-71d47bc032aa", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('fieldbuilder')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('fieldbuilder')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4ad1fe17-d74e-4651-a308-6b6749eab742", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "aa14992d-a0b9-4517-81cf-2ad9a2cd886f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "5667", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4ad1fe17-d74e-4651-a308-6b6749eab742", + "request-id" : "aa14992d-a0b9-4517-81cf-2ad9a2cd886f", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:29 GMT", + "Date" : "Thu, 27 May 2021 21:15:00 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C270478D\"", - "client-request-id" : "4ad1fe17-d74e-4651-a308-6b6749eab742", - "elapsed-time" : "1083", + "ETag" : "W/\"0x8D921547CC766FE\"", + "client-request-id" : "aa14992d-a0b9-4517-81cf-2ad9a2cd886f", + "elapsed-time" : "1487", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6098", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C270478D\\\"\",\"name\":\"fieldbuilder0308828de2ef\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Tags\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"City\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"StateProvince\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Country\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[\"fieldbuilder\"]},{\"name\":\"PostalCode\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "4ad1fe17-d74e-4651-a308-6b6749eab742", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921547CC766FE\\\"\",\"name\":\"fieldbuilder205165f18893\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Tags\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"City\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"StateProvince\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Country\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[\"fieldbuilder\"]},{\"name\":\"PostalCode\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "aa14992d-a0b9-4517-81cf-2ad9a2cd886f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('fieldbuilder0308828de2ef')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('fieldbuilder205165f18893')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('fieldbuilder0308828de2ef')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('fieldbuilder205165f18893')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "74b132e7-b3c6-4482-9555-3beccb0bda71" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6efa7b8c-d25d-4da6-b237-0d5bbcff2896" }, "Response" : { + "content-length" : "5667", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "74b132e7-b3c6-4482-9555-3beccb0bda71", + "request-id" : "6efa7b8c-d25d-4da6-b237-0d5bbcff2896", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:29 GMT", + "Date" : "Thu, 27 May 2021 21:15:00 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C270478D\"", - "client-request-id" : "74b132e7-b3c6-4482-9555-3beccb0bda71", - "elapsed-time" : "52", + "ETag" : "W/\"0x8D921547CC766FE\"", + "client-request-id" : "6efa7b8c-d25d-4da6-b237-0d5bbcff2896", + "elapsed-time" : "23", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6098", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C270478D\\\"\",\"name\":\"fieldbuilder0308828de2ef\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Tags\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"City\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"StateProvince\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Country\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[\"fieldbuilder\"]},{\"name\":\"PostalCode\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "74b132e7-b3c6-4482-9555-3beccb0bda71", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921547CC766FE\\\"\",\"name\":\"fieldbuilder205165f18893\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Tags\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"City\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"StateProvince\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Country\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[\"fieldbuilder\"]},{\"name\":\"PostalCode\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "6efa7b8c-d25d-4da6-b237-0d5bbcff2896", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('fieldbuilder0308828de2ef')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('fieldbuilder205165f18893')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9be4beb-014b-4587-8d7c-fe4f8dcae835" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4f074d39-c973-4eeb-a7ed-385564536ea9" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f9be4beb-014b-4587-8d7c-fe4f8dcae835", - "elapsed-time" : "1398", + "client-request-id" : "4f074d39-c973-4eeb-a7ed-385564536ea9", + "elapsed-time" : "559", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "f9be4beb-014b-4587-8d7c-fe4f8dcae835", + "request-id" : "4f074d39-c973-4eeb-a7ed-385564536ea9", "StatusCode" : "204", - "x-ms-client-request-id" : "f9be4beb-014b-4587-8d7c-fe4f8dcae835", - "Date" : "Fri, 02 Apr 2021 22:36:31 GMT" + "x-ms-client-request-id" : "4f074d39-c973-4eeb-a7ed-385564536ea9", + "Date" : "Thu, 27 May 2021 21:15:00 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('fieldbuilder')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('fieldbuilder')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e2e3b6d-1eb2-4dc0-b722-6a44edd803a2" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "99eba013-6af7-4abf-b1f7-f84c68235112" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7e2e3b6d-1eb2-4dc0-b722-6a44edd803a2", - "elapsed-time" : "57", + "client-request-id" : "99eba013-6af7-4abf-b1f7-f84c68235112", + "elapsed-time" : "18", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "7e2e3b6d-1eb2-4dc0-b722-6a44edd803a2", + "request-id" : "99eba013-6af7-4abf-b1f7-f84c68235112", "StatusCode" : "204", - "x-ms-client-request-id" : "7e2e3b6d-1eb2-4dc0-b722-6a44edd803a2", - "Date" : "Fri, 02 Apr 2021 22:36:30 GMT" + "x-ms-client-request-id" : "99eba013-6af7-4abf-b1f7-f84c68235112", + "Date" : "Thu, 27 May 2021 21:15:00 GMT" }, "Exception" : null } ], - "variables" : [ "fieldbuilder0308828de2ef" ] + "variables" : [ "fieldbuilder205165f18893" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/GeographyPointTests.canRoundTripGeographyPoints.json b/sdk/search/azure-search-documents/src/test/resources/session-records/GeographyPointTests.canRoundTripGeographyPoints.json index 1ab5788d4fe8..66687cfd13dc 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/GeographyPointTests.canRoundTripGeographyPoints.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/GeographyPointTests.canRoundTripGeographyPoints.json @@ -1,131 +1,131 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('azs-java-shared-geography-point-index')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azs-java-shared-geography-point-index')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd0e3880-272f-44a5-ab1e-e5068d1802b2" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f8c97ee4-5db7-4774-9e62-7d95c06e8c11" }, "Response" : { + "content-length" : "172", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "dd0e3880-272f-44a5-ab1e-e5068d1802b2", + "request-id" : "f8c97ee4-5db7-4774-9e62-7d95c06e8c11", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:36 GMT", + "Date" : "Thu, 27 May 2021 21:07:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "dd0e3880-272f-44a5-ab1e-e5068d1802b2", - "elapsed-time" : "22", + "client-request-id" : "f8c97ee4-5db7-4774-9e62-7d95c06e8c11", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "172", "Body" : "{\"id\":\"1\",\"geography_point\":{\"type\":\"Point\",\"coordinates\":[-122.348616,47.622151],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"description\":\"Tourist location\"}", - "x-ms-client-request-id" : "dd0e3880-272f-44a5-ab1e-e5068d1802b2", + "x-ms-client-request-id" : "f8c97ee4-5db7-4774-9e62-7d95c06e8c11", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('azs-java-shared-geography-point-index')//docs('2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azs-java-shared-geography-point-index')/docs('2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cbdef4ba-4591-45b8-a527-a5117de732b5" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b7d3ab4b-35f9-47ec-8d66-d2ca2015f6ee" }, "Response" : { + "content-length" : "172", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "cbdef4ba-4591-45b8-a527-a5117de732b5", + "request-id" : "b7d3ab4b-35f9-47ec-8d66-d2ca2015f6ee", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:36 GMT", + "Date" : "Thu, 27 May 2021 21:07:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "cbdef4ba-4591-45b8-a527-a5117de732b5", + "client-request-id" : "b7d3ab4b-35f9-47ec-8d66-d2ca2015f6ee", "elapsed-time" : "7", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "172", "Body" : "{\"id\":\"2\",\"geography_point\":{\"type\":\"Point\",\"coordinates\":[-122.340529,47.608564],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"description\":\"Tourist location\"}", - "x-ms-client-request-id" : "cbdef4ba-4591-45b8-a527-a5117de732b5", + "x-ms-client-request-id" : "b7d3ab4b-35f9-47ec-8d66-d2ca2015f6ee", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('azs-java-shared-geography-point-index')//docs('3')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azs-java-shared-geography-point-index')/docs('3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "01201f60-cba1-41e8-8e4f-8bb3799a7cfa" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d9b1982e-9215-4ac1-bf6f-7e9f0f69aaac" }, "Response" : { + "content-length" : "172", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "01201f60-cba1-41e8-8e4f-8bb3799a7cfa", + "request-id" : "d9b1982e-9215-4ac1-bf6f-7e9f0f69aaac", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:36 GMT", + "Date" : "Thu, 27 May 2021 21:07:03 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "01201f60-cba1-41e8-8e4f-8bb3799a7cfa", - "elapsed-time" : "5", + "client-request-id" : "d9b1982e-9215-4ac1-bf6f-7e9f0f69aaac", + "elapsed-time" : "4", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "172", "Body" : "{\"id\":\"3\",\"geography_point\":{\"type\":\"Point\",\"coordinates\":[-121.736604,46.786549],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"description\":\"Tourist location\"}", - "x-ms-client-request-id" : "01201f60-cba1-41e8-8e4f-8bb3799a7cfa", + "x-ms-client-request-id" : "d9b1982e-9215-4ac1-bf6f-7e9f0f69aaac", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('azs-java-shared-geography-point-index')//docs('4')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azs-java-shared-geography-point-index')/docs('4')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b549748-2ce2-4839-ab93-8e094163290f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6103b0a4-a76c-4eb6-bee3-4398e83243be" }, "Response" : { + "content-length" : "171", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2b549748-2ce2-4839-ab93-8e094163290f", + "request-id" : "6103b0a4-a76c-4eb6-bee3-4398e83243be", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:36 GMT", + "Date" : "Thu, 27 May 2021 21:07:03 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2b549748-2ce2-4839-ab93-8e094163290f", - "elapsed-time" : "6", + "client-request-id" : "6103b0a4-a76c-4eb6-bee3-4398e83243be", + "elapsed-time" : "12", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "171", "Body" : "{\"id\":\"4\",\"geography_point\":{\"type\":\"Point\",\"coordinates\":[-73.985707,40.748521],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"description\":\"Tourist location\"}", - "x-ms-client-request-id" : "2b549748-2ce2-4839-ab93-8e094163290f", + "x-ms-client-request-id" : "6103b0a4-a76c-4eb6-bee3-4398e83243be", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azs-java-shared-geography-point-index')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azs-java-shared-geography-point-index')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "da507f93-59b6-4e47-b1d2-c224ff5ba9ba", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1ea23508-3fc3-479a-bd8d-6ab80ba8a3d2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "810", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "da507f93-59b6-4e47-b1d2-c224ff5ba9ba", + "request-id" : "1ea23508-3fc3-479a-bd8d-6ab80ba8a3d2", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:36 GMT", + "Date" : "Thu, 27 May 2021 21:07:03 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "da507f93-59b6-4e47-b1d2-c224ff5ba9ba", - "elapsed-time" : "24", + "client-request-id" : "1ea23508-3fc3-479a-bd8d-6ab80ba8a3d2", + "elapsed-time" : "28", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "810", "Body" : "{\"value\":[{\"@search.score\":0.18906453,\"id\":\"1\",\"geography_point\":{\"type\":\"Point\",\"coordinates\":[-122.348616,47.622151],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"description\":\"Tourist location\"},{\"@search.score\":0.18906453,\"id\":\"2\",\"geography_point\":{\"type\":\"Point\",\"coordinates\":[-122.340529,47.608564],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"description\":\"Tourist location\"},{\"@search.score\":0.18906453,\"id\":\"3\",\"geography_point\":{\"type\":\"Point\",\"coordinates\":[-121.736604,46.786549],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"description\":\"Tourist location\"},{\"@search.score\":0.18906453,\"id\":\"4\",\"geography_point\":{\"type\":\"Point\",\"coordinates\":[-73.985707,40.748521],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"description\":\"Tourist location\"}]}", - "x-ms-client-request-id" : "da507f93-59b6-4e47-b1d2-c224ff5ba9ba", + "x-ms-client-request-id" : "1ea23508-3fc3-479a-bd8d-6ab80ba8a3d2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canAddSynonymFieldProperty.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canAddSynonymFieldProperty.json index 0b72fd127c8e..91d28e2c951e 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canAddSynonymFieldProperty.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canAddSynonymFieldProperty.json @@ -1,104 +1,104 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "898fd579-ec26-4abe-a10b-013bc689d5d2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "aa93e23b-84ed-4df1-85e5-43c877fe36d2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "222", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "898fd579-ec26-4abe-a10b-013bc689d5d2", + "request-id" : "aa93e23b-84ed-4df1-85e5-43c877fe36d2", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:36 GMT", + "Date" : "Thu, 27 May 2021 21:15:04 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C6821886\"", - "client-request-id" : "898fd579-ec26-4abe-a10b-013bc689d5d2", - "elapsed-time" : "68", + "ETag" : "W/\"0x8D921547FE7D653\"", + "client-request-id" : "aa93e23b-84ed-4df1-85e5-43c877fe36d2", + "elapsed-time" : "88", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "222", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C6821886\\\"\",\"name\":\"names70216988a7e83be8\",\"format\":\"solr\",\"synonyms\":\"hotel,motel\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "898fd579-ec26-4abe-a10b-013bc689d5d2", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D921547FE7D653\\\"\",\"name\":\"names44898c8ff939460e\",\"format\":\"solr\",\"synonyms\":\"hotel,motel\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "aa93e23b-84ed-4df1-85e5-43c877fe36d2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('names70216988a7e83be8')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('names44898c8ff939460e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f891f327-111d-414e-9471-bd33bd82331b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "44cbc6c2-23a0-4a68-bd5e-7058addca3c9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "867", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f891f327-111d-414e-9471-bd33bd82331b", + "request-id" : "44cbc6c2-23a0-4a68-bd5e-7058addca3c9", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:37 GMT", + "Date" : "Thu, 27 May 2021 21:15:06 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C72DDFCA\"", - "client-request-id" : "f891f327-111d-414e-9471-bd33bd82331b", - "elapsed-time" : "1109", + "ETag" : "W/\"0x8D9215480D520AD\"", + "client-request-id" : "44cbc6c2-23a0-4a68-bd5e-7058addca3c9", + "elapsed-time" : "1532", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "920", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C72DDFCA\\\"\",\"name\":\"hotels\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[\"names70216988a7e83be8\"]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "f891f327-111d-414e-9471-bd33bd82331b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215480D520AD\\\"\",\"name\":\"hotels\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[\"names44898c8ff939460e\"]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "44cbc6c2-23a0-4a68-bd5e-7058addca3c9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('names70216988a7e83be8')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('names44898c8ff939460e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bcf88237-72f9-4510-a510-b68b3f5d3ac3" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "01e523e1-2a66-4514-bff8-35eba01eac1f" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "bcf88237-72f9-4510-a510-b68b3f5d3ac3", - "elapsed-time" : "43", + "client-request-id" : "01e523e1-2a66-4514-bff8-35eba01eac1f", + "elapsed-time" : "10", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "bcf88237-72f9-4510-a510-b68b3f5d3ac3", + "request-id" : "01e523e1-2a66-4514-bff8-35eba01eac1f", "StatusCode" : "204", - "x-ms-client-request-id" : "bcf88237-72f9-4510-a510-b68b3f5d3ac3", - "Date" : "Fri, 02 Apr 2021 22:36:37 GMT" + "x-ms-client-request-id" : "01e523e1-2a66-4514-bff8-35eba01eac1f", + "Date" : "Thu, 27 May 2021 21:15:06 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c45eaa4b-e0e7-45b7-9970-4ec93d49ea07" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9c084c6a-99a6-4cff-be9c-2a520c3aaea2" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c45eaa4b-e0e7-45b7-9970-4ec93d49ea07", - "elapsed-time" : "1289", + "client-request-id" : "9c084c6a-99a6-4cff-be9c-2a520c3aaea2", + "elapsed-time" : "500", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "c45eaa4b-e0e7-45b7-9970-4ec93d49ea07", + "request-id" : "9c084c6a-99a6-4cff-be9c-2a520c3aaea2", "StatusCode" : "204", - "x-ms-client-request-id" : "c45eaa4b-e0e7-45b7-9970-4ec93d49ea07", - "Date" : "Fri, 02 Apr 2021 22:36:38 GMT" + "x-ms-client-request-id" : "9c084c6a-99a6-4cff-be9c-2a520c3aaea2", + "Date" : "Thu, 27 May 2021 21:15:07 GMT" }, "Exception" : null } ], - "variables" : [ "names70216988a7e83be8" ] + "variables" : [ "names44898c8ff939460e" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canCreateAndDeleteIndex.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canCreateAndDeleteIndex.json index 02414e02d061..ca5ce694209a 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canCreateAndDeleteIndex.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canCreateAndDeleteIndex.json @@ -1,81 +1,81 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a668eecd-f524-4aec-a014-ea6c3acfd068", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9e16be6d-1cc2-4079-ba03-5e4cb33c9467", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8298", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a668eecd-f524-4aec-a014-ea6c3acfd068", + "request-id" : "9e16be6d-1cc2-4079-ba03-5e4cb33c9467", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:37:46 GMT", + "Date" : "Thu, 27 May 2021 21:16:06 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627EFDAAFB6\"", - "client-request-id" : "a668eecd-f524-4aec-a014-ea6c3acfd068", - "elapsed-time" : "1104", + "ETag" : "W/\"0x8D92154A43A4AA3\"", + "client-request-id" : "9e16be6d-1cc2-4079-ba03-5e4cb33c9467", + "elapsed-time" : "1491", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8801", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627EFDAAFB6\\\"\",\"name\":\"hotelscancreateanddeleteindexf26432966cbb71212deb4\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "a668eecd-f524-4aec-a014-ea6c3acfd068", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154A43A4AA3\\\"\",\"name\":\"hotelscancreateanddeleteindex3ea09880a58b2cbd12194\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "9e16be6d-1cc2-4079-ba03-5e4cb33c9467", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancreateanddeleteindexf26432966cbb71212deb4')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancreateanddeleteindex3ea09880a58b2cbd12194')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateanddeleteindexf26432966cbb71212deb4')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateanddeleteindex3ea09880a58b2cbd12194')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a33d7e15-8d08-4e75-b484-477155adde52" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bfe0bfc3-ef1e-4ab9-b022-2c2a1f838305" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a33d7e15-8d08-4e75-b484-477155adde52", - "elapsed-time" : "555", + "client-request-id" : "bfe0bfc3-ef1e-4ab9-b022-2c2a1f838305", + "elapsed-time" : "512", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "a33d7e15-8d08-4e75-b484-477155adde52", + "request-id" : "bfe0bfc3-ef1e-4ab9-b022-2c2a1f838305", "StatusCode" : "204", - "x-ms-client-request-id" : "a33d7e15-8d08-4e75-b484-477155adde52", - "Date" : "Fri, 02 Apr 2021 22:37:46 GMT" + "x-ms-client-request-id" : "bfe0bfc3-ef1e-4ab9-b022-2c2a1f838305", + "Date" : "Thu, 27 May 2021 21:16:06 GMT" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateanddeleteindexf26432966cbb71212deb4')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateanddeleteindex3ea09880a58b2cbd12194')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f8dfa35-b7ef-4ee4-99bb-908fc1d3b1e3" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5fcfbc7b-858b-4eb6-b2a2-e1ef8d09e1dc" }, "Response" : { + "content-length" : "151", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1f8dfa35-b7ef-4ee4-99bb-908fc1d3b1e3", + "request-id" : "5fcfbc7b-858b-4eb6-b2a2-e1ef8d09e1dc", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:37:46 GMT", + "Date" : "Thu, 27 May 2021 21:16:06 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1f8dfa35-b7ef-4ee4-99bb-908fc1d3b1e3", - "elapsed-time" : "39", + "client-request-id" : "5fcfbc7b-858b-4eb6-b2a2-e1ef8d09e1dc", + "elapsed-time" : "16", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "151", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No index with the name 'hotelscancreateanddeleteindexf26432966cbb71212deb4' was found in the service 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No index with the name 'hotelscancreateanddeleteindex3ea09880a58b2cbd12194' was found in the service 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "1f8dfa35-b7ef-4ee4-99bb-908fc1d3b1e3", + "x-ms-client-request-id" : "5fcfbc7b-858b-4eb6-b2a2-e1ef8d09e1dc", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "hotelscancreateanddeleteindexf26432966cbb71212deb4" ] + "variables" : [ "hotelscancreateanddeleteindex3ea09880a58b2cbd12194" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canCreateAndGetIndexStats.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canCreateAndGetIndexStats.json index c2e1bb595c84..3d7d9580d87b 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canCreateAndGetIndexStats.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canCreateAndGetIndexStats.json @@ -1,108 +1,108 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateandgetindexstatsc7988690aa31ef6e3af9')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateandgetindexstatsf1032835e48266ac3c93')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3ac5256-6496-48ec-bf84-9ffe22d25e26", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "72adfd9e-f41e-4f9f-9731-e675ce29b606", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8299", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a3ac5256-6496-48ec-bf84-9ffe22d25e26", + "request-id" : "72adfd9e-f41e-4f9f-9731-e675ce29b606", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:37:05 GMT", + "Date" : "Thu, 27 May 2021 21:15:33 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627D800D8EE\"", - "client-request-id" : "a3ac5256-6496-48ec-bf84-9ffe22d25e26", - "elapsed-time" : "1117", + "ETag" : "W/\"0x8D92154904D017C\"", + "client-request-id" : "72adfd9e-f41e-4f9f-9731-e675ce29b606", + "elapsed-time" : "1539", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8802", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627D800D8EE\\\"\",\"name\":\"hotelscancreateandgetindexstatsc7988690aa31ef6e3af9\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "a3ac5256-6496-48ec-bf84-9ffe22d25e26", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154904D017C\\\"\",\"name\":\"hotelscancreateandgetindexstatsf1032835e48266ac3c93\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "72adfd9e-f41e-4f9f-9731-e675ce29b606", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancreateandgetindexstatsc7988690aa31ef6e3af9')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancreateandgetindexstatsf1032835e48266ac3c93')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateandgetindexstatsc7988690aa31ef6e3af9')/search.stats?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateandgetindexstatsf1032835e48266ac3c93')/search.stats?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "fe308c8d-0463-4d86-acef-beee10b2f107" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "72cc06c6-1398-4312-945b-f7b964ed37b8" }, "Response" : { + "content-length" : "156", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "fe308c8d-0463-4d86-acef-beee10b2f107", + "request-id" : "72cc06c6-1398-4312-945b-f7b964ed37b8", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:37:05 GMT", + "Date" : "Thu, 27 May 2021 21:15:32 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "fe308c8d-0463-4d86-acef-beee10b2f107", - "elapsed-time" : "67", + "client-request-id" : "72cc06c6-1398-4312-945b-f7b964ed37b8", + "elapsed-time" : "16", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "164", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.IndexStatistics\",\"documentCount\":0,\"storageSize\":0}", - "x-ms-client-request-id" : "fe308c8d-0463-4d86-acef-beee10b2f107", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.IndexStatistics\",\"documentCount\":0,\"storageSize\":0}", + "x-ms-client-request-id" : "72cc06c6-1398-4312-945b-f7b964ed37b8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateandgetindexstatsc7988690aa31ef6e3af9')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateandgetindexstatsf1032835e48266ac3c93')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "79478f3a-b1c6-4bdf-8dcb-c4fb41d2cb4e" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "029df0f3-db01-4fa6-bd43-460cbda5a6ab" }, "Response" : { + "content-length" : "92", "throttle-reason" : "rateLimitExceeded", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "79478f3a-b1c6-4bdf-8dcb-c4fb41d2cb4e", + "request-id" : "029df0f3-db01-4fa6-bd43-460cbda5a6ab", "StatusCode" : "503", - "Date" : "Fri, 02 Apr 2021 22:37:11 GMT", + "Date" : "Thu, 27 May 2021 21:15:33 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "79478f3a-b1c6-4bdf-8dcb-c4fb41d2cb4e", - "elapsed-time" : "6016", + "client-request-id" : "029df0f3-db01-4fa6-bd43-460cbda5a6ab", + "elapsed-time" : "663", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "92", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"You are sending too many requests. Please try again later.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "79478f3a-b1c6-4bdf-8dcb-c4fb41d2cb4e", + "x-ms-client-request-id" : "029df0f3-db01-4fa6-bd43-460cbda5a6ab", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateandgetindexstatsc7988690aa31ef6e3af9')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateandgetindexstatsf1032835e48266ac3c93')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "79478f3a-b1c6-4bdf-8dcb-c4fb41d2cb4e" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "029df0f3-db01-4fa6-bd43-460cbda5a6ab" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "79478f3a-b1c6-4bdf-8dcb-c4fb41d2cb4e", - "elapsed-time" : "519", + "client-request-id" : "029df0f3-db01-4fa6-bd43-460cbda5a6ab", + "elapsed-time" : "543", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "79478f3a-b1c6-4bdf-8dcb-c4fb41d2cb4e", + "request-id" : "029df0f3-db01-4fa6-bd43-460cbda5a6ab", "StatusCode" : "204", - "x-ms-client-request-id" : "79478f3a-b1c6-4bdf-8dcb-c4fb41d2cb4e", - "Date" : "Fri, 02 Apr 2021 22:37:22 GMT" + "x-ms-client-request-id" : "029df0f3-db01-4fa6-bd43-460cbda5a6ab", + "Date" : "Thu, 27 May 2021 21:15:44 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscancreateandgetindexstatsc7988690aa31ef6e3af9" ] + "variables" : [ "hotelscancreateandgetindexstatsf1032835e48266ac3c93" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canCreateAndGetIndexStatsWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canCreateAndGetIndexStatsWithResponse.json index 4ea6a95515a7..b83e5922eece 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canCreateAndGetIndexStatsWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canCreateAndGetIndexStatsWithResponse.json @@ -1,80 +1,80 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateandgetindexstatswithresponsefcc02300b40a37')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateandgetindexstatswithresponseb2208519ccc0b4')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2dea7e41-a507-4e92-8bc3-f43f6dbc813b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a6642e41-be4d-47f6-8c32-d53f1bc90ab1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8305", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2dea7e41-a507-4e92-8bc3-f43f6dbc813b", + "request-id" : "a6642e41-be4d-47f6-8c32-d53f1bc90ab1", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:10 GMT", + "Date" : "Thu, 27 May 2021 21:16:44 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627FF107AC2\"", - "client-request-id" : "2dea7e41-a507-4e92-8bc3-f43f6dbc813b", - "elapsed-time" : "1152", + "ETag" : "W/\"0x8D92154BAC7BF40\"", + "client-request-id" : "a6642e41-be4d-47f6-8c32-d53f1bc90ab1", + "elapsed-time" : "4285", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8808", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627FF107AC2\\\"\",\"name\":\"hotelscancreateandgetindexstatswithresponsefcc02300b40a37\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "2dea7e41-a507-4e92-8bc3-f43f6dbc813b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154BAC7BF40\\\"\",\"name\":\"hotelscancreateandgetindexstatswithresponseb2208519ccc0b4\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "a6642e41-be4d-47f6-8c32-d53f1bc90ab1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancreateandgetindexstatswithresponsefcc02300b40a37')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancreateandgetindexstatswithresponseb2208519ccc0b4')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateandgetindexstatswithresponsefcc02300b40a37')/search.stats?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateandgetindexstatswithresponseb2208519ccc0b4')/search.stats?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "db059499-a97b-424d-a6b4-1052af7bc721" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "73b4ee3b-0501-4d73-b3e9-f7b28d9dabf5" }, "Response" : { + "content-length" : "156", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "db059499-a97b-424d-a6b4-1052af7bc721", + "request-id" : "73b4ee3b-0501-4d73-b3e9-f7b28d9dabf5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:38:11 GMT", + "Date" : "Thu, 27 May 2021 21:16:44 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "db059499-a97b-424d-a6b4-1052af7bc721", - "elapsed-time" : "25", + "client-request-id" : "73b4ee3b-0501-4d73-b3e9-f7b28d9dabf5", + "elapsed-time" : "20", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "164", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.IndexStatistics\",\"documentCount\":0,\"storageSize\":0}", - "x-ms-client-request-id" : "db059499-a97b-424d-a6b4-1052af7bc721", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.IndexStatistics\",\"documentCount\":0,\"storageSize\":0}", + "x-ms-client-request-id" : "73b4ee3b-0501-4d73-b3e9-f7b28d9dabf5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateandgetindexstatswithresponsefcc02300b40a37')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancreateandgetindexstatswithresponseb2208519ccc0b4')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7ee4909-4fe6-43ad-872c-91f77a1d5f2f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6f455c4c-6ad6-4e6b-8a57-44e589a175b5" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f7ee4909-4fe6-43ad-872c-91f77a1d5f2f", - "elapsed-time" : "1409", + "client-request-id" : "6f455c4c-6ad6-4e6b-8a57-44e589a175b5", + "elapsed-time" : "555", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "f7ee4909-4fe6-43ad-872c-91f77a1d5f2f", + "request-id" : "6f455c4c-6ad6-4e6b-8a57-44e589a175b5", "StatusCode" : "204", - "x-ms-client-request-id" : "f7ee4909-4fe6-43ad-872c-91f77a1d5f2f", - "Date" : "Fri, 02 Apr 2021 22:38:12 GMT" + "x-ms-client-request-id" : "6f455c4c-6ad6-4e6b-8a57-44e589a175b5", + "Date" : "Thu, 27 May 2021 21:16:44 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscancreateandgetindexstatswithresponsefcc02300b40a37" ] + "variables" : [ "hotelscancreateandgetindexstatswithresponseb2208519ccc0b4" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canCreateAndListIndexes.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canCreateAndListIndexes.json index 82fbe12dd0d1..9ab79bf9e4f2 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canCreateAndListIndexes.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canCreateAndListIndexes.json @@ -1,130 +1,130 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "31cbc511-3379-4787-92a6-3b3410f0bd9e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "cb60572f-5546-45a6-858e-e60e3921e806", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8299", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "31cbc511-3379-4787-92a6-3b3410f0bd9e", + "request-id" : "cb60572f-5546-45a6-858e-e60e3921e806", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:57 GMT", + "Date" : "Thu, 27 May 2021 21:15:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627D3329BFA\"", - "client-request-id" : "31cbc511-3379-4787-92a6-3b3410f0bd9e", - "elapsed-time" : "1111", + "ETag" : "W/\"0x8D921548C3DE7FF\"", + "client-request-id" : "cb60572f-5546-45a6-858e-e60e3921e806", + "elapsed-time" : "1471", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8802", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627D3329BFA\\\"\",\"name\":\"ahotelscancreateandlistindexesb12286620a4d067f10534\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "31cbc511-3379-4787-92a6-3b3410f0bd9e", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921548C3DE7FF\\\"\",\"name\":\"ahotelscancreateandlistindexescfa266573e483aa09ada4\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "cb60572f-5546-45a6-858e-e60e3921e806", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('ahotelscancreateandlistindexesb12286620a4d067f10534')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('ahotelscancreateandlistindexescfa266573e483aa09ada4')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "637e73a7-8862-4299-9a02-d2939032171d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "21a95201-e19e-4ab9-91af-6f7d96423cb3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8299", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "637e73a7-8862-4299-9a02-d2939032171d", + "request-id" : "21a95201-e19e-4ab9-91af-6f7d96423cb3", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:59 GMT", + "Date" : "Thu, 27 May 2021 21:15:27 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627D45072C7\"", - "client-request-id" : "637e73a7-8862-4299-9a02-d2939032171d", - "elapsed-time" : "1826", + "ETag" : "W/\"0x8D921548D2EB566\"", + "client-request-id" : "21a95201-e19e-4ab9-91af-6f7d96423cb3", + "elapsed-time" : "1534", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8802", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627D45072C7\\\"\",\"name\":\"bhotelscancreateandlistindexesb1288774e144279126334\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "637e73a7-8862-4299-9a02-d2939032171d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921548D2EB566\\\"\",\"name\":\"bhotelscancreateandlistindexescfa95187ce531154f7554\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "21a95201-e19e-4ab9-91af-6f7d96423cb3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('bhotelscancreateandlistindexesb1288774e144279126334')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('bhotelscancreateandlistindexescfa95187ce531154f7554')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3aa62a66-0573-4432-84de-9cbbf4ff2165" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8f484729-c461-406e-8345-f913ed20b1c7" }, "Response" : { + "content-length" : "16517", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3aa62a66-0573-4432-84de-9cbbf4ff2165", + "request-id" : "8f484729-c461-406e-8345-f913ed20b1c7", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:59 GMT", + "Date" : "Thu, 27 May 2021 21:15:28 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3aa62a66-0573-4432-84de-9cbbf4ff2165", - "elapsed-time" : "129", + "client-request-id" : "8f484729-c461-406e-8345-f913ed20b1c7", + "elapsed-time" : "99", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "17523", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes\",\"value\":[{\"@odata.etag\":\"\\\"0x8D8F627D3329BFA\\\"\",\"name\":\"ahotelscancreateandlistindexesb12286620a4d067f10534\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}},{\"@odata.etag\":\"\\\"0x8D8F627D45072C7\\\"\",\"name\":\"bhotelscancreateandlistindexesb1288774e144279126334\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}]}", - "x-ms-client-request-id" : "3aa62a66-0573-4432-84de-9cbbf4ff2165", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes\",\"value\":[{\"@odata.etag\":\"\\\"0x8D921548C3DE7FF\\\"\",\"name\":\"ahotelscancreateandlistindexescfa266573e483aa09ada4\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}},{\"@odata.etag\":\"\\\"0x8D921548D2EB566\\\"\",\"name\":\"bhotelscancreateandlistindexescfa95187ce531154f7554\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}]}", + "x-ms-client-request-id" : "8f484729-c461-406e-8345-f913ed20b1c7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('ahotelscancreateandlistindexesb12286620a4d067f10534')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('ahotelscancreateandlistindexescfa266573e483aa09ada4')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "64141170-397a-42a8-beb1-627a008346bd" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c5098260-ffd9-496f-8988-f30244c06689" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "64141170-397a-42a8-beb1-627a008346bd", - "elapsed-time" : "1250", + "client-request-id" : "c5098260-ffd9-496f-8988-f30244c06689", + "elapsed-time" : "531", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "64141170-397a-42a8-beb1-627a008346bd", + "request-id" : "c5098260-ffd9-496f-8988-f30244c06689", "StatusCode" : "204", - "x-ms-client-request-id" : "64141170-397a-42a8-beb1-627a008346bd", - "Date" : "Fri, 02 Apr 2021 22:37:00 GMT" + "x-ms-client-request-id" : "c5098260-ffd9-496f-8988-f30244c06689", + "Date" : "Thu, 27 May 2021 21:15:27 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('bhotelscancreateandlistindexesb1288774e144279126334')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('bhotelscancreateandlistindexescfa95187ce531154f7554')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b11939a3-abbf-427e-b95c-6bce39640b6c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b0ba8503-ffa4-4f94-b910-346755e7fb6a" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b11939a3-abbf-427e-b95c-6bce39640b6c", - "elapsed-time" : "537", + "client-request-id" : "b0ba8503-ffa4-4f94-b910-346755e7fb6a", + "elapsed-time" : "500", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "b11939a3-abbf-427e-b95c-6bce39640b6c", + "request-id" : "b0ba8503-ffa4-4f94-b910-346755e7fb6a", "StatusCode" : "204", - "x-ms-client-request-id" : "b11939a3-abbf-427e-b95c-6bce39640b6c", - "Date" : "Fri, 02 Apr 2021 22:37:01 GMT" + "x-ms-client-request-id" : "b0ba8503-ffa4-4f94-b910-346755e7fb6a", + "Date" : "Thu, 27 May 2021 21:15:29 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscancreateandlistindexesb12286620a4d067f10534", "hotelscancreateandlistindexesb1288774e144279126334" ] + "variables" : [ "hotelscancreateandlistindexescfa266573e483aa09ada4", "hotelscancreateandlistindexescfa95187ce531154f7554" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canListIndexesWithSelectedField.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canListIndexesWithSelectedField.json index bc691a234819..1c01e222b2b2 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canListIndexesWithSelectedField.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canListIndexesWithSelectedField.json @@ -1,130 +1,158 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8171e4b4-dd0d-4c40-80f5-7563ee8e2136", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8c727575-a80f-4023-9d30-9fffe29ad150", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8303", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8171e4b4-dd0d-4c40-80f5-7563ee8e2136", + "request-id" : "8c727575-a80f-4023-9d30-9fffe29ad150", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:37:47 GMT", + "Date" : "Thu, 27 May 2021 21:16:08 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627F0ED60EB\"", - "client-request-id" : "8171e4b4-dd0d-4c40-80f5-7563ee8e2136", - "elapsed-time" : "1089", + "ETag" : "W/\"0x8D92154A57EEC9B\"", + "client-request-id" : "8c727575-a80f-4023-9d30-9fffe29ad150", + "elapsed-time" : "1498", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8806", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627F0ED60EB\\\"\",\"name\":\"ahotelscanlistindexeswithselectedfieldeb539653736f4c594\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "8171e4b4-dd0d-4c40-80f5-7563ee8e2136", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154A57EEC9B\\\"\",\"name\":\"ahotelscanlistindexeswithselectedfieldcdb052678d34eec7f\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "8c727575-a80f-4023-9d30-9fffe29ad150", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('ahotelscanlistindexeswithselectedfieldeb539653736f4c594')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('ahotelscanlistindexeswithselectedfieldcdb052678d34eec7f')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "68ae6a78-ef33-4b79-bca1-8b8d01dde1ba", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "99620781-a7f9-4ed8-b15a-dc18fe74049d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8303", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "68ae6a78-ef33-4b79-bca1-8b8d01dde1ba", + "request-id" : "99620781-a7f9-4ed8-b15a-dc18fe74049d", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:37:49 GMT", + "Date" : "Thu, 27 May 2021 21:16:10 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627F216D26E\"", - "client-request-id" : "68ae6a78-ef33-4b79-bca1-8b8d01dde1ba", - "elapsed-time" : "1917", + "ETag" : "W/\"0x8D92154A67279B3\"", + "client-request-id" : "99620781-a7f9-4ed8-b15a-dc18fe74049d", + "elapsed-time" : "1558", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8806", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627F216D26E\\\"\",\"name\":\"bhotelscanlistindexeswithselectedfieldeb530510a4507d8e9\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "68ae6a78-ef33-4b79-bca1-8b8d01dde1ba", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154A67279B3\\\"\",\"name\":\"bhotelscanlistindexeswithselectedfieldcdb19500ef737dde9\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "99620781-a7f9-4ed8-b15a-dc18fe74049d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('bhotelscanlistindexeswithselectedfieldeb530510a4507d8e9')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('bhotelscanlistindexeswithselectedfieldcdb19500ef737dde9')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes?$select=name&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?$select=name&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6e415ec7-8f78-4d54-bb0e-b5ca24e019ae" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "aa7b6a58-c655-49b9-a5f0-b7a8b86323c5" }, "Response" : { + "content-length" : "229", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6e415ec7-8f78-4d54-bb0e-b5ca24e019ae", + "request-id" : "aa7b6a58-c655-49b9-a5f0-b7a8b86323c5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:37:49 GMT", + "Date" : "Thu, 27 May 2021 21:16:10 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6e415ec7-8f78-4d54-bb0e-b5ca24e019ae", - "elapsed-time" : "42", + "client-request-id" : "aa7b6a58-c655-49b9-a5f0-b7a8b86323c5", + "elapsed-time" : "21", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "229", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes(name)\",\"value\":[{\"name\":\"ahotelscanlistindexeswithselectedfieldeb539653736f4c594\"},{\"name\":\"bhotelscanlistindexeswithselectedfieldeb530510a4507d8e9\"}]}", - "x-ms-client-request-id" : "6e415ec7-8f78-4d54-bb0e-b5ca24e019ae", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes(name)\",\"value\":[{\"name\":\"ahotelscanlistindexeswithselectedfieldcdb052678d34eec7f\"},{\"name\":\"bhotelscanlistindexeswithselectedfieldcdb19500ef737dde9\"}]}", + "x-ms-client-request-id" : "aa7b6a58-c655-49b9-a5f0-b7a8b86323c5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('ahotelscanlistindexeswithselectedfieldeb539653736f4c594')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('ahotelscanlistindexeswithselectedfieldcdb052678d34eec7f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "83f6d76a-a04c-47fd-b8b7-22ae235fad8b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6c06edb5-df95-4418-b9a6-f747f6281138" + }, + "Response" : { + "content-length" : "92", + "throttle-reason" : "rateLimitExceeded", + "Pragma" : "no-cache", + "retry-after" : "0", + "request-id" : "6c06edb5-df95-4418-b9a6-f747f6281138", + "StatusCode" : "503", + "Date" : "Thu, 27 May 2021 21:16:10 GMT", + "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", + "Cache-Control" : "no-cache", + "client-request-id" : "6c06edb5-df95-4418-b9a6-f747f6281138", + "elapsed-time" : "330", + "OData-Version" : "4.0", + "Expires" : "-1", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"You are sending too many requests. Please try again later.\"}}", + "Content-Language" : "en", + "x-ms-client-request-id" : "6c06edb5-df95-4418-b9a6-f747f6281138", + "Preference-Applied" : "odata.include-annotations=\"*\"", + "Content-Type" : "application/json; odata.metadata=minimal" + }, + "Exception" : null + }, { + "Method" : "DELETE", + "Uri" : "https://REDACTED.search.windows.net/indexes('ahotelscanlistindexeswithselectedfieldcdb052678d34eec7f')?api-version=2020-06-30", + "Headers" : { + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6c06edb5-df95-4418-b9a6-f747f6281138" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "83f6d76a-a04c-47fd-b8b7-22ae235fad8b", - "elapsed-time" : "1353", + "client-request-id" : "6c06edb5-df95-4418-b9a6-f747f6281138", + "elapsed-time" : "489", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "83f6d76a-a04c-47fd-b8b7-22ae235fad8b", + "request-id" : "6c06edb5-df95-4418-b9a6-f747f6281138", "StatusCode" : "204", - "x-ms-client-request-id" : "83f6d76a-a04c-47fd-b8b7-22ae235fad8b", - "Date" : "Fri, 02 Apr 2021 22:37:51 GMT" + "x-ms-client-request-id" : "6c06edb5-df95-4418-b9a6-f747f6281138", + "Date" : "Thu, 27 May 2021 21:16:20 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('bhotelscanlistindexeswithselectedfieldeb530510a4507d8e9')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('bhotelscanlistindexeswithselectedfieldcdb19500ef737dde9')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5ff75eee-c4ef-4ced-953a-9d3595053e0e" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3ffd51e1-ffc2-4a37-af0e-3941260bfe60" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5ff75eee-c4ef-4ced-953a-9d3595053e0e", - "elapsed-time" : "522", + "client-request-id" : "3ffd51e1-ffc2-4a37-af0e-3941260bfe60", + "elapsed-time" : "507", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "5ff75eee-c4ef-4ced-953a-9d3595053e0e", + "request-id" : "3ffd51e1-ffc2-4a37-af0e-3941260bfe60", "StatusCode" : "204", - "x-ms-client-request-id" : "5ff75eee-c4ef-4ced-953a-9d3595053e0e", - "Date" : "Fri, 02 Apr 2021 22:37:51 GMT" + "x-ms-client-request-id" : "3ffd51e1-ffc2-4a37-af0e-3941260bfe60", + "Date" : "Thu, 27 May 2021 21:16:21 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanlistindexeswithselectedfieldeb539653736f4c594", "hotelscanlistindexeswithselectedfieldeb530510a4507d8e9" ] + "variables" : [ "hotelscanlistindexeswithselectedfieldcdb052678d34eec7f", "hotelscanlistindexeswithselectedfieldcdb19500ef737dde9" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canUpdateIndexDefinition.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canUpdateIndexDefinition.json index 5797cb079a0c..4bf0fb2b50b1 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canUpdateIndexDefinition.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canUpdateIndexDefinition.json @@ -1,187 +1,187 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2c9df018-dad3-4f75-af48-71cc1d03318c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "de83e6bf-039f-47e5-a1d8-a40bbf43333e", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6694", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2c9df018-dad3-4f75-af48-71cc1d03318c", + "request-id" : "de83e6bf-039f-47e5-a1d8-a40bbf43333e", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:37:59 GMT", + "Date" : "Thu, 27 May 2021 21:16:29 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627F7DB59FA\"", - "client-request-id" : "2c9df018-dad3-4f75-af48-71cc1d03318c", - "elapsed-time" : "1113", + "ETag" : "W/\"0x8D92154B1E023D8\"", + "client-request-id" : "de83e6bf-039f-47e5-a1d8-a40bbf43333e", + "elapsed-time" : "1547", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "7197", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627F7DB59FA\\\"\",\"name\":\"hotelscanupdateindexdefinitione9648213cb286db17f4a4\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":{\"allowedOrigins\":[\"*\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "2c9df018-dad3-4f75-af48-71cc1d03318c", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154B1E023D8\\\"\",\"name\":\"hotelscanupdateindexdefinitionabc062686c148b0a2f774\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":{\"allowedOrigins\":[\"*\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "de83e6bf-039f-47e5-a1d8-a40bbf43333e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanupdateindexdefinitione9648213cb286db17f4a4')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanupdateindexdefinitionabc062686c148b0a2f774')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdateindexdefinitione9648213cb286db17f4a4')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdateindexdefinitionabc062686c148b0a2f774')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8667894-5066-420b-8744-d703a35c8208", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "64e3c263-5cf5-47d5-90e0-a40fa63142aa", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8299", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e8667894-5066-420b-8744-d703a35c8208", + "request-id" : "64e3c263-5cf5-47d5-90e0-a40fa63142aa", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:38:00 GMT", + "Date" : "Thu, 27 May 2021 21:16:29 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627F8793C41\"", - "client-request-id" : "e8667894-5066-420b-8744-d703a35c8208", - "elapsed-time" : "976", + "ETag" : "W/\"0x8D92154B1FEFC1A\"", + "client-request-id" : "64e3c263-5cf5-47d5-90e0-a40fa63142aa", + "elapsed-time" : "177", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8802", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627F8793C41\\\"\",\"name\":\"hotelscanupdateindexdefinitione9648213cb286db17f4a4\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "e8667894-5066-420b-8744-d703a35c8208", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154B1FEFC1A\\\"\",\"name\":\"hotelscanupdateindexdefinitionabc062686c148b0a2f774\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "64e3c263-5cf5-47d5-90e0-a40fa63142aa", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdateindexdefinitione9648213cb286db17f4a4')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdateindexdefinitionabc062686c148b0a2f774')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c6543318-0c11-4184-8712-ab11f3fa0555" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "50c24a87-55e6-4870-a5b4-12e9cdd6822b" }, "Response" : { + "content-length" : "8299", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c6543318-0c11-4184-8712-ab11f3fa0555", + "request-id" : "50c24a87-55e6-4870-a5b4-12e9cdd6822b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:38:00 GMT", + "Date" : "Thu, 27 May 2021 21:16:29 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627F8793C41\"", - "client-request-id" : "c6543318-0c11-4184-8712-ab11f3fa0555", - "elapsed-time" : "33", + "ETag" : "W/\"0x8D92154B1FEFC1A\"", + "client-request-id" : "50c24a87-55e6-4870-a5b4-12e9cdd6822b", + "elapsed-time" : "20", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8802", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627F8793C41\\\"\",\"name\":\"hotelscanupdateindexdefinitione9648213cb286db17f4a4\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "c6543318-0c11-4184-8712-ab11f3fa0555", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154B1FEFC1A\\\"\",\"name\":\"hotelscanupdateindexdefinitionabc062686c148b0a2f774\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "50c24a87-55e6-4870-a5b4-12e9cdd6822b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a12b8185-745a-42fb-8f17-6527be232d96", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2b52a419-385e-49f4-b91d-e00fe8c84297", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "222", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a12b8185-745a-42fb-8f17-6527be232d96", + "request-id" : "2b52a419-385e-49f4-b91d-e00fe8c84297", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:00 GMT", + "Date" : "Thu, 27 May 2021 21:16:29 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627F88C797F\"", - "client-request-id" : "a12b8185-745a-42fb-8f17-6527be232d96", - "elapsed-time" : "40", + "ETag" : "W/\"0x8D92154B2117605\"", + "client-request-id" : "2b52a419-385e-49f4-b91d-e00fe8c84297", + "elapsed-time" : "22", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "222", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F627F88C797F\\\"\",\"name\":\"names152171964b5ee6e1\",\"format\":\"solr\",\"synonyms\":\"hotel,motel\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "a12b8185-745a-42fb-8f17-6527be232d96", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D92154B2117605\\\"\",\"name\":\"names75713de2af3f4a01\",\"format\":\"solr\",\"synonyms\":\"hotel,motel\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "2b52a419-385e-49f4-b91d-e00fe8c84297", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('names152171964b5ee6e1')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('names75713de2af3f4a01')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdateindexdefinitione9648213cb286db17f4a4')?allowIndexDowntime=true&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdateindexdefinitionabc062686c148b0a2f774')?allowIndexDowntime=true&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bda4fab1-3545-46ce-8fed-b0ff372564bc", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d6248ef4-eef5-4395-ae7b-51729b142f1a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8550", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "bda4fab1-3545-46ce-8fed-b0ff372564bc", + "request-id" : "d6248ef4-eef5-4395-ae7b-51729b142f1a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:38:00 GMT", + "Date" : "Thu, 27 May 2021 21:16:29 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627F8F2A010\"", - "client-request-id" : "bda4fab1-3545-46ce-8fed-b0ff372564bc", - "elapsed-time" : "623", + "ETag" : "W/\"0x8D92154B26A2D7E\"", + "client-request-id" : "d6248ef4-eef5-4395-ae7b-51729b142f1a", + "elapsed-time" : "564", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "9071", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627F8F2A010\\\"\",\"name\":\"hotelscanupdateindexdefinitione9648213cb286db17f4a4\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":false,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":false,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"whitespace\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[\"names152171964b5ee6e1\"]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelWebsite\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "bda4fab1-3545-46ce-8fed-b0ff372564bc", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154B26A2D7E\\\"\",\"name\":\"hotelscanupdateindexdefinitionabc062686c148b0a2f774\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":false,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":false,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"whitespace\",\"analyzer\":null,\"synonymMaps\":[\"names75713de2af3f4a01\"]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelWebsite\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "d6248ef4-eef5-4395-ae7b-51729b142f1a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('names152171964b5ee6e1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('names75713de2af3f4a01')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "52fd6156-709b-447d-b2ad-499bbd418dff" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "877dc9b7-363b-404f-b748-4c7abb05fffb" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "52fd6156-709b-447d-b2ad-499bbd418dff", - "elapsed-time" : "78", + "client-request-id" : "877dc9b7-363b-404f-b748-4c7abb05fffb", + "elapsed-time" : "10", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "52fd6156-709b-447d-b2ad-499bbd418dff", + "request-id" : "877dc9b7-363b-404f-b748-4c7abb05fffb", "StatusCode" : "204", - "x-ms-client-request-id" : "52fd6156-709b-447d-b2ad-499bbd418dff", - "Date" : "Fri, 02 Apr 2021 22:38:01 GMT" + "x-ms-client-request-id" : "877dc9b7-363b-404f-b748-4c7abb05fffb", + "Date" : "Thu, 27 May 2021 21:16:29 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdateindexdefinitione9648213cb286db17f4a4')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdateindexdefinitionabc062686c148b0a2f774')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f43f0924-c7b5-4a72-8c22-1a06663ff8ad" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c72081bb-447a-4914-86e4-db760e2dfb36" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f43f0924-c7b5-4a72-8c22-1a06663ff8ad", - "elapsed-time" : "537", + "client-request-id" : "c72081bb-447a-4914-86e4-db760e2dfb36", + "elapsed-time" : "500", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "f43f0924-c7b5-4a72-8c22-1a06663ff8ad", + "request-id" : "c72081bb-447a-4914-86e4-db760e2dfb36", "StatusCode" : "204", - "x-ms-client-request-id" : "f43f0924-c7b5-4a72-8c22-1a06663ff8ad", - "Date" : "Fri, 02 Apr 2021 22:38:02 GMT" + "x-ms-client-request-id" : "c72081bb-447a-4914-86e4-db760e2dfb36", + "Date" : "Thu, 27 May 2021 21:16:30 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanupdateindexdefinitione9648213cb286db17f4a4", "names152171964b5ee6e1" ] + "variables" : [ "hotelscanupdateindexdefinitionabc062686c148b0a2f774", "names75713de2af3f4a01" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canUpdateSuggesterWithNewIndexFields.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canUpdateSuggesterWithNewIndexFields.json index 073f9ea1adc6..b4f2ac608f79 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canUpdateSuggesterWithNewIndexFields.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canUpdateSuggesterWithNewIndexFields.json @@ -1,109 +1,109 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "55cac5d5-54b5-427d-ae25-8b3b537cb9ee", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "cfe492b0-6c87-4e53-a28b-37e7ee7f6ef5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8305", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "55cac5d5-54b5-427d-ae25-8b3b537cb9ee", + "request-id" : "cfe492b0-6c87-4e53-a28b-37e7ee7f6ef5", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:54 GMT", + "Date" : "Thu, 27 May 2021 21:15:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627D15A7C87\"", - "client-request-id" : "55cac5d5-54b5-427d-ae25-8b3b537cb9ee", - "elapsed-time" : "1087", + "ETag" : "W/\"0x8D921548A9B848D\"", + "client-request-id" : "cfe492b0-6c87-4e53-a28b-37e7ee7f6ef5", + "elapsed-time" : "1615", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8808", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627D15A7C87\\\"\",\"name\":\"hotelscanupdatesuggesterwithnewindexfieldsa6094738732be96\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "55cac5d5-54b5-427d-ae25-8b3b537cb9ee", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921548A9B848D\\\"\",\"name\":\"hotelscanupdatesuggesterwithnewindexfields44101794490e555\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "cfe492b0-6c87-4e53-a28b-37e7ee7f6ef5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanupdatesuggesterwithnewindexfieldsa6094738732be96')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanupdatesuggesterwithnewindexfields44101794490e555')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdatesuggesterwithnewindexfieldsa6094738732be96')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdatesuggesterwithnewindexfields44101794490e555')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ebf2edc4-3702-4f25-a0ca-949e9d67867d" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bde41895-8e1e-4da9-8846-abca0d4db924" }, "Response" : { + "content-length" : "8305", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ebf2edc4-3702-4f25-a0ca-949e9d67867d", + "request-id" : "bde41895-8e1e-4da9-8846-abca0d4db924", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:54 GMT", + "Date" : "Thu, 27 May 2021 21:15:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627D15A7C87\"", - "client-request-id" : "ebf2edc4-3702-4f25-a0ca-949e9d67867d", - "elapsed-time" : "30", + "ETag" : "W/\"0x8D921548A9B848D\"", + "client-request-id" : "bde41895-8e1e-4da9-8846-abca0d4db924", + "elapsed-time" : "21", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8808", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627D15A7C87\\\"\",\"name\":\"hotelscanupdatesuggesterwithnewindexfieldsa6094738732be96\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "ebf2edc4-3702-4f25-a0ca-949e9d67867d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921548A9B848D\\\"\",\"name\":\"hotelscanupdatesuggesterwithnewindexfields44101794490e555\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "bde41895-8e1e-4da9-8846-abca0d4db924", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdatesuggesterwithnewindexfieldsa6094738732be96')?allowIndexDowntime=true&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdatesuggesterwithnewindexfields44101794490e555')?allowIndexDowntime=true&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c46b41f7-c994-4c33-9629-bb2deacc8016", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9916483e-800e-47c8-84ed-6e8ceaa7184d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8763", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c46b41f7-c994-4c33-9629-bb2deacc8016", + "request-id" : "9916483e-800e-47c8-84ed-6e8ceaa7184d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:55 GMT", + "Date" : "Thu, 27 May 2021 21:15:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627D22FA4F8\"", - "client-request-id" : "c46b41f7-c994-4c33-9629-bb2deacc8016", - "elapsed-time" : "1261", + "ETag" : "W/\"0x8D921548B0640AE\"", + "client-request-id" : "9916483e-800e-47c8-84ed-6e8ceaa7184d", + "elapsed-time" : "556", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "9302", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627D22FA4F8\\\"\",\"name\":\"hotelscanupdatesuggesterwithnewindexfieldsa6094738732be96\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelAmenities\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelRewards\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"Suggestion\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelAmenities\",\"HotelRewards\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "c46b41f7-c994-4c33-9629-bb2deacc8016", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921548B0640AE\\\"\",\"name\":\"hotelscanupdatesuggesterwithnewindexfields44101794490e555\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelAmenities\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelRewards\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"Suggestion\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelAmenities\",\"HotelRewards\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "9916483e-800e-47c8-84ed-6e8ceaa7184d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdatesuggesterwithnewindexfieldsa6094738732be96')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdatesuggesterwithnewindexfields44101794490e555')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7c16a9ce-31d8-40ca-98d2-cfeed11b9514" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "30a60076-1767-4801-91ba-2a9af1f1e470" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7c16a9ce-31d8-40ca-98d2-cfeed11b9514", - "elapsed-time" : "549", + "client-request-id" : "30a60076-1767-4801-91ba-2a9af1f1e470", + "elapsed-time" : "502", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "7c16a9ce-31d8-40ca-98d2-cfeed11b9514", + "request-id" : "30a60076-1767-4801-91ba-2a9af1f1e470", "StatusCode" : "204", - "x-ms-client-request-id" : "7c16a9ce-31d8-40ca-98d2-cfeed11b9514", - "Date" : "Fri, 02 Apr 2021 22:36:56 GMT" + "x-ms-client-request-id" : "30a60076-1767-4801-91ba-2a9af1f1e470", + "Date" : "Thu, 27 May 2021 21:15:24 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanupdatesuggesterwithnewindexfieldsa6094738732be96" ] + "variables" : [ "hotelscanupdatesuggesterwithnewindexfields44101794490e555" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canUpdateSynonymFieldProperty.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canUpdateSynonymFieldProperty.json index dc1d0dc1d9dc..483c3a7bccf0 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canUpdateSynonymFieldProperty.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.canUpdateSynonymFieldProperty.json @@ -1,159 +1,159 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6247faf7-5c22-4ab1-b5ab-86d015949030", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ab9033a5-79a0-4b5f-81a2-fa72facaf41f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "222", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6247faf7-5c22-4ab1-b5ab-86d015949030", + "request-id" : "ab9033a5-79a0-4b5f-81a2-fa72facaf41f", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:37:29 GMT", + "Date" : "Thu, 27 May 2021 21:15:49 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627E64D53C2\"", - "client-request-id" : "6247faf7-5c22-4ab1-b5ab-86d015949030", - "elapsed-time" : "54", + "ETag" : "W/\"0x8D921549AA3B1FC\"", + "client-request-id" : "ab9033a5-79a0-4b5f-81a2-fa72facaf41f", + "elapsed-time" : "18", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "222", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F627E64D53C2\\\"\",\"name\":\"names4207916327e5c75f\",\"format\":\"solr\",\"synonyms\":\"hotel,motel\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "6247faf7-5c22-4ab1-b5ab-86d015949030", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D921549AA3B1FC\\\"\",\"name\":\"names992133cea9d20887\",\"format\":\"solr\",\"synonyms\":\"hotel,motel\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "ab9033a5-79a0-4b5f-81a2-fa72facaf41f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('names4207916327e5c75f')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('names992133cea9d20887')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1ca60872-f463-448c-8038-f06f91ec7d11", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0e632334-b0b2-4b5d-a1ae-213b85e58ee0", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8324", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1ca60872-f463-448c-8038-f06f91ec7d11", + "request-id" : "0e632334-b0b2-4b5d-a1ae-213b85e58ee0", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:37:31 GMT", + "Date" : "Thu, 27 May 2021 21:15:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627E6FC28D8\"", - "client-request-id" : "1ca60872-f463-448c-8038-f06f91ec7d11", - "elapsed-time" : "1124", + "ETag" : "W/\"0x8D921549B9D5AA8\"", + "client-request-id" : "0e632334-b0b2-4b5d-a1ae-213b85e58ee0", + "elapsed-time" : "1617", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8827", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627E6FC28D8\\\"\",\"name\":\"hotelscanupdatesynonymfieldproperty13f46351eb903e685d\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[\"names4207916327e5c75f\"]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "1ca60872-f463-448c-8038-f06f91ec7d11", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921549B9D5AA8\\\"\",\"name\":\"hotelscanupdatesynonymfieldproperty1b8447850119025ae1\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[\"names992133cea9d20887\"]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "0e632334-b0b2-4b5d-a1ae-213b85e58ee0", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanupdatesynonymfieldproperty13f46351eb903e685d')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanupdatesynonymfieldproperty1b8447850119025ae1')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdatesynonymfieldproperty13f46351eb903e685d')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdatesynonymfieldproperty1b8447850119025ae1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "db9d6cb1-7a48-4ca4-8206-f220fa0b3e8f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0f874aac-98a4-4ab2-b50e-9943410461c7" }, "Response" : { + "content-length" : "8324", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "db9d6cb1-7a48-4ca4-8206-f220fa0b3e8f", + "request-id" : "0f874aac-98a4-4ab2-b50e-9943410461c7", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:37:30 GMT", + "Date" : "Thu, 27 May 2021 21:15:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627E6FC28D8\"", - "client-request-id" : "db9d6cb1-7a48-4ca4-8206-f220fa0b3e8f", - "elapsed-time" : "35", + "ETag" : "W/\"0x8D921549B9D5AA8\"", + "client-request-id" : "0f874aac-98a4-4ab2-b50e-9943410461c7", + "elapsed-time" : "20", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8827", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627E6FC28D8\\\"\",\"name\":\"hotelscanupdatesynonymfieldproperty13f46351eb903e685d\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[\"names4207916327e5c75f\"]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "db9d6cb1-7a48-4ca4-8206-f220fa0b3e8f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921549B9D5AA8\\\"\",\"name\":\"hotelscanupdatesynonymfieldproperty1b8447850119025ae1\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[\"names992133cea9d20887\"]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "0f874aac-98a4-4ab2-b50e-9943410461c7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdatesynonymfieldproperty13f46351eb903e685d')?allowIndexDowntime=true&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdatesynonymfieldproperty1b8447850119025ae1')?allowIndexDowntime=true&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b0bff52-ef26-4596-b955-2f55154a1988", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "df80361e-8a67-48e3-84db-2308253798bf", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8301", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3b0bff52-ef26-4596-b955-2f55154a1988", + "request-id" : "df80361e-8a67-48e3-84db-2308253798bf", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:37:31 GMT", + "Date" : "Thu, 27 May 2021 21:15:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627E7928F90\"", - "client-request-id" : "3b0bff52-ef26-4596-b955-2f55154a1988", - "elapsed-time" : "868", + "ETag" : "W/\"0x8D921549BBFDD0C\"", + "client-request-id" : "df80361e-8a67-48e3-84db-2308253798bf", + "elapsed-time" : "148", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8804", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627E7928F90\\\"\",\"name\":\"hotelscanupdatesynonymfieldproperty13f46351eb903e685d\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "3b0bff52-ef26-4596-b955-2f55154a1988", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921549BBFDD0C\\\"\",\"name\":\"hotelscanupdatesynonymfieldproperty1b8447850119025ae1\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "df80361e-8a67-48e3-84db-2308253798bf", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('names4207916327e5c75f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('names992133cea9d20887')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b9d600c-610d-4b32-9480-aa14f06911fb" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b2c9b84b-4f6f-4217-8fc0-cc458525a578" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3b9d600c-610d-4b32-9480-aa14f06911fb", - "elapsed-time" : "41", + "client-request-id" : "b2c9b84b-4f6f-4217-8fc0-cc458525a578", + "elapsed-time" : "10", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "3b9d600c-610d-4b32-9480-aa14f06911fb", + "request-id" : "b2c9b84b-4f6f-4217-8fc0-cc458525a578", "StatusCode" : "204", - "x-ms-client-request-id" : "3b9d600c-610d-4b32-9480-aa14f06911fb", - "Date" : "Fri, 02 Apr 2021 22:37:32 GMT" + "x-ms-client-request-id" : "b2c9b84b-4f6f-4217-8fc0-cc458525a578", + "Date" : "Thu, 27 May 2021 21:15:51 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdatesynonymfieldproperty13f46351eb903e685d')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanupdatesynonymfieldproperty1b8447850119025ae1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "346d5fc5-0991-4f52-818c-7b7aa3492882" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "20b362d2-ece2-4647-a352-6540d8f5d4eb" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "346d5fc5-0991-4f52-818c-7b7aa3492882", - "elapsed-time" : "524", + "client-request-id" : "20b362d2-ece2-4647-a352-6540d8f5d4eb", + "elapsed-time" : "506", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "346d5fc5-0991-4f52-818c-7b7aa3492882", + "request-id" : "20b362d2-ece2-4647-a352-6540d8f5d4eb", "StatusCode" : "204", - "x-ms-client-request-id" : "346d5fc5-0991-4f52-818c-7b7aa3492882", - "Date" : "Fri, 02 Apr 2021 22:37:32 GMT" + "x-ms-client-request-id" : "20b362d2-ece2-4647-a352-6540d8f5d4eb", + "Date" : "Thu, 27 May 2021 21:15:52 GMT" }, "Exception" : null } ], - "variables" : [ "names4207916327e5c75f", "hotelscanupdatesynonymfieldproperty13f46351eb903e685d" ] + "variables" : [ "names992133cea9d20887", "hotelscanupdatesynonymfieldproperty1b8447850119025ae1" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createIndexFailsWithUsefulMessageOnUserError.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createIndexFailsWithUsefulMessageOnUserError.json index 821b931b034f..79e49f7eaa54 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createIndexFailsWithUsefulMessageOnUserError.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createIndexFailsWithUsefulMessageOnUserError.json @@ -1,28 +1,28 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e07b9228-ecd8-41c4-9807-e5bb3ace0c6f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "07a0f767-c8c4-4f3e-91ae-37d6862be885", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "236", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e07b9228-ecd8-41c4-9807-e5bb3ace0c6f", + "request-id" : "07a0f767-c8c4-4f3e-91ae-37d6862be885", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:37:44 GMT", + "Date" : "Thu, 27 May 2021 21:16:04 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e07b9228-ecd8-41c4-9807-e5bb3ace0c6f", - "elapsed-time" : "22", + "client-request-id" : "07a0f767-c8c4-4f3e-91ae-37d6862be885", + "elapsed-time" : "8", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "236", "Body" : "{\"error\":{\"code\":\"OperationNotAllowed\",\"message\":\"The request is invalid.\",\"details\":[{\"code\":\"CompoundKeysNotSupported\",\"message\":\"Found 0 key fields in index 'hotels'. Each index must have exactly one key field. Parameters: index\"}]}}", "Content-Language" : "en", - "x-ms-client-request-id" : "e07b9228-ecd8-41c4-9807-e5bb3ace0c6f", + "x-ms-client-request-id" : "07a0f767-c8c4-4f3e-91ae-37d6862be885", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createIndexReturnsCorrectDefaultValues.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createIndexReturnsCorrectDefaultValues.json index af609a3b73a0..d30719b8b356 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createIndexReturnsCorrectDefaultValues.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createIndexReturnsCorrectDefaultValues.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8c4f834c-7901-4255-b5f4-63d6ed499d83", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c97a51c6-52be-4d9f-9586-afd5aafa5bfe", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "7002", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8c4f834c-7901-4255-b5f4-63d6ed499d83", + "request-id" : "c97a51c6-52be-4d9f-9586-afd5aafa5bfe", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:09 GMT", + "Date" : "Thu, 27 May 2021 21:16:39 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627FE05BA02\"", - "client-request-id" : "8c4f834c-7901-4255-b5f4-63d6ed499d83", - "elapsed-time" : "1113", + "ETag" : "W/\"0x8D92154B7DC4C3A\"", + "client-request-id" : "c97a51c6-52be-4d9f-9586-afd5aafa5bfe", + "elapsed-time" : "1477", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "7505", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627FE05BA02\\\"\",\"name\":\"hotelscreateindexreturnscorrectdefaultvaluesce535913b38dd1\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"linear\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"*\"],\"maxAgeInSeconds\":null},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "8c4f834c-7901-4255-b5f4-63d6ed499d83", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154B7DC4C3A\\\"\",\"name\":\"hotelscreateindexreturnscorrectdefaultvaluesf3b85237f4c328\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"linear\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"*\"],\"maxAgeInSeconds\":null},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "c97a51c6-52be-4d9f-9586-afd5aafa5bfe", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscreateindexreturnscorrectdefaultvaluesce535913b38dd1')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscreateindexreturnscorrectdefaultvaluesf3b85237f4c328')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscreateindexreturnscorrectdefaultvaluesce535913b38dd1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscreateindexreturnscorrectdefaultvaluesf3b85237f4c328')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b16e62f-0ccb-4149-a5f3-3f57315578fd" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d89bc5dc-f52f-4480-beb8-a82f346a723b" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6b16e62f-0ccb-4149-a5f3-3f57315578fd", + "client-request-id" : "d89bc5dc-f52f-4480-beb8-a82f346a723b", "elapsed-time" : "524", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "6b16e62f-0ccb-4149-a5f3-3f57315578fd", + "request-id" : "d89bc5dc-f52f-4480-beb8-a82f346a723b", "StatusCode" : "204", - "x-ms-client-request-id" : "6b16e62f-0ccb-4149-a5f3-3f57315578fd", - "Date" : "Fri, 02 Apr 2021 22:38:10 GMT" + "x-ms-client-request-id" : "d89bc5dc-f52f-4480-beb8-a82f346a723b", + "Date" : "Thu, 27 May 2021 21:16:40 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscreateindexreturnscorrectdefaultvaluesce535913b38dd1" ] + "variables" : [ "hotelscreateindexreturnscorrectdefaultvaluesf3b85237f4c328" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createIndexReturnsCorrectDefinition.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createIndexReturnsCorrectDefinition.json index 75c23d72b55c..acf5bece1ab7 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createIndexReturnsCorrectDefinition.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createIndexReturnsCorrectDefinition.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "369c1eaf-457b-4062-ac9a-d788cbe9eec9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6557d8d6-7d44-4eb5-a70d-65be7b6d6df9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8304", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "369c1eaf-457b-4062-ac9a-d788cbe9eec9", + "request-id" : "6557d8d6-7d44-4eb5-a70d-65be7b6d6df9", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:37:57 GMT", + "Date" : "Thu, 27 May 2021 21:16:27 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627F6984189\"", - "client-request-id" : "369c1eaf-457b-4062-ac9a-d788cbe9eec9", - "elapsed-time" : "1158", + "ETag" : "W/\"0x8D92154B097D7B1\"", + "client-request-id" : "6557d8d6-7d44-4eb5-a70d-65be7b6d6df9", + "elapsed-time" : "1469", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8807", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627F6984189\\\"\",\"name\":\"hotelscreateindexreturnscorrectdefinition60361450f17d656\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "369c1eaf-457b-4062-ac9a-d788cbe9eec9", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154B097D7B1\\\"\",\"name\":\"hotelscreateindexreturnscorrectdefinitiondd9067952056723\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "6557d8d6-7d44-4eb5-a70d-65be7b6d6df9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscreateindexreturnscorrectdefinition60361450f17d656')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscreateindexreturnscorrectdefinitiondd9067952056723')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscreateindexreturnscorrectdefinition60361450f17d656')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscreateindexreturnscorrectdefinitiondd9067952056723')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "33b95470-2a84-458a-9fbe-3d908ca070cd" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e94c1ea4-07fc-418f-a289-47db69e70ef9" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "33b95470-2a84-458a-9fbe-3d908ca070cd", - "elapsed-time" : "943", + "client-request-id" : "e94c1ea4-07fc-418f-a289-47db69e70ef9", + "elapsed-time" : "505", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "33b95470-2a84-458a-9fbe-3d908ca070cd", + "request-id" : "e94c1ea4-07fc-418f-a289-47db69e70ef9", "StatusCode" : "204", - "x-ms-client-request-id" : "33b95470-2a84-458a-9fbe-3d908ca070cd", - "Date" : "Fri, 02 Apr 2021 22:37:58 GMT" + "x-ms-client-request-id" : "e94c1ea4-07fc-418f-a289-47db69e70ef9", + "Date" : "Thu, 27 May 2021 21:16:26 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscreateindexreturnscorrectdefinition60361450f17d656" ] + "variables" : [ "hotelscreateindexreturnscorrectdefinitiondd9067952056723" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createIndexReturnsCorrectDefinitionWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createIndexReturnsCorrectDefinitionWithResponse.json index 67a63c49df75..c778d14281c3 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createIndexReturnsCorrectDefinitionWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createIndexReturnsCorrectDefinitionWithResponse.json @@ -1,52 +1,52 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7fb05d62-477c-4b92-9cbc-eb8177957c55", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b5f6f682-02f9-4c14-ac2e-088fab1c2039", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8254", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7fb05d62-477c-4b92-9cbc-eb8177957c55", + "request-id" : "b5f6f682-02f9-4c14-ac2e-088fab1c2039", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:37:53 GMT", + "Date" : "Thu, 27 May 2021 21:16:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627F3F3115B\"", - "client-request-id" : "7fb05d62-477c-4b92-9cbc-eb8177957c55", - "elapsed-time" : "1080", + "ETag" : "W/\"0x8D92154AE14883C\"", + "client-request-id" : "b5f6f682-02f9-4c14-ac2e-088fab1c2039", + "elapsed-time" : "1611", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8757", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627F3F3115B\\\"\",\"name\":\"hotel2\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "7fb05d62-477c-4b92-9cbc-eb8177957c55", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154AE14883C\\\"\",\"name\":\"hotel2\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "b5f6f682-02f9-4c14-ac2e-088fab1c2039", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotel2')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotel2')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotel2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotel2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "26bdad0a-9900-4f90-a7cd-3d2e7bf1a5e8" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8ccf3890-e318-46ac-bd88-8a43e6e91587" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "26bdad0a-9900-4f90-a7cd-3d2e7bf1a5e8", - "elapsed-time" : "537", + "client-request-id" : "8ccf3890-e318-46ac-bd88-8a43e6e91587", + "elapsed-time" : "479", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "26bdad0a-9900-4f90-a7cd-3d2e7bf1a5e8", + "request-id" : "8ccf3890-e318-46ac-bd88-8a43e6e91587", "StatusCode" : "204", - "x-ms-client-request-id" : "26bdad0a-9900-4f90-a7cd-3d2e7bf1a5e8", - "Date" : "Fri, 02 Apr 2021 22:37:53 GMT" + "x-ms-client-request-id" : "8ccf3890-e318-46ac-bd88-8a43e6e91587", + "Date" : "Thu, 27 May 2021 21:16:23 GMT" }, "Exception" : null } ], diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexCreatesWhenIndexDoesNotExist.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexCreatesWhenIndexDoesNotExist.json index 9397f949540f..d7274b5eaf5d 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexCreatesWhenIndexDoesNotExist.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexCreatesWhenIndexDoesNotExist.json @@ -1,154 +1,154 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscreateorupdateindexcreateswhenindexdoesnotexist002917157')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscreateorupdateindexcreateswhenindexdoesnotexistd3a52087f')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "96c5e959-aa03-4159-aa17-d6ed967f76c1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "62b27ad8-f6e2-4ce2-84e2-f0b458fad7e3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8310", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "96c5e959-aa03-4159-aa17-d6ed967f76c1", + "request-id" : "62b27ad8-f6e2-4ce2-84e2-f0b458fad7e3", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:37:38 GMT", + "Date" : "Thu, 27 May 2021 21:15:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627EB93E2C1\"", - "client-request-id" : "96c5e959-aa03-4159-aa17-d6ed967f76c1", - "elapsed-time" : "1080", + "ETag" : "W/\"0x8D92154A0046829\"", + "client-request-id" : "62b27ad8-f6e2-4ce2-84e2-f0b458fad7e3", + "elapsed-time" : "1556", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8813", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627EB93E2C1\\\"\",\"name\":\"hotelscreateorupdateindexcreateswhenindexdoesnotexist002917157\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "96c5e959-aa03-4159-aa17-d6ed967f76c1", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154A0046829\\\"\",\"name\":\"hotelscreateorupdateindexcreateswhenindexdoesnotexistd3a52087f\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "62b27ad8-f6e2-4ce2-84e2-f0b458fad7e3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscreateorupdateindexcreateswhenindexdoesnotexist002917157')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscreateorupdateindexcreateswhenindexdoesnotexistd3a52087f')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotel1')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotel1')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9cb79321-82d0-4df9-87a3-f53457423f30", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4582fd61-93f2-4de8-ba41-c84846453250", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8254", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9cb79321-82d0-4df9-87a3-f53457423f30", + "request-id" : "4582fd61-93f2-4de8-ba41-c84846453250", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:37:40 GMT", + "Date" : "Thu, 27 May 2021 21:16:01 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627ECC321DD\"", - "client-request-id" : "9cb79321-82d0-4df9-87a3-f53457423f30", - "elapsed-time" : "1958", + "ETag" : "W/\"0x8D92154A10F03D9\"", + "client-request-id" : "4582fd61-93f2-4de8-ba41-c84846453250", + "elapsed-time" : "1673", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8757", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627ECC321DD\\\"\",\"name\":\"hotel1\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "9cb79321-82d0-4df9-87a3-f53457423f30", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154A10F03D9\\\"\",\"name\":\"hotel1\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "4582fd61-93f2-4de8-ba41-c84846453250", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotel1')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotel1')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotel2')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotel2')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9f981e52-74b1-4fdb-9137-e99a4484a78c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fc5a224d-d404-4394-821e-a892837d6d99", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8254", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9f981e52-74b1-4fdb-9137-e99a4484a78c", + "request-id" : "fc5a224d-d404-4394-821e-a892837d6d99", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:37:42 GMT", + "Date" : "Thu, 27 May 2021 21:16:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627EDEC934F\"", - "client-request-id" : "9f981e52-74b1-4fdb-9137-e99a4484a78c", - "elapsed-time" : "1909", + "ETag" : "W/\"0x8D92154A25C32DF\"", + "client-request-id" : "fc5a224d-d404-4394-821e-a892837d6d99", + "elapsed-time" : "2147", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8757", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627EDEC934F\\\"\",\"name\":\"hotel2\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "9f981e52-74b1-4fdb-9137-e99a4484a78c", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154A25C32DF\\\"\",\"name\":\"hotel2\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "fc5a224d-d404-4394-821e-a892837d6d99", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotel2')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotel2')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscreateorupdateindexcreateswhenindexdoesnotexist002917157')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscreateorupdateindexcreateswhenindexdoesnotexistd3a52087f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b4e635cc-7120-45ec-966f-05d7a5883a7b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8b4ca073-2d11-4460-b290-f35f23ffacb0" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b4e635cc-7120-45ec-966f-05d7a5883a7b", - "elapsed-time" : "559", + "client-request-id" : "8b4ca073-2d11-4460-b290-f35f23ffacb0", + "elapsed-time" : "496", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "b4e635cc-7120-45ec-966f-05d7a5883a7b", + "request-id" : "8b4ca073-2d11-4460-b290-f35f23ffacb0", "StatusCode" : "204", - "x-ms-client-request-id" : "b4e635cc-7120-45ec-966f-05d7a5883a7b", - "Date" : "Fri, 02 Apr 2021 22:37:43 GMT" + "x-ms-client-request-id" : "8b4ca073-2d11-4460-b290-f35f23ffacb0", + "Date" : "Thu, 27 May 2021 21:16:03 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotel1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotel1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d67a15c-927c-484b-a34c-9523fd910f46" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "63ff715a-37fa-46a4-a7ca-4b9c8c7775ab" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5d67a15c-927c-484b-a34c-9523fd910f46", - "elapsed-time" : "853", + "client-request-id" : "63ff715a-37fa-46a4-a7ca-4b9c8c7775ab", + "elapsed-time" : "507", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "5d67a15c-927c-484b-a34c-9523fd910f46", + "request-id" : "63ff715a-37fa-46a4-a7ca-4b9c8c7775ab", "StatusCode" : "204", - "x-ms-client-request-id" : "5d67a15c-927c-484b-a34c-9523fd910f46", - "Date" : "Fri, 02 Apr 2021 22:37:44 GMT" + "x-ms-client-request-id" : "63ff715a-37fa-46a4-a7ca-4b9c8c7775ab", + "Date" : "Thu, 27 May 2021 21:16:04 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotel2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotel2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ecea9665-bf58-49e0-a360-1ad59662196f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f7552651-7b98-4409-ac94-58492a8f2b86" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ecea9665-bf58-49e0-a360-1ad59662196f", - "elapsed-time" : "548", + "client-request-id" : "f7552651-7b98-4409-ac94-58492a8f2b86", + "elapsed-time" : "484", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "ecea9665-bf58-49e0-a360-1ad59662196f", + "request-id" : "f7552651-7b98-4409-ac94-58492a8f2b86", "StatusCode" : "204", - "x-ms-client-request-id" : "ecea9665-bf58-49e0-a360-1ad59662196f", - "Date" : "Fri, 02 Apr 2021 22:37:44 GMT" + "x-ms-client-request-id" : "f7552651-7b98-4409-ac94-58492a8f2b86", + "Date" : "Thu, 27 May 2021 21:16:05 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscreateorupdateindexcreateswhenindexdoesnotexist002917157" ] + "variables" : [ "hotelscreateorupdateindexcreateswhenindexdoesnotexistd3a52087f" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexCreatesWhenIndexDoesNotExistWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexCreatesWhenIndexDoesNotExistWithResponse.json index 59fcc7cb6705..f1e868580116 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexCreatesWhenIndexDoesNotExistWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexCreatesWhenIndexDoesNotExistWithResponse.json @@ -1,154 +1,154 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels678756496caafd412408cb7302dc8f2')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels8825118fe44a25a774a0b8ee84507c3')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "16a1718f-8b23-4cf8-adcd-88a3da4bdb91", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "92c5f090-f372-47cf-b81d-5745c756bc15", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8285", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "16a1718f-8b23-4cf8-adcd-88a3da4bdb91", + "request-id" : "92c5f090-f372-47cf-b81d-5745c756bc15", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:37:24 GMT", + "Date" : "Thu, 27 May 2021 21:15:45 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627E2B5D125\"", - "client-request-id" : "16a1718f-8b23-4cf8-adcd-88a3da4bdb91", - "elapsed-time" : "1128", + "ETag" : "W/\"0x8D9215497D2A997\"", + "client-request-id" : "92c5f090-f372-47cf-b81d-5745c756bc15", + "elapsed-time" : "1474", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8788", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627E2B5D125\\\"\",\"name\":\"hotels678756496caafd412408cb7302dc8f2\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "16a1718f-8b23-4cf8-adcd-88a3da4bdb91", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215497D2A997\\\"\",\"name\":\"hotels8825118fe44a25a774a0b8ee84507c3\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "92c5f090-f372-47cf-b81d-5745c756bc15", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels678756496caafd412408cb7302dc8f2')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels8825118fe44a25a774a0b8ee84507c3')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotel1')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotel1')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b7ebf546-3685-464c-b7be-420285317a20", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "59605724-8022-463d-b5f9-9b533afcc8d6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8254", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b7ebf546-3685-464c-b7be-420285317a20", + "request-id" : "59605724-8022-463d-b5f9-9b533afcc8d6", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:37:25 GMT", + "Date" : "Thu, 27 May 2021 21:15:47 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627E3D6409B\"", - "client-request-id" : "b7ebf546-3685-464c-b7be-420285317a20", - "elapsed-time" : "1844", + "ETag" : "W/\"0x8D9215498BF3076\"", + "client-request-id" : "59605724-8022-463d-b5f9-9b533afcc8d6", + "elapsed-time" : "1511", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8757", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627E3D6409B\\\"\",\"name\":\"hotel1\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "b7ebf546-3685-464c-b7be-420285317a20", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215498BF3076\\\"\",\"name\":\"hotel1\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "59605724-8022-463d-b5f9-9b533afcc8d6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotel1')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotel1')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotel2')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotel2')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6cce6510-ae09-494d-bb15-c9149d3d4689", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b4e86aa0-7da1-4d30-91e6-77de03b79ed6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8254", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6cce6510-ae09-494d-bb15-c9149d3d4689", + "request-id" : "b4e86aa0-7da1-4d30-91e6-77de03b79ed6", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:37:27 GMT", + "Date" : "Thu, 27 May 2021 21:15:48 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627E502BFDA\"", - "client-request-id" : "6cce6510-ae09-494d-bb15-c9149d3d4689", - "elapsed-time" : "1939", + "ETag" : "W/\"0x8D9215499A770D2\"", + "client-request-id" : "b4e86aa0-7da1-4d30-91e6-77de03b79ed6", + "elapsed-time" : "1487", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8757", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627E502BFDA\\\"\",\"name\":\"hotel2\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "6cce6510-ae09-494d-bb15-c9149d3d4689", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215499A770D2\\\"\",\"name\":\"hotel2\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "b4e86aa0-7da1-4d30-91e6-77de03b79ed6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotel2')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotel2')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels678756496caafd412408cb7302dc8f2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels8825118fe44a25a774a0b8ee84507c3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd0eef4a-4b95-459c-b23e-85006f063b22" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2a1f7068-ac7d-4a9c-b77c-1a0b1c999c7a" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "cd0eef4a-4b95-459c-b23e-85006f063b22", - "elapsed-time" : "536", + "client-request-id" : "2a1f7068-ac7d-4a9c-b77c-1a0b1c999c7a", + "elapsed-time" : "498", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "cd0eef4a-4b95-459c-b23e-85006f063b22", + "request-id" : "2a1f7068-ac7d-4a9c-b77c-1a0b1c999c7a", "StatusCode" : "204", - "x-ms-client-request-id" : "cd0eef4a-4b95-459c-b23e-85006f063b22", - "Date" : "Fri, 02 Apr 2021 22:37:27 GMT" + "x-ms-client-request-id" : "2a1f7068-ac7d-4a9c-b77c-1a0b1c999c7a", + "Date" : "Thu, 27 May 2021 21:15:49 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotel1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotel1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5344489-fd9b-4fc5-95c2-1f21321e21c4" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "65ca493c-5c33-4d8d-b794-a7434196dbde" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d5344489-fd9b-4fc5-95c2-1f21321e21c4", - "elapsed-time" : "892", + "client-request-id" : "65ca493c-5c33-4d8d-b794-a7434196dbde", + "elapsed-time" : "502", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "d5344489-fd9b-4fc5-95c2-1f21321e21c4", + "request-id" : "65ca493c-5c33-4d8d-b794-a7434196dbde", "StatusCode" : "204", - "x-ms-client-request-id" : "d5344489-fd9b-4fc5-95c2-1f21321e21c4", - "Date" : "Fri, 02 Apr 2021 22:37:29 GMT" + "x-ms-client-request-id" : "65ca493c-5c33-4d8d-b794-a7434196dbde", + "Date" : "Thu, 27 May 2021 21:15:49 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotel2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotel2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c3dd27e-1052-4c43-b060-c16567ca6779" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "44fbb9a8-b212-46ff-8a21-a607151220e4" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1c3dd27e-1052-4c43-b060-c16567ca6779", - "elapsed-time" : "567", + "client-request-id" : "44fbb9a8-b212-46ff-8a21-a607151220e4", + "elapsed-time" : "509", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "1c3dd27e-1052-4c43-b060-c16567ca6779", + "request-id" : "44fbb9a8-b212-46ff-8a21-a607151220e4", "StatusCode" : "204", - "x-ms-client-request-id" : "1c3dd27e-1052-4c43-b060-c16567ca6779", - "Date" : "Fri, 02 Apr 2021 22:37:30 GMT" + "x-ms-client-request-id" : "44fbb9a8-b212-46ff-8a21-a607151220e4", + "Date" : "Thu, 27 May 2021 21:15:50 GMT" }, "Exception" : null } ], - "variables" : [ "hotels678756496caafd412408cb7302dc8f2" ] + "variables" : [ "hotels8825118fe44a25a774a0b8ee84507c3" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexIfExistsSucceedsOnExistingResource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexIfExistsSucceedsOnExistingResource.json index 767ff0aec381..1bb90a5e46b0 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexIfExistsSucceedsOnExistingResource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexIfExistsSucceedsOnExistingResource.json @@ -1,82 +1,82 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels040718fd4e75ceaad4cafb825c2cec9')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels07487c126d662832d4e819d9c5cc74a')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "46eb836c-2e7d-47f6-acd2-5840c7643b99", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "217a7ee4-6173-4aa6-a5c9-255e10d3d9c2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8285", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "46eb836c-2e7d-47f6-acd2-5840c7643b99", + "request-id" : "217a7ee4-6173-4aa6-a5c9-255e10d3d9c2", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:47 GMT", + "Date" : "Thu, 27 May 2021 21:15:16 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627CD4920DE\"", - "client-request-id" : "46eb836c-2e7d-47f6-acd2-5840c7643b99", - "elapsed-time" : "1093", + "ETag" : "W/\"0x8D921548679A2ED\"", + "client-request-id" : "217a7ee4-6173-4aa6-a5c9-255e10d3d9c2", + "elapsed-time" : "1484", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8788", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627CD4920DE\\\"\",\"name\":\"hotels040718fd4e75ceaad4cafb825c2cec9\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "46eb836c-2e7d-47f6-acd2-5840c7643b99", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921548679A2ED\\\"\",\"name\":\"hotels07487c126d662832d4e819d9c5cc74a\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "217a7ee4-6173-4aa6-a5c9-255e10d3d9c2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels040718fd4e75ceaad4cafb825c2cec9')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels07487c126d662832d4e819d9c5cc74a')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels040718fd4e75ceaad4cafb825c2cec9')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels07487c126d662832d4e819d9c5cc74a')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "604f1e96-584e-4d24-aef8-3357cf437f40", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5bf19f11-3ba5-4c4a-be93-e1fff6c627c9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8246", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "604f1e96-584e-4d24-aef8-3357cf437f40", + "request-id" : "5bf19f11-3ba5-4c4a-be93-e1fff6c627c9", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:49 GMT", + "Date" : "Thu, 27 May 2021 21:15:16 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627CDDD1625\"", - "client-request-id" : "604f1e96-584e-4d24-aef8-3357cf437f40", - "elapsed-time" : "920", + "ETag" : "W/\"0x8D9215486985412\"", + "client-request-id" : "5bf19f11-3ba5-4c4a-be93-e1fff6c627c9", + "elapsed-time" : "166", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8749", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627CDDD1625\\\"\",\"name\":\"hotels040718fd4e75ceaad4cafb825c2cec9\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"*\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "604f1e96-584e-4d24-aef8-3357cf437f40", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215486985412\\\"\",\"name\":\"hotels07487c126d662832d4e819d9c5cc74a\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"*\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "5bf19f11-3ba5-4c4a-be93-e1fff6c627c9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels040718fd4e75ceaad4cafb825c2cec9')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels07487c126d662832d4e819d9c5cc74a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8914cd51-4cb9-46c6-86ee-10ace7b8c12a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5a3040ca-b359-4cce-a51f-c40e1307d9fa" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8914cd51-4cb9-46c6-86ee-10ace7b8c12a", - "elapsed-time" : "543", + "client-request-id" : "5a3040ca-b359-4cce-a51f-c40e1307d9fa", + "elapsed-time" : "547", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "8914cd51-4cb9-46c6-86ee-10ace7b8c12a", + "request-id" : "5a3040ca-b359-4cce-a51f-c40e1307d9fa", "StatusCode" : "204", - "x-ms-client-request-id" : "8914cd51-4cb9-46c6-86ee-10ace7b8c12a", - "Date" : "Fri, 02 Apr 2021 22:36:49 GMT" + "x-ms-client-request-id" : "5a3040ca-b359-4cce-a51f-c40e1307d9fa", + "Date" : "Thu, 27 May 2021 21:15:17 GMT" }, "Exception" : null } ], - "variables" : [ "hotels040718fd4e75ceaad4cafb825c2cec9" ] + "variables" : [ "hotels07487c126d662832d4e819d9c5cc74a" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexIfNotChangedFailsWhenResourceChanged.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexIfNotChangedFailsWhenResourceChanged.json index b67a9aa1b04c..1a988e4a6e17 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexIfNotChangedFailsWhenResourceChanged.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexIfNotChangedFailsWhenResourceChanged.json @@ -1,110 +1,110 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels6830335fb6e1da5f74caa82bcf6215a')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels18699257cec33c80941e0a3b10dfcc2')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a812aab7-eac8-45d4-8342-2660771ac8d7", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "72f5e19a-adf2-4edd-b453-370b24a5806d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8285", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a812aab7-eac8-45d4-8342-2660771ac8d7", + "request-id" : "72f5e19a-adf2-4edd-b453-370b24a5806d", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:45 GMT", + "Date" : "Thu, 27 May 2021 21:15:14 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627CBAADA84\"", - "client-request-id" : "a812aab7-eac8-45d4-8342-2660771ac8d7", - "elapsed-time" : "1105", + "ETag" : "W/\"0x8D921548517616C\"", + "client-request-id" : "72f5e19a-adf2-4edd-b453-370b24a5806d", + "elapsed-time" : "1539", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8788", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627CBAADA84\\\"\",\"name\":\"hotels6830335fb6e1da5f74caa82bcf6215a\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "a812aab7-eac8-45d4-8342-2660771ac8d7", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921548517616C\\\"\",\"name\":\"hotels18699257cec33c80941e0a3b10dfcc2\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "72f5e19a-adf2-4edd-b453-370b24a5806d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels6830335fb6e1da5f74caa82bcf6215a')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels18699257cec33c80941e0a3b10dfcc2')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels6830335fb6e1da5f74caa82bcf6215a')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels18699257cec33c80941e0a3b10dfcc2')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b7e863c5-c981-4077-9baa-e7d45844848f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "004591da-d542-4e36-871a-57c7fa13b563", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8246", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b7e863c5-c981-4077-9baa-e7d45844848f", + "request-id" : "004591da-d542-4e36-871a-57c7fa13b563", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:45 GMT", + "Date" : "Thu, 27 May 2021 21:15:14 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627CC3F4AC9\"", - "client-request-id" : "b7e863c5-c981-4077-9baa-e7d45844848f", - "elapsed-time" : "915", + "ETag" : "W/\"0x8D9215485359D52\"", + "client-request-id" : "004591da-d542-4e36-871a-57c7fa13b563", + "elapsed-time" : "160", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8749", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627CC3F4AC9\\\"\",\"name\":\"hotels6830335fb6e1da5f74caa82bcf6215a\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"*\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "b7e863c5-c981-4077-9baa-e7d45844848f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215485359D52\\\"\",\"name\":\"hotels18699257cec33c80941e0a3b10dfcc2\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"*\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "004591da-d542-4e36-871a-57c7fa13b563", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels6830335fb6e1da5f74caa82bcf6215a')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels18699257cec33c80941e0a3b10dfcc2')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7a6c5ff6-f276-472f-887d-a6d9de131352", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2009f9bd-e909-4657-8430-eff19f1f5f2e", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "160", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7a6c5ff6-f276-472f-887d-a6d9de131352", + "request-id" : "2009f9bd-e909-4657-8430-eff19f1f5f2e", "StatusCode" : "412", - "Date" : "Fri, 02 Apr 2021 22:36:46 GMT", + "Date" : "Thu, 27 May 2021 21:15:14 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7a6c5ff6-f276-472f-887d-a6d9de131352", - "elapsed-time" : "38", + "client-request-id" : "2009f9bd-e909-4657-8430-eff19f1f5f2e", + "elapsed-time" : "41", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "7a6c5ff6-f276-472f-887d-a6d9de131352", + "x-ms-client-request-id" : "2009f9bd-e909-4657-8430-eff19f1f5f2e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels6830335fb6e1da5f74caa82bcf6215a')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels18699257cec33c80941e0a3b10dfcc2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8203d73-a494-410d-a166-efa7e7d61ff4" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e63178b8-f7a3-49ef-b130-7330e749041e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f8203d73-a494-410d-a166-efa7e7d61ff4", - "elapsed-time" : "542", + "client-request-id" : "e63178b8-f7a3-49ef-b130-7330e749041e", + "elapsed-time" : "504", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "f8203d73-a494-410d-a166-efa7e7d61ff4", + "request-id" : "e63178b8-f7a3-49ef-b130-7330e749041e", "StatusCode" : "204", - "x-ms-client-request-id" : "f8203d73-a494-410d-a166-efa7e7d61ff4", - "Date" : "Fri, 02 Apr 2021 22:36:46 GMT" + "x-ms-client-request-id" : "e63178b8-f7a3-49ef-b130-7330e749041e", + "Date" : "Thu, 27 May 2021 21:15:15 GMT" }, "Exception" : null } ], - "variables" : [ "hotels6830335fb6e1da5f74caa82bcf6215a" ] + "variables" : [ "hotels18699257cec33c80941e0a3b10dfcc2" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexIfNotChangedSucceedsWhenResourceUnchanged.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexIfNotChangedSucceedsWhenResourceUnchanged.json index 9808f692bf2c..b3d655005f6c 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexIfNotChangedSucceedsWhenResourceUnchanged.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexIfNotChangedSucceedsWhenResourceUnchanged.json @@ -1,82 +1,82 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels98596d298250c5d2d402686e0fb8597')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels971374145e6df2f7244cfb922d658a4')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3b13fd6-dbde-4a0b-90f2-581a644177b1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "aa9acb97-4f75-4960-9f58-902fd9d0c095", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8285", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f3b13fd6-dbde-4a0b-90f2-581a644177b1", + "request-id" : "aa9acb97-4f75-4960-9f58-902fd9d0c095", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:37:54 GMT", + "Date" : "Thu, 27 May 2021 21:16:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627F4F71A05\"", - "client-request-id" : "f3b13fd6-dbde-4a0b-90f2-581a644177b1", - "elapsed-time" : "1088", + "ETag" : "W/\"0x8D92154AF483734\"", + "client-request-id" : "aa9acb97-4f75-4960-9f58-902fd9d0c095", + "elapsed-time" : "1463", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8788", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627F4F71A05\\\"\",\"name\":\"hotels98596d298250c5d2d402686e0fb8597\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "f3b13fd6-dbde-4a0b-90f2-581a644177b1", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154AF483734\\\"\",\"name\":\"hotels971374145e6df2f7244cfb922d658a4\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "aa9acb97-4f75-4960-9f58-902fd9d0c095", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels98596d298250c5d2d402686e0fb8597')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels971374145e6df2f7244cfb922d658a4')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels98596d298250c5d2d402686e0fb8597')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels971374145e6df2f7244cfb922d658a4')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "37f1b562-4509-4ed9-b2ad-dcee344986ab", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "165eaec4-b28f-48a2-8520-450951e95801", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8246", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "37f1b562-4509-4ed9-b2ad-dcee344986ab", + "request-id" : "165eaec4-b28f-48a2-8520-450951e95801", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:37:55 GMT", + "Date" : "Thu, 27 May 2021 21:16:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627F58F2EF3\"", - "client-request-id" : "37f1b562-4509-4ed9-b2ad-dcee344986ab", - "elapsed-time" : "935", + "ETag" : "W/\"0x8D92154AF6428BD\"", + "client-request-id" : "165eaec4-b28f-48a2-8520-450951e95801", + "elapsed-time" : "147", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8749", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627F58F2EF3\\\"\",\"name\":\"hotels98596d298250c5d2d402686e0fb8597\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"*\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "37f1b562-4509-4ed9-b2ad-dcee344986ab", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154AF6428BD\\\"\",\"name\":\"hotels971374145e6df2f7244cfb922d658a4\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"*\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "165eaec4-b28f-48a2-8520-450951e95801", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels98596d298250c5d2d402686e0fb8597')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels971374145e6df2f7244cfb922d658a4')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "621527c2-5ae5-40b2-b4b7-cd9b8e582678" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e0d7b44c-3c4e-4cb9-a987-178e5f076156" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "621527c2-5ae5-40b2-b4b7-cd9b8e582678", - "elapsed-time" : "527", + "client-request-id" : "e0d7b44c-3c4e-4cb9-a987-178e5f076156", + "elapsed-time" : "484", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "621527c2-5ae5-40b2-b4b7-cd9b8e582678", + "request-id" : "e0d7b44c-3c4e-4cb9-a987-178e5f076156", "StatusCode" : "204", - "x-ms-client-request-id" : "621527c2-5ae5-40b2-b4b7-cd9b8e582678", - "Date" : "Fri, 02 Apr 2021 22:37:56 GMT" + "x-ms-client-request-id" : "e0d7b44c-3c4e-4cb9-a987-178e5f076156", + "Date" : "Thu, 27 May 2021 21:16:25 GMT" }, "Exception" : null } ], - "variables" : [ "hotels98596d298250c5d2d402686e0fb8597" ] + "variables" : [ "hotels971374145e6df2f7244cfb922d658a4" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexIfNotExistsSucceedsOnNoResource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexIfNotExistsSucceedsOnNoResource.json index 860620f684bb..97c9c657e3c9 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexIfNotExistsSucceedsOnNoResource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexIfNotExistsSucceedsOnNoResource.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels35352e70444d27cc946eea59044e128')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels98636a38279d2c0ce49b0880989c8bd')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ed590138-6ea4-4909-96e0-4dcaa1f0f24f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3b654789-c07f-4fd8-81d7-381ca08d6df3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8285", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ed590138-6ea4-4909-96e0-4dcaa1f0f24f", + "request-id" : "3b654789-c07f-4fd8-81d7-381ca08d6df3", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:52 GMT", + "Date" : "Thu, 27 May 2021 21:15:20 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627D058BE16\"", - "client-request-id" : "ed590138-6ea4-4909-96e0-4dcaa1f0f24f", - "elapsed-time" : "1056", + "ETag" : "W/\"0x8D92154894F18F8\"", + "client-request-id" : "3b654789-c07f-4fd8-81d7-381ca08d6df3", + "elapsed-time" : "1673", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8788", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627D058BE16\\\"\",\"name\":\"hotels35352e70444d27cc946eea59044e128\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "ed590138-6ea4-4909-96e0-4dcaa1f0f24f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154894F18F8\\\"\",\"name\":\"hotels98636a38279d2c0ce49b0880989c8bd\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "3b654789-c07f-4fd8-81d7-381ca08d6df3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels35352e70444d27cc946eea59044e128')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels98636a38279d2c0ce49b0880989c8bd')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels35352e70444d27cc946eea59044e128')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels98636a38279d2c0ce49b0880989c8bd')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2a4dd65-e6b4-4465-8065-77684ad879ee" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4e7db060-1180-4c3d-8e3e-9d310367461b" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b2a4dd65-e6b4-4465-8065-77684ad879ee", - "elapsed-time" : "542", + "client-request-id" : "4e7db060-1180-4c3d-8e3e-9d310367461b", + "elapsed-time" : "502", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "b2a4dd65-e6b4-4465-8065-77684ad879ee", + "request-id" : "4e7db060-1180-4c3d-8e3e-9d310367461b", "StatusCode" : "204", - "x-ms-client-request-id" : "b2a4dd65-e6b4-4465-8065-77684ad879ee", - "Date" : "Fri, 02 Apr 2021 22:36:53 GMT" + "x-ms-client-request-id" : "4e7db060-1180-4c3d-8e3e-9d310367461b", + "Date" : "Thu, 27 May 2021 21:15:21 GMT" }, "Exception" : null } ], - "variables" : [ "hotels35352e70444d27cc946eea59044e128" ] + "variables" : [ "hotels98636a38279d2c0ce49b0880989c8bd" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexThrowsWhenUpdatingSuggesterWithExistingIndexFields.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexThrowsWhenUpdatingSuggesterWithExistingIndexFields.json index 1c429d03b527..98ab8a490459 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexThrowsWhenUpdatingSuggesterWithExistingIndexFields.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.createOrUpdateIndexThrowsWhenUpdatingSuggesterWithExistingIndexFields.json @@ -1,109 +1,109 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2ef1d0c9-a214-4dfd-89f4-8044f088ba66", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4bc792c1-4fb9-4975-8f67-79da0de720db", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8285", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2ef1d0c9-a214-4dfd-89f4-8044f088ba66", + "request-id" : "4bc792c1-4fb9-4975-8f67-79da0de720db", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:50 GMT", + "Date" : "Thu, 27 May 2021 21:15:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627CED55D2E\"", - "client-request-id" : "2ef1d0c9-a214-4dfd-89f4-8044f088ba66", - "elapsed-time" : "1043", + "ETag" : "W/\"0x8D9215487E0A03D\"", + "client-request-id" : "4bc792c1-4fb9-4975-8f67-79da0de720db", + "elapsed-time" : "1542", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8788", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627CED55D2E\\\"\",\"name\":\"hotels88379713ae4bb265a4b48ab8f40d458\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "2ef1d0c9-a214-4dfd-89f4-8044f088ba66", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215487E0A03D\\\"\",\"name\":\"hotels591801ec6c03411644414a94e0d9d89\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "4bc792c1-4fb9-4975-8f67-79da0de720db", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels88379713ae4bb265a4b48ab8f40d458')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels591801ec6c03411644414a94e0d9d89')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels88379713ae4bb265a4b48ab8f40d458')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels591801ec6c03411644414a94e0d9d89')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "20610ec2-a6b2-4b40-b743-7765e67c2252" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0d50a09e-9eb1-4b50-872b-24f07d3ce56a" }, "Response" : { + "content-length" : "8285", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "20610ec2-a6b2-4b40-b743-7765e67c2252", + "request-id" : "0d50a09e-9eb1-4b50-872b-24f07d3ce56a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:50 GMT", + "Date" : "Thu, 27 May 2021 21:15:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627CED55D2E\"", - "client-request-id" : "20610ec2-a6b2-4b40-b743-7765e67c2252", - "elapsed-time" : "34", + "ETag" : "W/\"0x8D9215487E0A03D\"", + "client-request-id" : "0d50a09e-9eb1-4b50-872b-24f07d3ce56a", + "elapsed-time" : "20", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8788", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627CED55D2E\\\"\",\"name\":\"hotels88379713ae4bb265a4b48ab8f40d458\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "20610ec2-a6b2-4b40-b743-7765e67c2252", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215487E0A03D\\\"\",\"name\":\"hotels591801ec6c03411644414a94e0d9d89\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "0d50a09e-9eb1-4b50-872b-24f07d3ce56a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels88379713ae4bb265a4b48ab8f40d458')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels591801ec6c03411644414a94e0d9d89')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3f57fdde-ac13-45a3-98a6-1ccd5515dff8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ff1ef7b1-8fdf-4aa3-b8b7-845f129e32ae", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "444", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3f57fdde-ac13-45a3-98a6-1ccd5515dff8", + "request-id" : "ff1ef7b1-8fdf-4aa3-b8b7-845f129e32ae", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:36:50 GMT", + "Date" : "Thu, 27 May 2021 21:15:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3f57fdde-ac13-45a3-98a6-1ccd5515dff8", - "elapsed-time" : "75", + "client-request-id" : "ff1ef7b1-8fdf-4aa3-b8b7-845f129e32ae", + "elapsed-time" : "69", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "200", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"Fields that were already present in an index (Category) cannot be referenced by a new suggester. Only new fields added in the same index update operation are allowed.\"}}", + "Body" : "{\"error\":{\"code\":\"OperationNotAllowed\",\"message\":\"Fields that were already present in an index (Category) cannot be referenced by a new suggester. Only new fields added in the same index update operation are allowed.\",\"details\":[{\"code\":\"InvalidSuggesterUpdate\",\"message\":\"Fields that were already present in an index (Category) cannot be referenced by a new suggester. Only new fields added in the same index update operation are allowed.\"}]}}", "Content-Language" : "en", - "x-ms-client-request-id" : "3f57fdde-ac13-45a3-98a6-1ccd5515dff8", + "x-ms-client-request-id" : "ff1ef7b1-8fdf-4aa3-b8b7-845f129e32ae", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels88379713ae4bb265a4b48ab8f40d458')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels591801ec6c03411644414a94e0d9d89')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "33f59ba6-7dc9-47c7-91b2-55f33647a281" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "aca6a1cd-bfd4-4bb2-976d-7cb1d90cda31" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "33f59ba6-7dc9-47c7-91b2-55f33647a281", - "elapsed-time" : "1264", + "client-request-id" : "aca6a1cd-bfd4-4bb2-976d-7cb1d90cda31", + "elapsed-time" : "522", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "33f59ba6-7dc9-47c7-91b2-55f33647a281", + "request-id" : "aca6a1cd-bfd4-4bb2-976d-7cb1d90cda31", "StatusCode" : "204", - "x-ms-client-request-id" : "33f59ba6-7dc9-47c7-91b2-55f33647a281", - "Date" : "Fri, 02 Apr 2021 22:36:52 GMT" + "x-ms-client-request-id" : "aca6a1cd-bfd4-4bb2-976d-7cb1d90cda31", + "Date" : "Thu, 27 May 2021 21:15:19 GMT" }, "Exception" : null } ], - "variables" : [ "hotels88379713ae4bb265a4b48ab8f40d458" ] + "variables" : [ "hotels591801ec6c03411644414a94e0d9d89" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.deleteIndexIfExistsWorksOnlyWhenResourceExists.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.deleteIndexIfExistsWorksOnlyWhenResourceExists.json index a17930c6e082..eae3334e5525 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.deleteIndexIfExistsWorksOnlyWhenResourceExists.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.deleteIndexIfExistsWorksOnlyWhenResourceExists.json @@ -1,81 +1,81 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsdeleteindexifexistsworksonlywhenresourceexists10a64068db')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsdeleteindexifexistsworksonlywhenresourceexistsb157411273')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "fedc2b81-a839-46cf-a81a-80383f4f7c22", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8a292713-4628-4400-ab90-473e88d83935", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8310", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "fedc2b81-a839-46cf-a81a-80383f4f7c22", + "request-id" : "8a292713-4628-4400-ab90-473e88d83935", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:07 GMT", + "Date" : "Thu, 27 May 2021 21:16:36 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627FCF839C3\"", - "client-request-id" : "fedc2b81-a839-46cf-a81a-80383f4f7c22", - "elapsed-time" : "1054", + "ETag" : "W/\"0x8D92154B69F73DB\"", + "client-request-id" : "8a292713-4628-4400-ab90-473e88d83935", + "elapsed-time" : "1455", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8813", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627FCF839C3\\\"\",\"name\":\"hotelsdeleteindexifexistsworksonlywhenresourceexists10a64068db\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "fedc2b81-a839-46cf-a81a-80383f4f7c22", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154B69F73DB\\\"\",\"name\":\"hotelsdeleteindexifexistsworksonlywhenresourceexistsb157411273\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "8a292713-4628-4400-ab90-473e88d83935", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsdeleteindexifexistsworksonlywhenresourceexists10a64068db')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsdeleteindexifexistsworksonlywhenresourceexistsb157411273')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsdeleteindexifexistsworksonlywhenresourceexists10a64068db')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsdeleteindexifexistsworksonlywhenresourceexistsb157411273')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "83b609b0-f76c-421a-a1a3-4183824eb3bd" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fcc70701-12cc-4909-9f22-57555e7a496e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "83b609b0-f76c-421a-a1a3-4183824eb3bd", - "elapsed-time" : "552", + "client-request-id" : "fcc70701-12cc-4909-9f22-57555e7a496e", + "elapsed-time" : "491", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "83b609b0-f76c-421a-a1a3-4183824eb3bd", + "request-id" : "fcc70701-12cc-4909-9f22-57555e7a496e", "StatusCode" : "204", - "x-ms-client-request-id" : "83b609b0-f76c-421a-a1a3-4183824eb3bd", - "Date" : "Fri, 02 Apr 2021 22:38:08 GMT" + "x-ms-client-request-id" : "fcc70701-12cc-4909-9f22-57555e7a496e", + "Date" : "Thu, 27 May 2021 21:16:37 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsdeleteindexifexistsworksonlywhenresourceexists10a64068db')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsdeleteindexifexistsworksonlywhenresourceexistsb157411273')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3b4e184-56cd-44a8-8b1c-5d53aad7230e" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "14b73efc-55c3-4fb4-a0af-ea8c2bab1bb6" }, "Response" : { + "content-length" : "160", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f3b4e184-56cd-44a8-8b1c-5d53aad7230e", + "request-id" : "14b73efc-55c3-4fb4-a0af-ea8c2bab1bb6", "StatusCode" : "412", - "Date" : "Fri, 02 Apr 2021 22:38:08 GMT", + "Date" : "Thu, 27 May 2021 21:16:38 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f3b4e184-56cd-44a8-8b1c-5d53aad7230e", - "elapsed-time" : "25", + "client-request-id" : "14b73efc-55c3-4fb4-a0af-ea8c2bab1bb6", + "elapsed-time" : "14", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "f3b4e184-56cd-44a8-8b1c-5d53aad7230e", + "x-ms-client-request-id" : "14b73efc-55c3-4fb4-a0af-ea8c2bab1bb6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "hotelsdeleteindexifexistsworksonlywhenresourceexists10a64068db" ] + "variables" : [ "hotelsdeleteindexifexistsworksonlywhenresourceexistsb157411273" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.deleteIndexIfNotChangedWorksOnlyOnCurrentResource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.deleteIndexIfNotChangedWorksOnlyOnCurrentResource.json index 03b15e3391dc..0de30316ac02 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.deleteIndexIfNotChangedWorksOnlyOnCurrentResource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.deleteIndexIfNotChangedWorksOnlyOnCurrentResource.json @@ -1,109 +1,109 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsdeleteindexifnotchangedworksonlyoncurrentresource22736597')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsdeleteindexifnotchangedworksonlyoncurrentresource02135734')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd490846-f56c-4d09-bd93-fbb5d507d378", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e4ecfb3d-4d75-4cea-a2ba-cbdb0e3d3f3d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8311", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "bd490846-f56c-4d09-bd93-fbb5d507d378", + "request-id" : "e4ecfb3d-4d75-4cea-a2ba-cbdb0e3d3f3d", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:37:03 GMT", + "Date" : "Thu, 27 May 2021 21:15:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627D6387388\"", - "client-request-id" : "bd490846-f56c-4d09-bd93-fbb5d507d378", - "elapsed-time" : "1104", + "ETag" : "W/\"0x8D921548EDD01DF\"", + "client-request-id" : "e4ecfb3d-4d75-4cea-a2ba-cbdb0e3d3f3d", + "elapsed-time" : "1505", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8814", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627D6387388\\\"\",\"name\":\"hotelsdeleteindexifnotchangedworksonlyoncurrentresource22736597\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "bd490846-f56c-4d09-bd93-fbb5d507d378", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921548EDD01DF\\\"\",\"name\":\"hotelsdeleteindexifnotchangedworksonlyoncurrentresource02135734\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "e4ecfb3d-4d75-4cea-a2ba-cbdb0e3d3f3d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsdeleteindexifnotchangedworksonlyoncurrentresource22736597')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsdeleteindexifnotchangedworksonlyoncurrentresource02135734')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsdeleteindexifnotchangedworksonlyoncurrentresource22736597')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsdeleteindexifnotchangedworksonlyoncurrentresource02135734')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c151a17-2bfa-4728-b396-db78ba2fa44a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c44c898e-d236-446f-a11a-e94f48736025", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8290", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1c151a17-2bfa-4728-b396-db78ba2fa44a", + "request-id" : "c44c898e-d236-446f-a11a-e94f48736025", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:37:03 GMT", + "Date" : "Thu, 27 May 2021 21:15:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627D6E6AC20\"", - "client-request-id" : "1c151a17-2bfa-4728-b396-db78ba2fa44a", - "elapsed-time" : "1077", + "ETag" : "W/\"0x8D921548EFA2C1D\"", + "client-request-id" : "c44c898e-d236-446f-a11a-e94f48736025", + "elapsed-time" : "163", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8793", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627D6E6AC20\\\"\",\"name\":\"hotelsdeleteindexifnotchangedworksonlyoncurrentresource22736597\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"https://test.com/\"],\"maxAgeInSeconds\":null},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "1c151a17-2bfa-4728-b396-db78ba2fa44a", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921548EFA2C1D\\\"\",\"name\":\"hotelsdeleteindexifnotchangedworksonlyoncurrentresource02135734\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"https://test.com/\"],\"maxAgeInSeconds\":null},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "c44c898e-d236-446f-a11a-e94f48736025", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsdeleteindexifnotchangedworksonlyoncurrentresource22736597')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsdeleteindexifnotchangedworksonlyoncurrentresource02135734')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "76f30f02-0cd4-4668-ad71-d90daf39b249" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fc2bbc89-e49f-4b7c-9492-071dccd45e9f" }, "Response" : { + "content-length" : "160", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "76f30f02-0cd4-4668-ad71-d90daf39b249", + "request-id" : "fc2bbc89-e49f-4b7c-9492-071dccd45e9f", "StatusCode" : "412", - "Date" : "Fri, 02 Apr 2021 22:37:04 GMT", + "Date" : "Thu, 27 May 2021 21:15:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "76f30f02-0cd4-4668-ad71-d90daf39b249", - "elapsed-time" : "99", + "client-request-id" : "fc2bbc89-e49f-4b7c-9492-071dccd45e9f", + "elapsed-time" : "18", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "76f30f02-0cd4-4668-ad71-d90daf39b249", + "x-ms-client-request-id" : "fc2bbc89-e49f-4b7c-9492-071dccd45e9f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsdeleteindexifnotchangedworksonlyoncurrentresource22736597')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsdeleteindexifnotchangedworksonlyoncurrentresource02135734')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d28a6b80-c29f-465b-8227-f6795a3c3ea6" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0029b0f3-7f1e-4640-9849-59c99b821799" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d28a6b80-c29f-465b-8227-f6795a3c3ea6", - "elapsed-time" : "517", + "client-request-id" : "0029b0f3-7f1e-4640-9849-59c99b821799", + "elapsed-time" : "565", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "d28a6b80-c29f-465b-8227-f6795a3c3ea6", + "request-id" : "0029b0f3-7f1e-4640-9849-59c99b821799", "StatusCode" : "204", - "x-ms-client-request-id" : "d28a6b80-c29f-465b-8227-f6795a3c3ea6", - "Date" : "Fri, 02 Apr 2021 22:37:04 GMT" + "x-ms-client-request-id" : "0029b0f3-7f1e-4640-9849-59c99b821799", + "Date" : "Thu, 27 May 2021 21:15:30 GMT" }, "Exception" : null } ], - "variables" : [ "hotelsdeleteindexifnotchangedworksonlyoncurrentresource22736597" ] + "variables" : [ "hotelsdeleteindexifnotchangedworksonlyoncurrentresource02135734" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.deleteIndexIsIdempotent.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.deleteIndexIsIdempotent.json index ab852f2b3542..3db7ed4c5083 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.deleteIndexIsIdempotent.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.deleteIndexIsIdempotent.json @@ -1,104 +1,104 @@ { "networkCallRecords" : [ { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "285271e9-cd31-4768-ac46-7d629df37492" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e440c82a-2f55-4160-b55a-7989909a264e" }, "Response" : { + "content-length" : "266", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "285271e9-cd31-4768-ac46-7d629df37492", + "request-id" : "e440c82a-2f55-4160-b55a-7989909a264e", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:38:12 GMT", + "Date" : "Thu, 27 May 2021 21:16:44 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "285271e9-cd31-4768-ac46-7d629df37492", - "elapsed-time" : "18", + "client-request-id" : "e440c82a-2f55-4160-b55a-7989909a264e", + "elapsed-time" : "15", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "111", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No index with the name 'hotels' was found in a service named 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"OperationNotAllowed\",\"message\":\"No index with the name 'hotels' was found in a service named 'alzimmer-test'.\",\"details\":[{\"code\":\"IndexNotFoundInService\",\"message\":\"No index with the name 'hotels' was found in a service named 'alzimmer-test'.\"}]}}", "Content-Language" : "en", - "x-ms-client-request-id" : "285271e9-cd31-4768-ac46-7d629df37492", + "x-ms-client-request-id" : "e440c82a-2f55-4160-b55a-7989909a264e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c64868c7-310c-4ffd-87c0-b7d8566dd70a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f3a56450-7a4e-4ebd-bb42-73725cf69a89", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "627", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c64868c7-310c-4ffd-87c0-b7d8566dd70a", + "request-id" : "f3a56450-7a4e-4ebd-bb42-73725cf69a89", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:13 GMT", + "Date" : "Thu, 27 May 2021 21:16:47 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62800F965ED\"", - "client-request-id" : "c64868c7-310c-4ffd-87c0-b7d8566dd70a", - "elapsed-time" : "1648", + "ETag" : "W/\"0x8D92154BC909D79\"", + "client-request-id" : "f3a56450-7a4e-4ebd-bb42-73725cf69a89", + "elapsed-time" : "2303", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "662", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62800F965ED\\\"\",\"name\":\"hotels\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "c64868c7-310c-4ffd-87c0-b7d8566dd70a", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154BC909D79\\\"\",\"name\":\"hotels\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "f3a56450-7a4e-4ebd-bb42-73725cf69a89", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "822be715-a867-4ef1-922c-e7dad3f2377c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bff59bf6-dfbd-42b7-9da2-773f2749a145" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "822be715-a867-4ef1-922c-e7dad3f2377c", - "elapsed-time" : "561", + "client-request-id" : "bff59bf6-dfbd-42b7-9da2-773f2749a145", + "elapsed-time" : "475", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "822be715-a867-4ef1-922c-e7dad3f2377c", + "request-id" : "bff59bf6-dfbd-42b7-9da2-773f2749a145", "StatusCode" : "204", - "x-ms-client-request-id" : "822be715-a867-4ef1-922c-e7dad3f2377c", - "Date" : "Fri, 02 Apr 2021 22:38:14 GMT" + "x-ms-client-request-id" : "bff59bf6-dfbd-42b7-9da2-773f2749a145", + "Date" : "Thu, 27 May 2021 21:16:46 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e1cceac-ec8f-4408-9d12-b358196185bb" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8db0d7a3-8cdd-4a47-89a5-adf50568aab9" }, "Response" : { + "content-length" : "266", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8e1cceac-ec8f-4408-9d12-b358196185bb", + "request-id" : "8db0d7a3-8cdd-4a47-89a5-adf50568aab9", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:38:14 GMT", + "Date" : "Thu, 27 May 2021 21:16:47 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8e1cceac-ec8f-4408-9d12-b358196185bb", - "elapsed-time" : "22", + "client-request-id" : "8db0d7a3-8cdd-4a47-89a5-adf50568aab9", + "elapsed-time" : "14", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "111", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No index with the name 'hotels' was found in a service named 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"OperationNotAllowed\",\"message\":\"No index with the name 'hotels' was found in a service named 'alzimmer-test'.\",\"details\":[{\"code\":\"IndexNotFoundInService\",\"message\":\"No index with the name 'hotels' was found in a service named 'alzimmer-test'.\"}]}}", "Content-Language" : "en", - "x-ms-client-request-id" : "8e1cceac-ec8f-4408-9d12-b358196185bb", + "x-ms-client-request-id" : "8db0d7a3-8cdd-4a47-89a5-adf50568aab9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.getIndexReturnsCorrectDefinition.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.getIndexReturnsCorrectDefinition.json index 542f348b5e6f..45f165731e10 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.getIndexReturnsCorrectDefinition.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.getIndexReturnsCorrectDefinition.json @@ -1,81 +1,81 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "aa9f2605-a78f-49b5-a42a-4dd3f6153ca2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "685db98b-e5c2-47cb-ac64-242c53cd9f4e", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8303", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "aa9f2605-a78f-49b5-a42a-4dd3f6153ca2", + "request-id" : "685db98b-e5c2-47cb-ac64-242c53cd9f4e", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:32 GMT", + "Date" : "Thu, 27 May 2021 21:15:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C42065CD\"", - "client-request-id" : "aa9f2605-a78f-49b5-a42a-4dd3f6153ca2", - "elapsed-time" : "1164", + "ETag" : "W/\"0x8D921547E2C19EC\"", + "client-request-id" : "685db98b-e5c2-47cb-ac64-242c53cd9f4e", + "elapsed-time" : "1536", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8806", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C42065CD\\\"\",\"name\":\"hotelsgetindexreturnscorrectdefinition07215877bd6279377\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "aa9f2605-a78f-49b5-a42a-4dd3f6153ca2", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921547E2C19EC\\\"\",\"name\":\"hotelsgetindexreturnscorrectdefinition02a271926a6f4a77b\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "685db98b-e5c2-47cb-ac64-242c53cd9f4e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsgetindexreturnscorrectdefinition07215877bd6279377')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsgetindexreturnscorrectdefinition02a271926a6f4a77b')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetindexreturnscorrectdefinition07215877bd6279377')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetindexreturnscorrectdefinition02a271926a6f4a77b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "12abc9a7-5595-427b-a4ca-cba84357bfbc" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e96d0e8d-db43-4fd3-af87-1c875d6c6016" }, "Response" : { + "content-length" : "8303", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "12abc9a7-5595-427b-a4ca-cba84357bfbc", + "request-id" : "e96d0e8d-db43-4fd3-af87-1c875d6c6016", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:32 GMT", + "Date" : "Thu, 27 May 2021 21:15:01 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C42065CD\"", - "client-request-id" : "12abc9a7-5595-427b-a4ca-cba84357bfbc", - "elapsed-time" : "33", + "ETag" : "W/\"0x8D921547E2C19EC\"", + "client-request-id" : "e96d0e8d-db43-4fd3-af87-1c875d6c6016", + "elapsed-time" : "21", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8806", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C42065CD\\\"\",\"name\":\"hotelsgetindexreturnscorrectdefinition07215877bd6279377\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "12abc9a7-5595-427b-a4ca-cba84357bfbc", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921547E2C19EC\\\"\",\"name\":\"hotelsgetindexreturnscorrectdefinition02a271926a6f4a77b\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "e96d0e8d-db43-4fd3-af87-1c875d6c6016", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetindexreturnscorrectdefinition07215877bd6279377')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetindexreturnscorrectdefinition02a271926a6f4a77b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3e178a2-994d-41a7-b19b-5502430ffca3" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5d06906d-0eb9-4acd-a051-bb58d4630e75" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a3e178a2-994d-41a7-b19b-5502430ffca3", - "elapsed-time" : "1249", + "client-request-id" : "5d06906d-0eb9-4acd-a051-bb58d4630e75", + "elapsed-time" : "531", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "a3e178a2-994d-41a7-b19b-5502430ffca3", + "request-id" : "5d06906d-0eb9-4acd-a051-bb58d4630e75", "StatusCode" : "204", - "x-ms-client-request-id" : "a3e178a2-994d-41a7-b19b-5502430ffca3", - "Date" : "Fri, 02 Apr 2021 22:36:33 GMT" + "x-ms-client-request-id" : "5d06906d-0eb9-4acd-a051-bb58d4630e75", + "Date" : "Thu, 27 May 2021 21:15:02 GMT" }, "Exception" : null } ], - "variables" : [ "hotelsgetindexreturnscorrectdefinition07215877bd6279377" ] + "variables" : [ "hotelsgetindexreturnscorrectdefinition02a271926a6f4a77b" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.getIndexReturnsCorrectDefinitionWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.getIndexReturnsCorrectDefinitionWithResponse.json index f369b36bcff6..3b09e2a161a2 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.getIndexReturnsCorrectDefinitionWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.getIndexReturnsCorrectDefinitionWithResponse.json @@ -1,81 +1,81 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3800c77-bc45-4f5d-9aa1-e9be77680e19", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0b465d2a-cf60-48e7-a20d-2bc32e0ea6cb", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8309", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a3800c77-bc45-4f5d-9aa1-e9be77680e19", + "request-id" : "0b465d2a-cf60-48e7-a20d-2bc32e0ea6cb", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:36:34 GMT", + "Date" : "Thu, 27 May 2021 21:15:04 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C5967DF7\"", - "client-request-id" : "a3800c77-bc45-4f5d-9aa1-e9be77680e19", - "elapsed-time" : "1073", + "ETag" : "W/\"0x8D921547F748D28\"", + "client-request-id" : "0b465d2a-cf60-48e7-a20d-2bc32e0ea6cb", + "elapsed-time" : "1501", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8812", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C5967DF7\\\"\",\"name\":\"hotelsgetindexreturnscorrectdefinitionwithresponsea6f353947c9\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "a3800c77-bc45-4f5d-9aa1-e9be77680e19", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921547F748D28\\\"\",\"name\":\"hotelsgetindexreturnscorrectdefinitionwithresponse110675178dc\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "0b465d2a-cf60-48e7-a20d-2bc32e0ea6cb", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsgetindexreturnscorrectdefinitionwithresponsea6f353947c9')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsgetindexreturnscorrectdefinitionwithresponse110675178dc')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetindexreturnscorrectdefinitionwithresponsea6f353947c9')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetindexreturnscorrectdefinitionwithresponse110675178dc')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8066171c-84a7-48de-8a87-eaed77475b4d" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c9219e50-3ba6-41db-970b-2b05fc0d791f" }, "Response" : { + "content-length" : "8309", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8066171c-84a7-48de-8a87-eaed77475b4d", + "request-id" : "c9219e50-3ba6-41db-970b-2b05fc0d791f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:36:34 GMT", + "Date" : "Thu, 27 May 2021 21:15:04 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627C5967DF7\"", - "client-request-id" : "8066171c-84a7-48de-8a87-eaed77475b4d", - "elapsed-time" : "35", + "ETag" : "W/\"0x8D921547F748D28\"", + "client-request-id" : "c9219e50-3ba6-41db-970b-2b05fc0d791f", + "elapsed-time" : "21", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8812", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627C5967DF7\\\"\",\"name\":\"hotelsgetindexreturnscorrectdefinitionwithresponsea6f353947c9\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "8066171c-84a7-48de-8a87-eaed77475b4d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921547F748D28\\\"\",\"name\":\"hotelsgetindexreturnscorrectdefinitionwithresponse110675178dc\",\"defaultScoringProfile\":\"MyProfile\",\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"HotelName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Description_Custom\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":\"stop\",\"searchAnalyzer\":\"stop\",\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"synonymMaps\":[]},{\"name\":\"DescriptionFr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"TotalGuests\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"ProfitMargin\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[{\"name\":\"MyProfile\",\"functionAggregation\":\"average\",\"text\":{\"weights\":{\"Description\":1.5,\"Category\":2.0}},\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":2.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":4.0,\"constantBoostBeyondRange\":true},\"distance\":null,\"tag\":null},{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"Loc\",\"boostingDistance\":5.0},\"tag\":null},{\"fieldName\":\"LastRenovationDate\",\"interpolation\":\"logarithmic\",\"type\":\"freshness\",\"boost\":1.1,\"freshness\":{\"boostingDuration\":\"P365D\"},\"magnitude\":null,\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileTwo\",\"functionAggregation\":\"maximum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":1.5,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"MyTags\"}}]},{\"name\":\"ProfileThree\",\"functionAggregation\":\"minimum\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"quadratic\",\"type\":\"magnitude\",\"boost\":3.0,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":0.0,\"boostingRangeEnd\":10.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]},{\"name\":\"ProfileFour\",\"functionAggregation\":\"firstMatching\",\"text\":null,\"functions\":[{\"fieldName\":\"Rating\",\"interpolation\":\"constant\",\"type\":\"magnitude\",\"boost\":3.14,\"freshness\":null,\"magnitude\":{\"boostingRangeStart\":1.0,\"boostingRangeEnd\":5.0,\"constantBoostBeyondRange\":false},\"distance\":null,\"tag\":null}]}],\"corsOptions\":{\"allowedOrigins\":[\"http://tempuri.org\",\"http://localhost:80\"],\"maxAgeInSeconds\":60},\"suggesters\":[{\"name\":\"FancySuggester\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "c9219e50-3ba6-41db-970b-2b05fc0d791f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetindexreturnscorrectdefinitionwithresponsea6f353947c9')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetindexreturnscorrectdefinitionwithresponse110675178dc')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "45813de7-4414-4a2f-af46-2d4b6cf2a93e" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "92ef52c9-3590-42ff-9bd8-8a6d600b88ea" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "45813de7-4414-4a2f-af46-2d4b6cf2a93e", - "elapsed-time" : "1328", + "client-request-id" : "92ef52c9-3590-42ff-9bd8-8a6d600b88ea", + "elapsed-time" : "532", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "45813de7-4414-4a2f-af46-2d4b6cf2a93e", + "request-id" : "92ef52c9-3590-42ff-9bd8-8a6d600b88ea", "StatusCode" : "204", - "x-ms-client-request-id" : "45813de7-4414-4a2f-af46-2d4b6cf2a93e", - "Date" : "Fri, 02 Apr 2021 22:36:36 GMT" + "x-ms-client-request-id" : "92ef52c9-3590-42ff-9bd8-8a6d600b88ea", + "Date" : "Thu, 27 May 2021 21:15:04 GMT" }, "Exception" : null } ], - "variables" : [ "hotelsgetindexreturnscorrectdefinitionwithresponsea6f353947c9" ] + "variables" : [ "hotelsgetindexreturnscorrectdefinitionwithresponse110675178dc" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.getIndexThrowsOnNotFound.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.getIndexThrowsOnNotFound.json index a58406294a1f..7bef375d57ff 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.getIndexThrowsOnNotFound.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexManagementSyncTests.getIndexThrowsOnNotFound.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('thisindexdoesnotexist')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('thisindexdoesnotexist')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "97580737-81d7-4c89-844a-cb41f01b7d2b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bbd5d06f-49f0-4d48-aa32-5d8e68af9ed4" }, "Response" : { + "content-length" : "122", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "97580737-81d7-4c89-844a-cb41f01b7d2b", + "request-id" : "bbd5d06f-49f0-4d48-aa32-5d8e68af9ed4", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:37:02 GMT", + "Date" : "Thu, 27 May 2021 21:15:29 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "97580737-81d7-4c89-844a-cb41f01b7d2b", - "elapsed-time" : "24", + "client-request-id" : "bbd5d06f-49f0-4d48-aa32-5d8e68af9ed4", + "elapsed-time" : "14", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "122", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No index with the name 'thisindexdoesnotexist' was found in the service 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "97580737-81d7-4c89-844a-cb41f01b7d2b", + "x-ms-client-request-id" : "bbd5d06f-49f0-4d48-aa32-5d8e68af9ed4", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndDeleteIndexer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndDeleteIndexer.json index 8a21d757c840..544476f3608b 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndDeleteIndexer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndDeleteIndexer.json @@ -1,181 +1,181 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "24cf192b-ae92-42fb-91ca-8311a1986d89", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f66b7a86-d6c4-4e98-a371-ecba7b1a63a2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "24cf192b-ae92-42fb-91ca-8311a1986d89", + "request-id" : "f66b7a86-d6c4-4e98-a371-ecba7b1a63a2", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:13 GMT", + "Date" : "Thu, 27 May 2021 21:17:49 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282480A300\"", - "client-request-id" : "24cf192b-ae92-42fb-91ca-8311a1986d89", - "elapsed-time" : "1080", + "ETag" : "W/\"0x8D92154E1571E5D\"", + "client-request-id" : "f66b7a86-d6c4-4e98-a371-ecba7b1a63a2", + "elapsed-time" : "1437", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282480A300\\\"\",\"name\":\"indexforindexers0272310404\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "24cf192b-ae92-42fb-91ca-8311a1986d89", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154E1571E5D\\\"\",\"name\":\"indexforindexers0655887aae\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "f66b7a86-d6c4-4e98-a371-ecba7b1a63a2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers0272310404')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers0655887aae')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob4566489dc')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob19188e003')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9df9d7e8-326a-4b1b-a4dd-3a26aa0df75d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "eeea8c22-8f51-4c82-a678-8f0f7f090267", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9df9d7e8-326a-4b1b-a4dd-3a26aa0df75d", + "request-id" : "eeea8c22-8f51-4c82-a678-8f0f7f090267", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:13 GMT", + "Date" : "Thu, 27 May 2021 21:17:49 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628248F2473\"", - "client-request-id" : "9df9d7e8-326a-4b1b-a4dd-3a26aa0df75d", - "elapsed-time" : "66", + "ETag" : "W/\"0x8D92154E15F8457\"", + "client-request-id" : "eeea8c22-8f51-4c82-a678-8f0f7f090267", + "elapsed-time" : "28", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F628248F2473\\\"\",\"name\":\"azs-java-live-blob4566489dc\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "9df9d7e8-326a-4b1b-a4dd-3a26aa0df75d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154E15F8457\\\"\",\"name\":\"azs-java-live-blob19188e003\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "eeea8c22-8f51-4c82-a678-8f0f7f090267", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob4566489dc')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob19188e003')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "105a4f14-ebe7-44a8-bce4-ab6623b4db94", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "46e79bc0-5bd6-427b-9c9e-e7c5749c4755", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "105a4f14-ebe7-44a8-bce4-ab6623b4db94", + "request-id" : "46e79bc0-5bd6-427b-9c9e-e7c5749c4755", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:13 GMT", + "Date" : "Thu, 27 May 2021 21:17:49 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62824AFF89B\"", - "client-request-id" : "105a4f14-ebe7-44a8-bce4-ab6623b4db94", - "elapsed-time" : "311", + "ETag" : "W/\"0x8D92154E17BEB1A\"", + "client-request-id" : "46e79bc0-5bd6-427b-9c9e-e7c5749c4755", + "elapsed-time" : "343", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62824AFF89B\\\"\",\"name\":\"indexer875960d0e98be11\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob4566489dc\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers0272310404\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:14.6084173Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "105a4f14-ebe7-44a8-bce4-ab6623b4db94", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154E17BEB1A\\\"\",\"name\":\"indexer17691c68b8fe5c0\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob19188e003\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers0655887aae\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:49.2095477Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "46e79bc0-5bd6-427b-9c9e-e7c5749c4755", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer875960d0e98be11')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer17691c68b8fe5c0')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer875960d0e98be11')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer17691c68b8fe5c0')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d7fb083-748d-479c-bbda-910ae55ea62b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f5b92334-c56c-44eb-8ef3-7d71d7bc94d1" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1d7fb083-748d-479c-bbda-910ae55ea62b", - "elapsed-time" : "83", + "client-request-id" : "f5b92334-c56c-44eb-8ef3-7d71d7bc94d1", + "elapsed-time" : "29", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "1d7fb083-748d-479c-bbda-910ae55ea62b", + "request-id" : "f5b92334-c56c-44eb-8ef3-7d71d7bc94d1", "StatusCode" : "204", - "x-ms-client-request-id" : "1d7fb083-748d-479c-bbda-910ae55ea62b", - "Date" : "Fri, 02 Apr 2021 22:39:14 GMT" + "x-ms-client-request-id" : "f5b92334-c56c-44eb-8ef3-7d71d7bc94d1", + "Date" : "Thu, 27 May 2021 21:17:49 GMT" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer875960d0e98be11')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer17691c68b8fe5c0')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d37d1e6f-ed7e-410c-991b-65a81cb2915a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "292e0cb5-030a-4194-8bbc-ffafadbf408c" }, "Response" : { + "content-length" : "108", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d37d1e6f-ed7e-410c-991b-65a81cb2915a", + "request-id" : "292e0cb5-030a-4194-8bbc-ffafadbf408c", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:39:15 GMT", + "Date" : "Thu, 27 May 2021 21:17:49 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d37d1e6f-ed7e-410c-991b-65a81cb2915a", - "elapsed-time" : "19", + "client-request-id" : "292e0cb5-030a-4194-8bbc-ffafadbf408c", + "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "108", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"Indexer 'indexer875960d0e98be11' was not found in service 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"Indexer 'indexer17691c68b8fe5c0' was not found in service 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "d37d1e6f-ed7e-410c-991b-65a81cb2915a", + "x-ms-client-request-id" : "292e0cb5-030a-4194-8bbc-ffafadbf408c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob4566489dc')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob19188e003')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "90401bf3-5858-42d4-bee6-ebd53bbf2906" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2a03f099-2011-4779-a462-8dc93da34db9" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "90401bf3-5858-42d4-bee6-ebd53bbf2906", - "elapsed-time" : "57", + "client-request-id" : "2a03f099-2011-4779-a462-8dc93da34db9", + "elapsed-time" : "18", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "90401bf3-5858-42d4-bee6-ebd53bbf2906", + "request-id" : "2a03f099-2011-4779-a462-8dc93da34db9", "StatusCode" : "204", - "x-ms-client-request-id" : "90401bf3-5858-42d4-bee6-ebd53bbf2906", - "Date" : "Fri, 02 Apr 2021 22:39:14 GMT" + "x-ms-client-request-id" : "2a03f099-2011-4779-a462-8dc93da34db9", + "Date" : "Thu, 27 May 2021 21:17:49 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers0272310404')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers0655887aae')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "73d1771b-6416-4bad-89f6-6375d7673de8" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0be2135c-4522-416e-bf1f-03a459a192a1" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "73d1771b-6416-4bad-89f6-6375d7673de8", - "elapsed-time" : "753", + "client-request-id" : "0be2135c-4522-416e-bf1f-03a459a192a1", + "elapsed-time" : "514", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "73d1771b-6416-4bad-89f6-6375d7673de8", + "request-id" : "0be2135c-4522-416e-bf1f-03a459a192a1", "StatusCode" : "204", - "x-ms-client-request-id" : "73d1771b-6416-4bad-89f6-6375d7673de8", - "Date" : "Fri, 02 Apr 2021 22:39:15 GMT" + "x-ms-client-request-id" : "0be2135c-4522-416e-bf1f-03a459a192a1", + "Date" : "Thu, 27 May 2021 21:17:50 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers0272310404", "azs-java-live-blob4566489dc", "indexer875960d0e98be11" ] + "variables" : [ "indexforindexers0655887aae", "azs-java-live-blob19188e003", "indexer17691c68b8fe5c0" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndDeleteIndexerWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndDeleteIndexerWithResponse.json index 7f39f3bf6c73..c4f0d80c007b 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndDeleteIndexerWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndDeleteIndexerWithResponse.json @@ -1,181 +1,181 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea2886a2-af6e-479e-bec2-fc2cf82d83c1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a6d8b53b-3f2b-496e-89c7-ef47adc283f7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ea2886a2-af6e-479e-bec2-fc2cf82d83c1", + "request-id" : "a6d8b53b-3f2b-496e-89c7-ef47adc283f7", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:16 GMT", + "Date" : "Thu, 27 May 2021 21:17:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62826016BA5\"", - "client-request-id" : "ea2886a2-af6e-479e-bec2-fc2cf82d83c1", - "elapsed-time" : "1041", + "ETag" : "W/\"0x8D92154E2E001B9\"", + "client-request-id" : "a6d8b53b-3f2b-496e-89c7-ef47adc283f7", + "elapsed-time" : "1450", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62826016BA5\\\"\",\"name\":\"indexforindexers83245795df\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "ea2886a2-af6e-479e-bec2-fc2cf82d83c1", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154E2E001B9\\\"\",\"name\":\"indexforindexers26878575a9\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "a6d8b53b-3f2b-496e-89c7-ef47adc283f7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers83245795df')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers26878575a9')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob5600845c0')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob50958832b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b7591ef-7e41-4c63-8928-1b55dff64241", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5cc4e8c0-99b0-4414-b757-1a611b2c13a8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3b7591ef-7e41-4c63-8928-1b55dff64241", + "request-id" : "5cc4e8c0-99b0-4414-b757-1a611b2c13a8", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:17 GMT", + "Date" : "Thu, 27 May 2021 21:17:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62826108973\"", - "client-request-id" : "3b7591ef-7e41-4c63-8928-1b55dff64241", - "elapsed-time" : "76", + "ETag" : "W/\"0x8D92154E2E95234\"", + "client-request-id" : "5cc4e8c0-99b0-4414-b757-1a611b2c13a8", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F62826108973\\\"\",\"name\":\"azs-java-live-blob5600845c0\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "3b7591ef-7e41-4c63-8928-1b55dff64241", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154E2E95234\\\"\",\"name\":\"azs-java-live-blob50958832b\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "5cc4e8c0-99b0-4414-b757-1a611b2c13a8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob5600845c0')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob50958832b')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a2f04b3-3a9a-42e3-b7ab-d803cb0b9ce0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "93073480-8aa5-4800-b3da-687bbb746e79", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9a2f04b3-3a9a-42e3-b7ab-d803cb0b9ce0", + "request-id" : "93073480-8aa5-4800-b3da-687bbb746e79", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:16 GMT", + "Date" : "Thu, 27 May 2021 21:17:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282634E0A5\"", - "client-request-id" : "9a2f04b3-3a9a-42e3-b7ab-d803cb0b9ce0", - "elapsed-time" : "317", + "ETag" : "W/\"0x8D92154E3032079\"", + "client-request-id" : "93073480-8aa5-4800-b3da-687bbb746e79", + "elapsed-time" : "261", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "475", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282634E0A5\\\"\",\"name\":\"indexer256502098da574d\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob5600845c0\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers83245795df\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:17.132816Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "9a2f04b3-3a9a-42e3-b7ab-d803cb0b9ce0", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154E3032079\\\"\",\"name\":\"indexer86419eccb75ac84\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob50958832b\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers26878575a9\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:51.7903816Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "93073480-8aa5-4800-b3da-687bbb746e79", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer256502098da574d')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer86419eccb75ac84')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer256502098da574d')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer86419eccb75ac84')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c2def319-ae6c-4af4-bf17-5c3b62cbfeed" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2a11136d-e1af-4cb3-b062-9ca24b87999c" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c2def319-ae6c-4af4-bf17-5c3b62cbfeed", - "elapsed-time" : "91", + "client-request-id" : "2a11136d-e1af-4cb3-b062-9ca24b87999c", + "elapsed-time" : "32", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "c2def319-ae6c-4af4-bf17-5c3b62cbfeed", + "request-id" : "2a11136d-e1af-4cb3-b062-9ca24b87999c", "StatusCode" : "204", - "x-ms-client-request-id" : "c2def319-ae6c-4af4-bf17-5c3b62cbfeed", - "Date" : "Fri, 02 Apr 2021 22:39:17 GMT" + "x-ms-client-request-id" : "2a11136d-e1af-4cb3-b062-9ca24b87999c", + "Date" : "Thu, 27 May 2021 21:17:51 GMT" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer256502098da574d')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer86419eccb75ac84')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e65b3d32-86c9-4890-a281-023dcbbdd1dc" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "62f45994-7da2-4b54-9187-3ab79b6be1dc" }, "Response" : { + "content-length" : "108", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e65b3d32-86c9-4890-a281-023dcbbdd1dc", + "request-id" : "62f45994-7da2-4b54-9187-3ab79b6be1dc", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:39:16 GMT", + "Date" : "Thu, 27 May 2021 21:17:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e65b3d32-86c9-4890-a281-023dcbbdd1dc", - "elapsed-time" : "18", + "client-request-id" : "62f45994-7da2-4b54-9187-3ab79b6be1dc", + "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "108", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"Indexer 'indexer256502098da574d' was not found in service 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"Indexer 'indexer86419eccb75ac84' was not found in service 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "e65b3d32-86c9-4890-a281-023dcbbdd1dc", + "x-ms-client-request-id" : "62f45994-7da2-4b54-9187-3ab79b6be1dc", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob5600845c0')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob50958832b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e1215ddd-8002-467a-a583-b9f184e24037" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "35105493-5dbd-423f-a135-3d1d2ffec65d" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e1215ddd-8002-467a-a583-b9f184e24037", - "elapsed-time" : "59", + "client-request-id" : "35105493-5dbd-423f-a135-3d1d2ffec65d", + "elapsed-time" : "17", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "e1215ddd-8002-467a-a583-b9f184e24037", + "request-id" : "35105493-5dbd-423f-a135-3d1d2ffec65d", "StatusCode" : "204", - "x-ms-client-request-id" : "e1215ddd-8002-467a-a583-b9f184e24037", - "Date" : "Fri, 02 Apr 2021 22:39:17 GMT" + "x-ms-client-request-id" : "35105493-5dbd-423f-a135-3d1d2ffec65d", + "Date" : "Thu, 27 May 2021 21:17:51 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers83245795df')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers26878575a9')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d783fa4-e55d-460a-bf0b-3ae5f5a024ce" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "76a59e9e-4662-48e3-8112-46a80977a308" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7d783fa4-e55d-460a-bf0b-3ae5f5a024ce", - "elapsed-time" : "794", + "client-request-id" : "76a59e9e-4662-48e3-8112-46a80977a308", + "elapsed-time" : "490", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "7d783fa4-e55d-460a-bf0b-3ae5f5a024ce", + "request-id" : "76a59e9e-4662-48e3-8112-46a80977a308", "StatusCode" : "204", - "x-ms-client-request-id" : "7d783fa4-e55d-460a-bf0b-3ae5f5a024ce", - "Date" : "Fri, 02 Apr 2021 22:39:18 GMT" + "x-ms-client-request-id" : "76a59e9e-4662-48e3-8112-46a80977a308", + "Date" : "Thu, 27 May 2021 21:17:51 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers83245795df", "azs-java-live-blob5600845c0", "indexer256502098da574d" ] + "variables" : [ "indexforindexers26878575a9", "azs-java-live-blob50958832b", "indexer86419eccb75ac84" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndGetIndexer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndGetIndexer.json index 0eaa14688b82..3b4796233b16 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndGetIndexer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndGetIndexer.json @@ -1,208 +1,208 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b249f56c-3f20-423c-8fec-892b2098c3f2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0ec725b2-d4c0-497e-bfc0-9c6d4c682609", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b249f56c-3f20-423c-8fec-892b2098c3f2", + "request-id" : "0ec725b2-d4c0-497e-bfc0-9c6d4c682609", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:55 GMT", + "Date" : "Thu, 27 May 2021 21:17:31 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62819B62326\"", - "client-request-id" : "b249f56c-3f20-423c-8fec-892b2098c3f2", - "elapsed-time" : "1070", + "ETag" : "W/\"0x8D92154D6D49B33\"", + "client-request-id" : "0ec725b2-d4c0-497e-bfc0-9c6d4c682609", + "elapsed-time" : "1492", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62819B62326\\\"\",\"name\":\"indexforindexers6758070a00\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "b249f56c-3f20-423c-8fec-892b2098c3f2", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154D6D49B33\\\"\",\"name\":\"indexforindexers3137314348\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "0ec725b2-d4c0-497e-bfc0-9c6d4c682609", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers6758070a00')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers3137314348')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob9399672dc')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob49190094d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9d7df5c2-2b2b-4c55-98ae-33cbc3d46209", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "56bb74ec-d08b-4f40-90c0-3bc863bfb9b1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9d7df5c2-2b2b-4c55-98ae-33cbc3d46209", + "request-id" : "56bb74ec-d08b-4f40-90c0-3bc863bfb9b1", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:56 GMT", + "Date" : "Thu, 27 May 2021 21:17:31 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62819C45672\"", - "client-request-id" : "9d7df5c2-2b2b-4c55-98ae-33cbc3d46209", - "elapsed-time" : "64", + "ETag" : "W/\"0x8D92154D6DE8814\"", + "client-request-id" : "56bb74ec-d08b-4f40-90c0-3bc863bfb9b1", + "elapsed-time" : "38", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F62819C45672\\\"\",\"name\":\"azs-java-live-blob9399672dc\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "9d7df5c2-2b2b-4c55-98ae-33cbc3d46209", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154D6DE8814\\\"\",\"name\":\"azs-java-live-blob49190094d\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "56bb74ec-d08b-4f40-90c0-3bc863bfb9b1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob9399672dc')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob49190094d')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "84ff20d5-b3e7-4242-975a-da3804025d9f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ea3d344e-e48d-48ab-b372-3f3002bb09d5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "84ff20d5-b3e7-4242-975a-da3804025d9f", + "request-id" : "ea3d344e-e48d-48ab-b372-3f3002bb09d5", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:56 GMT", + "Date" : "Thu, 27 May 2021 21:17:31 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62819E578D3\"", - "client-request-id" : "84ff20d5-b3e7-4242-975a-da3804025d9f", - "elapsed-time" : "321", + "ETag" : "W/\"0x8D92154D6FC9CE1\"", + "client-request-id" : "ea3d344e-e48d-48ab-b372-3f3002bb09d5", + "elapsed-time" : "284", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62819E578D3\\\"\",\"name\":\"indexer697922d183e5f27\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob9399672dc\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers6758070a00\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:56.5076211Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "84ff20d5-b3e7-4242-975a-da3804025d9f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154D6FC9CE1\\\"\",\"name\":\"indexer536164ee8fd57a9\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob49190094d\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers3137314348\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:31.5990083Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "ea3d344e-e48d-48ab-b372-3f3002bb09d5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer697922d183e5f27')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer536164ee8fd57a9')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer697922d183e5f27')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer536164ee8fd57a9')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c214c87e-81b5-48a6-8ae4-2c64dbc66f32" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f1359aad-b49b-4aeb-9e35-711a186585ad" }, "Response" : { + "content-length" : "459", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c214c87e-81b5-48a6-8ae4-2c64dbc66f32", + "request-id" : "f1359aad-b49b-4aeb-9e35-711a186585ad", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:38:56 GMT", + "Date" : "Thu, 27 May 2021 21:17:31 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62819E578D3\"", - "client-request-id" : "c214c87e-81b5-48a6-8ae4-2c64dbc66f32", - "elapsed-time" : "18", + "ETag" : "W/\"0x8D92154D6FC9CE1\"", + "client-request-id" : "f1359aad-b49b-4aeb-9e35-711a186585ad", + "elapsed-time" : "12", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "472", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62819E578D3\\\"\",\"name\":\"indexer697922d183e5f27\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob9399672dc\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers6758070a00\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:56.507Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "c214c87e-81b5-48a6-8ae4-2c64dbc66f32", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154D6FC9CE1\\\"\",\"name\":\"indexer536164ee8fd57a9\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob49190094d\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers3137314348\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:31.599Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "f1359aad-b49b-4aeb-9e35-711a186585ad", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer697922d183e5f27')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer536164ee8fd57a9')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b0b90d9a-9ddd-4f45-ad18-c4f52f90fae4" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b5727fb8-8dde-4bf4-a1e5-97aa199ce09d" }, "Response" : { + "content-length" : "459", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b0b90d9a-9ddd-4f45-ad18-c4f52f90fae4", + "request-id" : "b5727fb8-8dde-4bf4-a1e5-97aa199ce09d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:38:56 GMT", + "Date" : "Thu, 27 May 2021 21:17:31 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62819E578D3\"", - "client-request-id" : "b0b90d9a-9ddd-4f45-ad18-c4f52f90fae4", - "elapsed-time" : "13", + "ETag" : "W/\"0x8D92154D6FC9CE1\"", + "client-request-id" : "b5727fb8-8dde-4bf4-a1e5-97aa199ce09d", + "elapsed-time" : "7", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "472", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62819E578D3\\\"\",\"name\":\"indexer697922d183e5f27\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob9399672dc\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers6758070a00\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:56.507Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "b0b90d9a-9ddd-4f45-ad18-c4f52f90fae4", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154D6FC9CE1\\\"\",\"name\":\"indexer536164ee8fd57a9\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob49190094d\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers3137314348\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:31.599Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "b5727fb8-8dde-4bf4-a1e5-97aa199ce09d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob9399672dc')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob49190094d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "15a759d8-2d67-49d9-9470-b35e222df1b4" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1b99c722-b0a0-4cd6-a65d-af3ca9425b41" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "15a759d8-2d67-49d9-9470-b35e222df1b4", - "elapsed-time" : "44", + "client-request-id" : "1b99c722-b0a0-4cd6-a65d-af3ca9425b41", + "elapsed-time" : "18", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "15a759d8-2d67-49d9-9470-b35e222df1b4", + "request-id" : "1b99c722-b0a0-4cd6-a65d-af3ca9425b41", "StatusCode" : "204", - "x-ms-client-request-id" : "15a759d8-2d67-49d9-9470-b35e222df1b4", - "Date" : "Fri, 02 Apr 2021 22:38:56 GMT" + "x-ms-client-request-id" : "1b99c722-b0a0-4cd6-a65d-af3ca9425b41", + "Date" : "Thu, 27 May 2021 21:17:31 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer697922d183e5f27')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer536164ee8fd57a9')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "45de058e-3ee6-4557-801c-2415585ded45" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c1ae763b-fe26-4453-bc7b-b2a30e19e39c" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "45de058e-3ee6-4557-801c-2415585ded45", - "elapsed-time" : "84", + "client-request-id" : "c1ae763b-fe26-4453-bc7b-b2a30e19e39c", + "elapsed-time" : "29", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "45de058e-3ee6-4557-801c-2415585ded45", + "request-id" : "c1ae763b-fe26-4453-bc7b-b2a30e19e39c", "StatusCode" : "204", - "x-ms-client-request-id" : "45de058e-3ee6-4557-801c-2415585ded45", - "Date" : "Fri, 02 Apr 2021 22:38:56 GMT" + "x-ms-client-request-id" : "c1ae763b-fe26-4453-bc7b-b2a30e19e39c", + "Date" : "Thu, 27 May 2021 21:17:31 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers6758070a00')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers3137314348')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b53ef37a-0e19-490a-87fb-d85883f620a7" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f3840dd2-aa98-45f5-afb6-c15b221169d9" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b53ef37a-0e19-490a-87fb-d85883f620a7", - "elapsed-time" : "709", + "client-request-id" : "f3840dd2-aa98-45f5-afb6-c15b221169d9", + "elapsed-time" : "519", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "b53ef37a-0e19-490a-87fb-d85883f620a7", + "request-id" : "f3840dd2-aa98-45f5-afb6-c15b221169d9", "StatusCode" : "204", - "x-ms-client-request-id" : "b53ef37a-0e19-490a-87fb-d85883f620a7", - "Date" : "Fri, 02 Apr 2021 22:38:57 GMT" + "x-ms-client-request-id" : "f3840dd2-aa98-45f5-afb6-c15b221169d9", + "Date" : "Thu, 27 May 2021 21:17:32 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers6758070a00", "azs-java-live-blob9399672dc", "indexer697922d183e5f27" ] + "variables" : [ "indexforindexers3137314348", "azs-java-live-blob49190094d", "indexer536164ee8fd57a9" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndListIndexerNames.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndListIndexerNames.json index 55ecf5c96f65..b35840eb9a54 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndListIndexerNames.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndListIndexerNames.json @@ -1,230 +1,230 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5436901-b0a5-4180-ae79-2ccc96c47abe", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "dab8b9c7-fdee-426d-8d4f-b4ee27165ad6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f5436901-b0a5-4180-ae79-2ccc96c47abe", + "request-id" : "dab8b9c7-fdee-426d-8d4f-b4ee27165ad6", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:40 GMT", + "Date" : "Thu, 27 May 2021 21:17:12 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628103B1A0A\"", - "client-request-id" : "f5436901-b0a5-4180-ae79-2ccc96c47abe", - "elapsed-time" : "1168", + "ETag" : "W/\"0x8D92154CBF7D96F\"", + "client-request-id" : "dab8b9c7-fdee-426d-8d4f-b4ee27165ad6", + "elapsed-time" : "1608", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F628103B1A0A\\\"\",\"name\":\"indexforindexers27510e9465\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "f5436901-b0a5-4180-ae79-2ccc96c47abe", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154CBF7D96F\\\"\",\"name\":\"indexforindexers45778f54a3\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "dab8b9c7-fdee-426d-8d4f-b4ee27165ad6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers27510e9465')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers45778f54a3')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob84458a5e2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob723536e5f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef294bb3-ca57-407c-9d72-e700ea19b7b9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e0b2adbb-a6f0-4052-8213-aed706ee8feb", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ef294bb3-ca57-407c-9d72-e700ea19b7b9", + "request-id" : "e0b2adbb-a6f0-4052-8213-aed706ee8feb", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:40 GMT", + "Date" : "Thu, 27 May 2021 21:17:12 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62810499B88\"", - "client-request-id" : "ef294bb3-ca57-407c-9d72-e700ea19b7b9", - "elapsed-time" : "63", + "ETag" : "W/\"0x8D92154CC0D6128\"", + "client-request-id" : "e0b2adbb-a6f0-4052-8213-aed706ee8feb", + "elapsed-time" : "28", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F62810499B88\\\"\",\"name\":\"azs-java-live-blob84458a5e2\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "ef294bb3-ca57-407c-9d72-e700ea19b7b9", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154CC0D6128\\\"\",\"name\":\"azs-java-live-blob723536e5f\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "e0b2adbb-a6f0-4052-8213-aed706ee8feb", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob84458a5e2')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob723536e5f')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "074ef28e-e33f-41d6-911e-afaf01ffde97", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1239096a-854b-49de-bee1-03cfd18711a5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "464", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "074ef28e-e33f-41d6-911e-afaf01ffde97", + "request-id" : "1239096a-854b-49de-bee1-03cfd18711a5", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:40 GMT", + "Date" : "Thu, 27 May 2021 21:17:12 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62810673AD0\"", - "client-request-id" : "074ef28e-e33f-41d6-911e-afaf01ffde97", - "elapsed-time" : "278", + "ETag" : "W/\"0x8D92154CC342A25\"", + "client-request-id" : "1239096a-854b-49de-bee1-03cfd18711a5", + "elapsed-time" : "348", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "477", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62810673AD0\\\"\",\"name\":\"aindexer252378d0b716d09\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob84458a5e2\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers27510e9465\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:40.5932942Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "074ef28e-e33f-41d6-911e-afaf01ffde97", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154CC342A25\\\"\",\"name\":\"aindexer577675eb63778d0\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob723536e5f\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers45778f54a3\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:13.4431469Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "1239096a-854b-49de-bee1-03cfd18711a5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('aindexer252378d0b716d09')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('aindexer577675eb63778d0')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9494f173-781a-4b53-a717-3df667882bec", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5505239b-1fdf-4087-a61e-1f7a010024a9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "464", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9494f173-781a-4b53-a717-3df667882bec", + "request-id" : "5505239b-1fdf-4087-a61e-1f7a010024a9", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:40 GMT", + "Date" : "Thu, 27 May 2021 21:17:13 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62810995006\"", - "client-request-id" : "9494f173-781a-4b53-a717-3df667882bec", - "elapsed-time" : "329", + "ETag" : "W/\"0x8D92154CC683BE5\"", + "client-request-id" : "5505239b-1fdf-4087-a61e-1f7a010024a9", + "elapsed-time" : "316", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "477", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62810995006\\\"\",\"name\":\"bindexer82239065d26d6e1\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob84458a5e2\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers27510e9465\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:40.9050976Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "9494f173-781a-4b53-a717-3df667882bec", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154CC683BE5\\\"\",\"name\":\"bindexer717920dec9e53d9\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob723536e5f\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers45778f54a3\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:13.8200299Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "5505239b-1fdf-4087-a61e-1f7a010024a9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('bindexer82239065d26d6e1')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('bindexer717920dec9e53d9')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexers?$select=name&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?$select=name&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "760785ca-7fba-46e3-9326-5807fb7e1af9" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9b49bf44-b798-4977-934e-41f0678134d5" }, "Response" : { + "content-length" : "166", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "760785ca-7fba-46e3-9326-5807fb7e1af9", + "request-id" : "9b49bf44-b798-4977-934e-41f0678134d5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:38:41 GMT", + "Date" : "Thu, 27 May 2021 21:17:13 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "760785ca-7fba-46e3-9326-5807fb7e1af9", - "elapsed-time" : "22", + "client-request-id" : "9b49bf44-b798-4977-934e-41f0678134d5", + "elapsed-time" : "10", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "166", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers(name)\",\"value\":[{\"name\":\"aindexer252378d0b716d09\"},{\"name\":\"bindexer82239065d26d6e1\"}]}", - "x-ms-client-request-id" : "760785ca-7fba-46e3-9326-5807fb7e1af9", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers(name)\",\"value\":[{\"name\":\"aindexer577675eb63778d0\"},{\"name\":\"bindexer717920dec9e53d9\"}]}", + "x-ms-client-request-id" : "9b49bf44-b798-4977-934e-41f0678134d5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob84458a5e2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob723536e5f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "aec8e29a-7a08-4f4a-a8c3-564c869ead05" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bc839b2f-05a5-412a-ae44-a0b052d3310b" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "aec8e29a-7a08-4f4a-a8c3-564c869ead05", - "elapsed-time" : "87", + "client-request-id" : "bc839b2f-05a5-412a-ae44-a0b052d3310b", + "elapsed-time" : "15", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "aec8e29a-7a08-4f4a-a8c3-564c869ead05", + "request-id" : "bc839b2f-05a5-412a-ae44-a0b052d3310b", "StatusCode" : "204", - "x-ms-client-request-id" : "aec8e29a-7a08-4f4a-a8c3-564c869ead05", - "Date" : "Fri, 02 Apr 2021 22:38:40 GMT" + "x-ms-client-request-id" : "bc839b2f-05a5-412a-ae44-a0b052d3310b", + "Date" : "Thu, 27 May 2021 21:17:13 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('aindexer252378d0b716d09')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('aindexer577675eb63778d0')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "36387d88-c4da-4d42-92c0-eb889da2907a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fb3eb1b0-58ee-4be8-9070-1d03e08831ba" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "36387d88-c4da-4d42-92c0-eb889da2907a", - "elapsed-time" : "68", + "client-request-id" : "fb3eb1b0-58ee-4be8-9070-1d03e08831ba", + "elapsed-time" : "33", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "36387d88-c4da-4d42-92c0-eb889da2907a", + "request-id" : "fb3eb1b0-58ee-4be8-9070-1d03e08831ba", "StatusCode" : "204", - "x-ms-client-request-id" : "36387d88-c4da-4d42-92c0-eb889da2907a", - "Date" : "Fri, 02 Apr 2021 22:38:41 GMT" + "x-ms-client-request-id" : "fb3eb1b0-58ee-4be8-9070-1d03e08831ba", + "Date" : "Thu, 27 May 2021 21:17:13 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('bindexer82239065d26d6e1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('bindexer717920dec9e53d9')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4471ae2c-1f9c-4662-81c8-d5eaf782d075" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "34bc05a8-8288-4cdb-b311-8644c3e47abb" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4471ae2c-1f9c-4662-81c8-d5eaf782d075", - "elapsed-time" : "85", + "client-request-id" : "34bc05a8-8288-4cdb-b311-8644c3e47abb", + "elapsed-time" : "30", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "4471ae2c-1f9c-4662-81c8-d5eaf782d075", + "request-id" : "34bc05a8-8288-4cdb-b311-8644c3e47abb", "StatusCode" : "204", - "x-ms-client-request-id" : "4471ae2c-1f9c-4662-81c8-d5eaf782d075", - "Date" : "Fri, 02 Apr 2021 22:38:41 GMT" + "x-ms-client-request-id" : "34bc05a8-8288-4cdb-b311-8644c3e47abb", + "Date" : "Thu, 27 May 2021 21:17:13 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers27510e9465')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers45778f54a3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "279ce1b8-439a-4b73-9303-be81db9dacef" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "63f9b644-45b6-4774-a7ac-3e9714806a08" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "279ce1b8-439a-4b73-9303-be81db9dacef", - "elapsed-time" : "537", + "client-request-id" : "63f9b644-45b6-4774-a7ac-3e9714806a08", + "elapsed-time" : "495", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "279ce1b8-439a-4b73-9303-be81db9dacef", + "request-id" : "63f9b644-45b6-4774-a7ac-3e9714806a08", "StatusCode" : "204", - "x-ms-client-request-id" : "279ce1b8-439a-4b73-9303-be81db9dacef", - "Date" : "Fri, 02 Apr 2021 22:38:41 GMT" + "x-ms-client-request-id" : "63f9b644-45b6-4774-a7ac-3e9714806a08", + "Date" : "Thu, 27 May 2021 21:17:13 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers27510e9465", "azs-java-live-blob84458a5e2", "indexer252378d0b716d09", "indexer82239065d26d6e1" ] + "variables" : [ "indexforindexers45778f54a3", "azs-java-live-blob723536e5f", "indexer577675eb63778d0", "indexer717920dec9e53d9" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndListIndexers.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndListIndexers.json index 3502401f8414..5d795c7f0841 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndListIndexers.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateAndListIndexers.json @@ -1,230 +1,230 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b1e3b55-682d-4bcc-a63c-ea8b4443cd04", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e3ad50de-0dcd-45b8-9c8c-82b382bb5d6d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3b1e3b55-682d-4bcc-a63c-ea8b4443cd04", + "request-id" : "e3ad50de-0dcd-45b8-9c8c-82b382bb5d6d", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:24 GMT", + "Date" : "Thu, 27 May 2021 21:17:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282AB98473\"", - "client-request-id" : "3b1e3b55-682d-4bcc-a63c-ea8b4443cd04", - "elapsed-time" : "1087", + "ETag" : "W/\"0x8D92154E7877F5A\"", + "client-request-id" : "e3ad50de-0dcd-45b8-9c8c-82b382bb5d6d", + "elapsed-time" : "1439", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282AB98473\\\"\",\"name\":\"indexforindexers55768531a8\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "3b1e3b55-682d-4bcc-a63c-ea8b4443cd04", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154E7877F5A\\\"\",\"name\":\"indexforindexers7687030ec6\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "e3ad50de-0dcd-45b8-9c8c-82b382bb5d6d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers55768531a8')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers7687030ec6')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob34368b235')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob03906d01d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "59992795-45a2-4bef-b55b-8e857c3ca624", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d1d235c5-c89e-4b92-8432-d6243390fbe2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "59992795-45a2-4bef-b55b-8e857c3ca624", + "request-id" : "d1d235c5-c89e-4b92-8432-d6243390fbe2", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:25 GMT", + "Date" : "Thu, 27 May 2021 21:17:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282ACE488B\"", - "client-request-id" : "59992795-45a2-4bef-b55b-8e857c3ca624", - "elapsed-time" : "106", + "ETag" : "W/\"0x8D92154E7916C3F\"", + "client-request-id" : "d1d235c5-c89e-4b92-8432-d6243390fbe2", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282ACE488B\\\"\",\"name\":\"azs-java-live-blob34368b235\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "59992795-45a2-4bef-b55b-8e857c3ca624", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154E7916C3F\\\"\",\"name\":\"azs-java-live-blob03906d01d\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "d1d235c5-c89e-4b92-8432-d6243390fbe2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob34368b235')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob03906d01d')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "40405a1f-2537-4105-bdde-899bacbf332d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "08c1b66a-7521-4250-8439-00b561e281c6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "464", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "40405a1f-2537-4105-bdde-899bacbf332d", + "request-id" : "08c1b66a-7521-4250-8439-00b561e281c6", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:24 GMT", + "Date" : "Thu, 27 May 2021 21:17:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282AEDBCDE\"", - "client-request-id" : "40405a1f-2537-4105-bdde-899bacbf332d", - "elapsed-time" : "337", + "ETag" : "W/\"0x8D92154E7AEBD8D\"", + "client-request-id" : "08c1b66a-7521-4250-8439-00b561e281c6", + "elapsed-time" : "283", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "477", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282AEDBCDE\\\"\",\"name\":\"aindexer530081a6a9efe70\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob34368b235\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers55768531a8\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:25.0875424Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "40405a1f-2537-4105-bdde-899bacbf332d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154E7AEBD8D\\\"\",\"name\":\"aindexer6951220be387048\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob03906d01d\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers7687030ec6\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:59.6092215Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "08c1b66a-7521-4250-8439-00b561e281c6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('aindexer530081a6a9efe70')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('aindexer6951220be387048')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5ae0ee4-e20e-4d4b-a905-da9a79d79b6c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "aabdfbab-99a6-4e07-8879-34ff8b2cd4b7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "464", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f5ae0ee4-e20e-4d4b-a905-da9a79d79b6c", + "request-id" : "aabdfbab-99a6-4e07-8879-34ff8b2cd4b7", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:25 GMT", + "Date" : "Thu, 27 May 2021 21:17:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282B21CE42\"", - "client-request-id" : "f5ae0ee4-e20e-4d4b-a905-da9a79d79b6c", - "elapsed-time" : "279", + "ETag" : "W/\"0x8D92154E7DCB3BD\"", + "client-request-id" : "aabdfbab-99a6-4e07-8879-34ff8b2cd4b7", + "elapsed-time" : "270", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "477", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282B21CE42\\\"\",\"name\":\"bindexer9619993adb4d818\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob34368b235\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers55768531a8\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:25.4479869Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "f5ae0ee4-e20e-4d4b-a905-da9a79d79b6c", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154E7DCB3BD\\\"\",\"name\":\"bindexer88531564d2af434\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob03906d01d\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers7687030ec6\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:59.9248046Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "aabdfbab-99a6-4e07-8879-34ff8b2cd4b7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('bindexer9619993adb4d818')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('bindexer88531564d2af434')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd46006e-6bb8-4773-94b3-2fff9509a615" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "71359cd0-62d6-4976-91a6-e71a44830b99" }, "Response" : { + "content-length" : "838", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "cd46006e-6bb8-4773-94b3-2fff9509a615", + "request-id" : "71359cd0-62d6-4976-91a6-e71a44830b99", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:24 GMT", + "Date" : "Thu, 27 May 2021 21:17:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "cd46006e-6bb8-4773-94b3-2fff9509a615", - "elapsed-time" : "32", + "client-request-id" : "71359cd0-62d6-4976-91a6-e71a44830b99", + "elapsed-time" : "18", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "864", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers\",\"value\":[{\"@odata.etag\":\"\\\"0x8D8F6282AEDBCDE\\\"\",\"name\":\"aindexer530081a6a9efe70\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob34368b235\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers55768531a8\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:25.087Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null},{\"@odata.etag\":\"\\\"0x8D8F6282B21CE42\\\"\",\"name\":\"bindexer9619993adb4d818\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob34368b235\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers55768531a8\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:25.447Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}]}", - "x-ms-client-request-id" : "cd46006e-6bb8-4773-94b3-2fff9509a615", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers\",\"value\":[{\"@odata.etag\":\"\\\"0x8D92154E7AEBD8D\\\"\",\"name\":\"aindexer6951220be387048\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob03906d01d\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers7687030ec6\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:59.609Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null},{\"@odata.etag\":\"\\\"0x8D92154E7DCB3BD\\\"\",\"name\":\"bindexer88531564d2af434\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob03906d01d\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers7687030ec6\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:59.924Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}]}", + "x-ms-client-request-id" : "71359cd0-62d6-4976-91a6-e71a44830b99", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob34368b235')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob03906d01d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4eae39c9-ade8-412d-8ff4-b437ebafa050" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c720986d-e61a-4067-9417-3d437a248317" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4eae39c9-ade8-412d-8ff4-b437ebafa050", - "elapsed-time" : "47", + "client-request-id" : "c720986d-e61a-4067-9417-3d437a248317", + "elapsed-time" : "16", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "4eae39c9-ade8-412d-8ff4-b437ebafa050", + "request-id" : "c720986d-e61a-4067-9417-3d437a248317", "StatusCode" : "204", - "x-ms-client-request-id" : "4eae39c9-ade8-412d-8ff4-b437ebafa050", - "Date" : "Fri, 02 Apr 2021 22:39:25 GMT" + "x-ms-client-request-id" : "c720986d-e61a-4067-9417-3d437a248317", + "Date" : "Thu, 27 May 2021 21:17:59 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('aindexer530081a6a9efe70')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('aindexer6951220be387048')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d69e33b-4b2e-4b9a-882d-3c1f7c826dc1" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "cfd480f9-8cc5-495e-b82b-b17718cf40d4" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1d69e33b-4b2e-4b9a-882d-3c1f7c826dc1", - "elapsed-time" : "74", + "client-request-id" : "cfd480f9-8cc5-495e-b82b-b17718cf40d4", + "elapsed-time" : "34", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "1d69e33b-4b2e-4b9a-882d-3c1f7c826dc1", + "request-id" : "cfd480f9-8cc5-495e-b82b-b17718cf40d4", "StatusCode" : "204", - "x-ms-client-request-id" : "1d69e33b-4b2e-4b9a-882d-3c1f7c826dc1", - "Date" : "Fri, 02 Apr 2021 22:39:25 GMT" + "x-ms-client-request-id" : "cfd480f9-8cc5-495e-b82b-b17718cf40d4", + "Date" : "Thu, 27 May 2021 21:17:59 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('bindexer9619993adb4d818')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('bindexer88531564d2af434')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bc82e534-4ed6-41f2-8c0d-3602f399fb99" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2e602194-01b7-4c11-bf6a-5945fd0c0f3e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "bc82e534-4ed6-41f2-8c0d-3602f399fb99", - "elapsed-time" : "79", + "client-request-id" : "2e602194-01b7-4c11-bf6a-5945fd0c0f3e", + "elapsed-time" : "31", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "bc82e534-4ed6-41f2-8c0d-3602f399fb99", + "request-id" : "2e602194-01b7-4c11-bf6a-5945fd0c0f3e", "StatusCode" : "204", - "x-ms-client-request-id" : "bc82e534-4ed6-41f2-8c0d-3602f399fb99", - "Date" : "Fri, 02 Apr 2021 22:39:25 GMT" + "x-ms-client-request-id" : "2e602194-01b7-4c11-bf6a-5945fd0c0f3e", + "Date" : "Thu, 27 May 2021 21:17:59 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers55768531a8')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers7687030ec6')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9058cfe-e8fe-4184-a9dc-50f9f7be4467" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c7ec89a9-682c-4be4-b0d8-c04f3183070f" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f9058cfe-e8fe-4184-a9dc-50f9f7be4467", - "elapsed-time" : "543", + "client-request-id" : "c7ec89a9-682c-4be4-b0d8-c04f3183070f", + "elapsed-time" : "485", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "f9058cfe-e8fe-4184-a9dc-50f9f7be4467", + "request-id" : "c7ec89a9-682c-4be4-b0d8-c04f3183070f", "StatusCode" : "204", - "x-ms-client-request-id" : "f9058cfe-e8fe-4184-a9dc-50f9f7be4467", - "Date" : "Fri, 02 Apr 2021 22:39:25 GMT" + "x-ms-client-request-id" : "c7ec89a9-682c-4be4-b0d8-c04f3183070f", + "Date" : "Thu, 27 May 2021 21:18:00 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers55768531a8", "azs-java-live-blob34368b235", "indexer530081a6a9efe70", "indexer9619993adb4d818" ] + "variables" : [ "indexforindexers7687030ec6", "azs-java-live-blob03906d01d", "indexer6951220be387048", "indexer88531564d2af434" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithBatchSizeMaxFailedItems.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithBatchSizeMaxFailedItems.json index c7c4b3ecac25..db183a2a010e 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithBatchSizeMaxFailedItems.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithBatchSizeMaxFailedItems.json @@ -1,154 +1,154 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5630baf4-9ce2-43f5-bbe2-fd1c319e214b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2f8565c1-e857-4da4-8306-e89ab77286e2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5630baf4-9ce2-43f5-bbe2-fd1c319e214b", + "request-id" : "2f8565c1-e857-4da4-8306-e89ab77286e2", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:35 GMT", + "Date" : "Thu, 27 May 2021 21:17:08 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6280D0C568F\"", - "client-request-id" : "5630baf4-9ce2-43f5-bbe2-fd1c319e214b", - "elapsed-time" : "1077", + "ETag" : "W/\"0x8D92154C8F9501C\"", + "client-request-id" : "2f8565c1-e857-4da4-8306-e89ab77286e2", + "elapsed-time" : "1431", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6280D0C568F\\\"\",\"name\":\"indexforindexers39727aff9e\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "5630baf4-9ce2-43f5-bbe2-fd1c319e214b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154C8F9501C\\\"\",\"name\":\"indexforindexers889688a84e\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "2f8565c1-e857-4da4-8306-e89ab77286e2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers39727aff9e')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers889688a84e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob17726ebdb')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob74250896d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "916526e4-cc11-4335-a964-8cebdaaeafaf", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "69d35ebd-b8e9-4d1e-af6c-a0130f11e399", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "916526e4-cc11-4335-a964-8cebdaaeafaf", + "request-id" : "69d35ebd-b8e9-4d1e-af6c-a0130f11e399", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:35 GMT", + "Date" : "Thu, 27 May 2021 21:17:08 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6280D18DBDD\"", - "client-request-id" : "916526e4-cc11-4335-a964-8cebdaaeafaf", - "elapsed-time" : "43", + "ETag" : "W/\"0x8D92154C9022B59\"", + "client-request-id" : "69d35ebd-b8e9-4d1e-af6c-a0130f11e399", + "elapsed-time" : "28", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F6280D18DBDD\\\"\",\"name\":\"azs-java-live-blob17726ebdb\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "916526e4-cc11-4335-a964-8cebdaaeafaf", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154C9022B59\\\"\",\"name\":\"azs-java-live-blob74250896d\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "69d35ebd-b8e9-4d1e-af6c-a0130f11e399", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob17726ebdb')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob74250896d')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "497b9a58-02bd-42d1-bd10-e5f7a23bb877", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "cb633b26-2d5f-413b-a535-dc94328441de", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "567", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "497b9a58-02bd-42d1-bd10-e5f7a23bb877", + "request-id" : "cb633b26-2d5f-413b-a535-dc94328441de", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:35 GMT", + "Date" : "Thu, 27 May 2021 21:17:08 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6280D36C95D\"", - "client-request-id" : "497b9a58-02bd-42d1-bd10-e5f7a23bb877", + "ETag" : "W/\"0x8D92154C91F5596\"", + "client-request-id" : "cb633b26-2d5f-413b-a535-dc94328441de", "elapsed-time" : "288", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "579", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6280D36C95D\\\"\",\"name\":\"indexer1492923fff15a90\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob17726ebdb\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers39727aff9e\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:35.232236Z\"},\"parameters\":{\"batchSize\":20,\"maxFailedItems\":121,\"maxFailedItemsPerBatch\":11,\"base64EncodeKeys\":null,\"configuration\":{}},\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "497b9a58-02bd-42d1-bd10-e5f7a23bb877", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154C91F5596\\\"\",\"name\":\"indexer22791876405d647\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob74250896d\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers889688a84e\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:08.3361451Z\"},\"parameters\":{\"batchSize\":20,\"maxFailedItems\":121,\"maxFailedItemsPerBatch\":11,\"base64EncodeKeys\":null,\"configuration\":{}},\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "cb633b26-2d5f-413b-a535-dc94328441de", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer1492923fff15a90')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer22791876405d647')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob17726ebdb')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob74250896d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9fe39259-fb2c-496b-9918-e25f90d2d33e" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ef0294c9-66b2-482c-8434-b8aaf106dd09" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9fe39259-fb2c-496b-9918-e25f90d2d33e", - "elapsed-time" : "50", + "client-request-id" : "ef0294c9-66b2-482c-8434-b8aaf106dd09", + "elapsed-time" : "17", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "9fe39259-fb2c-496b-9918-e25f90d2d33e", + "request-id" : "ef0294c9-66b2-482c-8434-b8aaf106dd09", "StatusCode" : "204", - "x-ms-client-request-id" : "9fe39259-fb2c-496b-9918-e25f90d2d33e", - "Date" : "Fri, 02 Apr 2021 22:38:35 GMT" + "x-ms-client-request-id" : "ef0294c9-66b2-482c-8434-b8aaf106dd09", + "Date" : "Thu, 27 May 2021 21:17:08 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer1492923fff15a90')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer22791876405d647')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "71ca1eaf-5e54-4b44-bfab-17c7b4399b3e" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4409d2cc-1853-4b64-80fc-a872ffa325d8" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "71ca1eaf-5e54-4b44-bfab-17c7b4399b3e", - "elapsed-time" : "73", + "client-request-id" : "4409d2cc-1853-4b64-80fc-a872ffa325d8", + "elapsed-time" : "29", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "71ca1eaf-5e54-4b44-bfab-17c7b4399b3e", + "request-id" : "4409d2cc-1853-4b64-80fc-a872ffa325d8", "StatusCode" : "204", - "x-ms-client-request-id" : "71ca1eaf-5e54-4b44-bfab-17c7b4399b3e", - "Date" : "Fri, 02 Apr 2021 22:38:35 GMT" + "x-ms-client-request-id" : "4409d2cc-1853-4b64-80fc-a872ffa325d8", + "Date" : "Thu, 27 May 2021 21:17:08 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers39727aff9e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers889688a84e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cce1ee55-8fa7-4860-93c1-cb77bdf27be8" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f9b2eb1e-3230-4796-b047-d0556cbf9856" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "cce1ee55-8fa7-4860-93c1-cb77bdf27be8", - "elapsed-time" : "1012", + "client-request-id" : "f9b2eb1e-3230-4796-b047-d0556cbf9856", + "elapsed-time" : "483", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "cce1ee55-8fa7-4860-93c1-cb77bdf27be8", + "request-id" : "f9b2eb1e-3230-4796-b047-d0556cbf9856", "StatusCode" : "204", - "x-ms-client-request-id" : "cce1ee55-8fa7-4860-93c1-cb77bdf27be8", - "Date" : "Fri, 02 Apr 2021 22:38:36 GMT" + "x-ms-client-request-id" : "f9b2eb1e-3230-4796-b047-d0556cbf9856", + "Date" : "Thu, 27 May 2021 21:17:09 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers39727aff9e", "azs-java-live-blob17726ebdb", "indexer1492923fff15a90" ] + "variables" : [ "indexforindexers889688a84e", "azs-java-live-blob74250896d", "indexer22791876405d647" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithBlobParams.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithBlobParams.json index db3a64a1c4c5..0ac6c275c71c 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithBlobParams.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithBlobParams.json @@ -1,154 +1,154 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob985832cb4')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob079029320')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "809248fe-2d48-4a31-bcc0-0b7e4bc553ed", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9e74fc02-dee4-44dd-bcf1-161c2654dc37", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "809248fe-2d48-4a31-bcc0-0b7e4bc553ed", + "request-id" : "9e74fc02-dee4-44dd-bcf1-161c2654dc37", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:18 GMT", + "Date" : "Thu, 27 May 2021 21:17:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62826F852A4\"", - "client-request-id" : "809248fe-2d48-4a31-bcc0-0b7e4bc553ed", - "elapsed-time" : "76", + "ETag" : "W/\"0x8D92154E37F9315\"", + "client-request-id" : "9e74fc02-dee4-44dd-bcf1-161c2654dc37", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F62826F852A4\\\"\",\"name\":\"azs-java-live-blob985832cb4\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "809248fe-2d48-4a31-bcc0-0b7e4bc553ed", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154E37F9315\\\"\",\"name\":\"azs-java-live-blob079029320\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "9e74fc02-dee4-44dd-bcf1-161c2654dc37", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob985832cb4')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob079029320')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b7487a0b-8e2b-4f62-8095-42f73e6cb1e1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f8cc3faf-5911-4869-940d-7d8de20bd8f3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b7487a0b-8e2b-4f62-8095-42f73e6cb1e1", + "request-id" : "f8cc3faf-5911-4869-940d-7d8de20bd8f3", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:19 GMT", + "Date" : "Thu, 27 May 2021 21:17:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628279E4C72\"", - "client-request-id" : "b7487a0b-8e2b-4f62-8095-42f73e6cb1e1", - "elapsed-time" : "1049", + "ETag" : "W/\"0x8D92154E476F15B\"", + "client-request-id" : "f8cc3faf-5911-4869-940d-7d8de20bd8f3", + "elapsed-time" : "1596", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F628279E4C72\\\"\",\"name\":\"indexforindexers36111af968\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "b7487a0b-8e2b-4f62-8095-42f73e6cb1e1", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154E476F15B\\\"\",\"name\":\"indexforindexers271976bbda\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "f8cc3faf-5911-4869-940d-7d8de20bd8f3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers36111af968')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers271976bbda')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c7e91c3-3a79-48dc-af25-089ff789c172", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "af1420f1-4d78-4b28-8536-05d800b37dc0", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "720", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9c7e91c3-3a79-48dc-af25-089ff789c172", + "request-id" : "af1420f1-4d78-4b28-8536-05d800b37dc0", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:20 GMT", + "Date" : "Thu, 27 May 2021 21:17:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62827C03232\"", - "client-request-id" : "9c7e91c3-3a79-48dc-af25-089ff789c172", - "elapsed-time" : "363", + "ETag" : "W/\"0x8D92154E499259A\"", + "client-request-id" : "af1420f1-4d78-4b28-8536-05d800b37dc0", + "elapsed-time" : "371", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "733", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62827C03232\\\"\",\"name\":\"indexer2371444d243c9fa\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob985832cb4\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers36111af968\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:19.7396783Z\"},\"parameters\":{\"batchSize\":null,\"maxFailedItems\":null,\"maxFailedItemsPerBatch\":null,\"base64EncodeKeys\":null,\"configuration\":{\"excludedFileNameExtensions\":\".xlsx\",\"indexedFileNameExtensions\":\".pdf,.docx\",\"failOnUnsupportedContentType\":false,\"dataToExtract\":\"storageMetadata\"}},\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "9c7e91c3-3a79-48dc-af25-089ff789c172", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154E499259A\\\"\",\"name\":\"indexer20293807c11bcfd\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob079029320\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers271976bbda\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:54.4047374Z\"},\"parameters\":{\"batchSize\":null,\"maxFailedItems\":null,\"maxFailedItemsPerBatch\":null,\"base64EncodeKeys\":null,\"configuration\":{\"excludedFileNameExtensions\":\".xlsx\",\"indexedFileNameExtensions\":\".pdf,.docx\",\"failOnUnsupportedContentType\":false,\"dataToExtract\":\"storageMetadata\"}},\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "af1420f1-4d78-4b28-8536-05d800b37dc0", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer2371444d243c9fa')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer20293807c11bcfd')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob985832cb4')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob079029320')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4bb73ccf-467b-45cb-877f-d6fc8dccb641" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3fbe11f1-0429-4112-b5f0-23cb5108ad9b" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4bb73ccf-467b-45cb-877f-d6fc8dccb641", - "elapsed-time" : "53", + "client-request-id" : "3fbe11f1-0429-4112-b5f0-23cb5108ad9b", + "elapsed-time" : "17", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "4bb73ccf-467b-45cb-877f-d6fc8dccb641", + "request-id" : "3fbe11f1-0429-4112-b5f0-23cb5108ad9b", "StatusCode" : "204", - "x-ms-client-request-id" : "4bb73ccf-467b-45cb-877f-d6fc8dccb641", - "Date" : "Fri, 02 Apr 2021 22:39:19 GMT" + "x-ms-client-request-id" : "3fbe11f1-0429-4112-b5f0-23cb5108ad9b", + "Date" : "Thu, 27 May 2021 21:17:53 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer2371444d243c9fa')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer20293807c11bcfd')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2d0f10d8-dd95-433c-b55b-90910fa2e774" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "febb9a79-1601-4ea7-b739-a39460b01771" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2d0f10d8-dd95-433c-b55b-90910fa2e774", - "elapsed-time" : "81", + "client-request-id" : "febb9a79-1601-4ea7-b739-a39460b01771", + "elapsed-time" : "29", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "2d0f10d8-dd95-433c-b55b-90910fa2e774", + "request-id" : "febb9a79-1601-4ea7-b739-a39460b01771", "StatusCode" : "204", - "x-ms-client-request-id" : "2d0f10d8-dd95-433c-b55b-90910fa2e774", - "Date" : "Fri, 02 Apr 2021 22:39:20 GMT" + "x-ms-client-request-id" : "febb9a79-1601-4ea7-b739-a39460b01771", + "Date" : "Thu, 27 May 2021 21:17:54 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers36111af968')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers271976bbda')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0d78e50-7c96-4a47-844e-f113db6c8575" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "628446dc-a28c-4675-b234-f80ea927db65" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a0d78e50-7c96-4a47-844e-f113db6c8575", - "elapsed-time" : "881", + "client-request-id" : "628446dc-a28c-4675-b234-f80ea927db65", + "elapsed-time" : "597", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "a0d78e50-7c96-4a47-844e-f113db6c8575", + "request-id" : "628446dc-a28c-4675-b234-f80ea927db65", "StatusCode" : "204", - "x-ms-client-request-id" : "a0d78e50-7c96-4a47-844e-f113db6c8575", - "Date" : "Fri, 02 Apr 2021 22:39:21 GMT" + "x-ms-client-request-id" : "628446dc-a28c-4675-b234-f80ea927db65", + "Date" : "Thu, 27 May 2021 21:17:55 GMT" }, "Exception" : null } ], - "variables" : [ "azs-java-live-blob985832cb4", "indexforindexers36111af968", "indexer2371444d243c9fa" ] + "variables" : [ "azs-java-live-blob079029320", "indexforindexers271976bbda", "indexer20293807c11bcfd" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithFieldMapping.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithFieldMapping.json index c9131f9ee448..03846378ddf3 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithFieldMapping.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithFieldMapping.json @@ -1,154 +1,154 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8e40826-7aaf-49cd-b40c-7e28447779fc", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b7b23958-13a1-47ab-a0a2-250e0a7a6a94", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a8e40826-7aaf-49cd-b40c-7e28447779fc", + "request-id" : "b7b23958-13a1-47ab-a0a2-250e0a7a6a94", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:37 GMT", + "Date" : "Thu, 27 May 2021 21:17:10 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6280EA8C232\"", - "client-request-id" : "a8e40826-7aaf-49cd-b40c-7e28447779fc", - "elapsed-time" : "1074", + "ETag" : "W/\"0x8D92154CA7586F7\"", + "client-request-id" : "b7b23958-13a1-47ab-a0a2-250e0a7a6a94", + "elapsed-time" : "1475", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6280EA8C232\\\"\",\"name\":\"indexforindexers26195d7aed\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "a8e40826-7aaf-49cd-b40c-7e28447779fc", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154CA7586F7\\\"\",\"name\":\"indexforindexers22359be019\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "b7b23958-13a1-47ab-a0a2-250e0a7a6a94", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers26195d7aed')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers22359be019')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob524888c4e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob50537671e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "344a27f9-b255-482d-afc1-a2056163295f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2a0e80b3-e5e9-4337-bf5d-d0d774afef9d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "344a27f9-b255-482d-afc1-a2056163295f", + "request-id" : "2a0e80b3-e5e9-4337-bf5d-d0d774afef9d", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:37 GMT", + "Date" : "Thu, 27 May 2021 21:17:10 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6280EB6F581\"", - "client-request-id" : "344a27f9-b255-482d-afc1-a2056163295f", - "elapsed-time" : "63", + "ETag" : "W/\"0x8D92154CA7EFE90\"", + "client-request-id" : "2a0e80b3-e5e9-4337-bf5d-d0d774afef9d", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F6280EB6F581\\\"\",\"name\":\"azs-java-live-blob524888c4e\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "344a27f9-b255-482d-afc1-a2056163295f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154CA7EFE90\\\"\",\"name\":\"azs-java-live-blob50537671e\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "2a0e80b3-e5e9-4337-bf5d-d0d774afef9d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob524888c4e')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob50537671e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "371e3ec2-8bcd-4cb7-9c95-873f566e52cb", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f02116c0-a7be-4bab-94d7-28fe2b62fd04", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "545", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "371e3ec2-8bcd-4cb7-9c95-873f566e52cb", + "request-id" : "f02116c0-a7be-4bab-94d7-28fe2b62fd04", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:37 GMT", + "Date" : "Thu, 27 May 2021 21:17:10 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6280ED88D0F\"", - "client-request-id" : "371e3ec2-8bcd-4cb7-9c95-873f566e52cb", - "elapsed-time" : "296", + "ETag" : "W/\"0x8D92154CA9C28D2\"", + "client-request-id" : "f02116c0-a7be-4bab-94d7-28fe2b62fd04", + "elapsed-time" : "279", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "558", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6280ED88D0F\\\"\",\"name\":\"indexer6273894d4d82782\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob524888c4e\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers26195d7aed\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:37.9619256Z\"},\"parameters\":null,\"fieldMappings\":[{\"sourceFieldName\":\"state_alpha\",\"targetFieldName\":\"state\",\"mappingFunction\":null}],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "371e3ec2-8bcd-4cb7-9c95-873f566e52cb", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154CA9C28D2\\\"\",\"name\":\"indexer78404dfb8be2f57\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob50537671e\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers22359be019\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:10.8387432Z\"},\"parameters\":null,\"fieldMappings\":[{\"sourceFieldName\":\"state_alpha\",\"targetFieldName\":\"state\",\"mappingFunction\":null}],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "f02116c0-a7be-4bab-94d7-28fe2b62fd04", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer6273894d4d82782')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer78404dfb8be2f57')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob524888c4e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob50537671e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e15f173d-a918-4d3c-9f26-861f62bf6e4f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6b327cbb-09fc-4efd-a049-22c1e82a30de" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e15f173d-a918-4d3c-9f26-861f62bf6e4f", - "elapsed-time" : "56", + "client-request-id" : "6b327cbb-09fc-4efd-a049-22c1e82a30de", + "elapsed-time" : "16", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "e15f173d-a918-4d3c-9f26-861f62bf6e4f", + "request-id" : "6b327cbb-09fc-4efd-a049-22c1e82a30de", "StatusCode" : "204", - "x-ms-client-request-id" : "e15f173d-a918-4d3c-9f26-861f62bf6e4f", - "Date" : "Fri, 02 Apr 2021 22:38:37 GMT" + "x-ms-client-request-id" : "6b327cbb-09fc-4efd-a049-22c1e82a30de", + "Date" : "Thu, 27 May 2021 21:17:10 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer6273894d4d82782')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer78404dfb8be2f57')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "203e1b7f-650f-458f-9493-f1c45ec2c402" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "213f0a96-6f67-4f4e-8acf-663eb179040a" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "203e1b7f-650f-458f-9493-f1c45ec2c402", - "elapsed-time" : "76", + "client-request-id" : "213f0a96-6f67-4f4e-8acf-663eb179040a", + "elapsed-time" : "28", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "203e1b7f-650f-458f-9493-f1c45ec2c402", + "request-id" : "213f0a96-6f67-4f4e-8acf-663eb179040a", "StatusCode" : "204", - "x-ms-client-request-id" : "203e1b7f-650f-458f-9493-f1c45ec2c402", - "Date" : "Fri, 02 Apr 2021 22:38:37 GMT" + "x-ms-client-request-id" : "213f0a96-6f67-4f4e-8acf-663eb179040a", + "Date" : "Thu, 27 May 2021 21:17:10 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers26195d7aed')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers22359be019')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "84521867-3573-42dd-93d4-d209fb69bfcf" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f6fe14b6-0b42-44ad-b9e7-d94d93bd87c0" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "84521867-3573-42dd-93d4-d209fb69bfcf", - "elapsed-time" : "819", + "client-request-id" : "f6fe14b6-0b42-44ad-b9e7-d94d93bd87c0", + "elapsed-time" : "488", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "84521867-3573-42dd-93d4-d209fb69bfcf", + "request-id" : "f6fe14b6-0b42-44ad-b9e7-d94d93bd87c0", "StatusCode" : "204", - "x-ms-client-request-id" : "84521867-3573-42dd-93d4-d209fb69bfcf", - "Date" : "Fri, 02 Apr 2021 22:38:39 GMT" + "x-ms-client-request-id" : "f6fe14b6-0b42-44ad-b9e7-d94d93bd87c0", + "Date" : "Thu, 27 May 2021 21:17:10 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers26195d7aed", "azs-java-live-blob524888c4e", "indexer6273894d4d82782" ] + "variables" : [ "indexforindexers22359be019", "azs-java-live-blob50537671e", "indexer78404dfb8be2f57" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithSchedule.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithSchedule.json index 04a00a2bf837..68ff88d9a841 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithSchedule.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithSchedule.json @@ -1,154 +1,154 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "dcc0c258-d7e0-43e5-8292-032d951cc14c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b8bb8e60-74b6-456e-ba71-ce60ea5460e5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "dcc0c258-d7e0-43e5-8292-032d951cc14c", + "request-id" : "b8bb8e60-74b6-456e-ba71-ce60ea5460e5", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:22 GMT", + "Date" : "Thu, 27 May 2021 21:17:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282927C923\"", - "client-request-id" : "dcc0c258-d7e0-43e5-8292-032d951cc14c", - "elapsed-time" : "1082", + "ETag" : "W/\"0x8D92154E612C3E9\"", + "client-request-id" : "b8bb8e60-74b6-456e-ba71-ce60ea5460e5", + "elapsed-time" : "1539", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282927C923\\\"\",\"name\":\"indexforindexers601672f7f6\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "dcc0c258-d7e0-43e5-8292-032d951cc14c", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154E612C3E9\\\"\",\"name\":\"indexforindexers45549b0193\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "b8bb8e60-74b6-456e-ba71-ce60ea5460e5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers601672f7f6')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers45549b0193')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob43969000d')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob319014b7a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e68b1df-e8d0-4df7-a53e-f569dd034e95", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3d301839-8884-4aab-96aa-338e08759ada", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8e68b1df-e8d0-4df7-a53e-f569dd034e95", + "request-id" : "3d301839-8884-4aab-96aa-338e08759ada", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:22 GMT", + "Date" : "Thu, 27 May 2021 21:17:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282935AE40\"", - "client-request-id" : "8e68b1df-e8d0-4df7-a53e-f569dd034e95", - "elapsed-time" : "61", + "ETag" : "W/\"0x8D92154E61C146E\"", + "client-request-id" : "3d301839-8884-4aab-96aa-338e08759ada", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282935AE40\\\"\",\"name\":\"azs-java-live-blob43969000d\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "8e68b1df-e8d0-4df7-a53e-f569dd034e95", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154E61C146E\\\"\",\"name\":\"azs-java-live-blob319014b7a\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "3d301839-8884-4aab-96aa-338e08759ada", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob43969000d')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob319014b7a')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5818ca9-0b05-4905-9847-963163650ce3", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8ce44eec-aadd-4b1a-9246-008f5fb38acd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "465", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b5818ca9-0b05-4905-9847-963163650ce3", + "request-id" : "8ce44eec-aadd-4b1a-9246-008f5fb38acd", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:22 GMT", + "Date" : "Thu, 27 May 2021 21:17:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628295E9A19\"", - "client-request-id" : "b5818ca9-0b05-4905-9847-963163650ce3", - "elapsed-time" : "374", + "ETag" : "W/\"0x8D92154E637DEDD\"", + "client-request-id" : "8ce44eec-aadd-4b1a-9246-008f5fb38acd", + "elapsed-time" : "280", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "478", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F628295E9A19\\\"\",\"name\":\"indexer63663335bec104c\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob43969000d\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers601672f7f6\",\"disabled\":null,\"schedule\":{\"interval\":\"PT10M\",\"startTime\":\"2021-04-02T22:39:22.4107596Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "b5818ca9-0b05-4905-9847-963163650ce3", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154E637DEDD\\\"\",\"name\":\"indexer69931db07d85cd1\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob319014b7a\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers45549b0193\",\"disabled\":null,\"schedule\":{\"interval\":\"PT10M\",\"startTime\":\"2021-05-27T21:17:57.1548471Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "8ce44eec-aadd-4b1a-9246-008f5fb38acd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer63663335bec104c')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer69931db07d85cd1')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob43969000d')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob319014b7a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7a532d6f-4141-4822-ae16-4942308aa80a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "11690792-88d1-4fe1-84b0-e5825123e4e7" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7a532d6f-4141-4822-ae16-4942308aa80a", - "elapsed-time" : "59", + "client-request-id" : "11690792-88d1-4fe1-84b0-e5825123e4e7", + "elapsed-time" : "17", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "7a532d6f-4141-4822-ae16-4942308aa80a", + "request-id" : "11690792-88d1-4fe1-84b0-e5825123e4e7", "StatusCode" : "204", - "x-ms-client-request-id" : "7a532d6f-4141-4822-ae16-4942308aa80a", - "Date" : "Fri, 02 Apr 2021 22:39:22 GMT" + "x-ms-client-request-id" : "11690792-88d1-4fe1-84b0-e5825123e4e7", + "Date" : "Thu, 27 May 2021 21:17:56 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer63663335bec104c')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer69931db07d85cd1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "fd68196a-eee0-4c8f-94e7-66a07253df91" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bdf08af2-7843-4138-a689-ef684e75b8e1" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "fd68196a-eee0-4c8f-94e7-66a07253df91", - "elapsed-time" : "90", + "client-request-id" : "bdf08af2-7843-4138-a689-ef684e75b8e1", + "elapsed-time" : "29", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "fd68196a-eee0-4c8f-94e7-66a07253df91", + "request-id" : "bdf08af2-7843-4138-a689-ef684e75b8e1", "StatusCode" : "204", - "x-ms-client-request-id" : "fd68196a-eee0-4c8f-94e7-66a07253df91", - "Date" : "Fri, 02 Apr 2021 22:39:22 GMT" + "x-ms-client-request-id" : "bdf08af2-7843-4138-a689-ef684e75b8e1", + "Date" : "Thu, 27 May 2021 21:17:57 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers601672f7f6')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers45549b0193')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d72da5f2-9913-4f12-9e4a-a6681a901f29" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "cab993ca-fe9d-4e80-8413-eb6ad303f6b1" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d72da5f2-9913-4f12-9e4a-a6681a901f29", - "elapsed-time" : "797", + "client-request-id" : "cab993ca-fe9d-4e80-8413-eb6ad303f6b1", + "elapsed-time" : "492", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "d72da5f2-9913-4f12-9e4a-a6681a901f29", + "request-id" : "cab993ca-fe9d-4e80-8413-eb6ad303f6b1", "StatusCode" : "204", - "x-ms-client-request-id" : "d72da5f2-9913-4f12-9e4a-a6681a901f29", - "Date" : "Fri, 02 Apr 2021 22:39:23 GMT" + "x-ms-client-request-id" : "cab993ca-fe9d-4e80-8413-eb6ad303f6b1", + "Date" : "Thu, 27 May 2021 21:17:58 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers601672f7f6", "azs-java-live-blob43969000d", "indexer63663335bec104c" ] + "variables" : [ "indexforindexers45549b0193", "azs-java-live-blob319014b7a", "indexer69931db07d85cd1" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithSkillset.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithSkillset.json index 05e5bc327986..82061d88a57b 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithSkillset.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canCreateIndexerWithSkillset.json @@ -1,204 +1,204 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "891c177e-1287-4bfe-b754-d7b13028c48e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a17ea664-8db3-4445-8dc0-6adaad29dca6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "745", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "891c177e-1287-4bfe-b754-d7b13028c48e", + "request-id" : "a17ea664-8db3-4445-8dc0-6adaad29dca6", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:52 GMT", + "Date" : "Thu, 27 May 2021 21:17:27 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6281785C231\"", - "client-request-id" : "891c177e-1287-4bfe-b754-d7b13028c48e", - "elapsed-time" : "93", + "ETag" : "W/\"0x8D92154D46BB664\"", + "client-request-id" : "a17ea664-8db3-4445-8dc0-6adaad29dca6", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "745", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6281785C231\\\"\",\"name\":\"ocr-skillset01576bd8696a\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":true,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "891c177e-1287-4bfe-b754-d7b13028c48e", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154D46BB664\\\"\",\"name\":\"ocr-skillset8949874415a4\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":true,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "a17ea664-8db3-4445-8dc0-6adaad29dca6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset01576bd8696a')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset8949874415a4')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8543a61d-0828-4c57-8e6d-f40127cde4bd", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "417c8c02-7275-46cb-baac-a0289e90ede6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8543a61d-0828-4c57-8e6d-f40127cde4bd", + "request-id" : "417c8c02-7275-46cb-baac-a0289e90ede6", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:53 GMT", + "Date" : "Thu, 27 May 2021 21:17:28 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628182F17EB\"", - "client-request-id" : "8543a61d-0828-4c57-8e6d-f40127cde4bd", - "elapsed-time" : "1086", + "ETag" : "W/\"0x8D92154D54B4294\"", + "client-request-id" : "417c8c02-7275-46cb-baac-a0289e90ede6", + "elapsed-time" : "1437", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F628182F17EB\\\"\",\"name\":\"indexforindexers1016018f17\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "8543a61d-0828-4c57-8e6d-f40127cde4bd", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154D54B4294\\\"\",\"name\":\"indexforindexers79753dde2d\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "417c8c02-7275-46cb-baac-a0289e90ede6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers1016018f17')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers79753dde2d')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob91676f993')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob9978770b4')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b440da80-5e92-4e5c-9137-6c6f9ddfd97d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e8d66688-61ad-4cc6-a50c-b577ebd8fa83", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b440da80-5e92-4e5c-9137-6c6f9ddfd97d", + "request-id" : "e8d66688-61ad-4cc6-a50c-b577ebd8fa83", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:53 GMT", + "Date" : "Thu, 27 May 2021 21:17:28 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628183E0EA5\"", - "client-request-id" : "b440da80-5e92-4e5c-9137-6c6f9ddfd97d", - "elapsed-time" : "68", + "ETag" : "W/\"0x8D92154D553A88E\"", + "client-request-id" : "e8d66688-61ad-4cc6-a50c-b577ebd8fa83", + "elapsed-time" : "27", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F628183E0EA5\\\"\",\"name\":\"azs-java-live-blob91676f993\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "b440da80-5e92-4e5c-9137-6c6f9ddfd97d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154D553A88E\\\"\",\"name\":\"azs-java-live-blob9978770b4\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "e8d66688-61ad-4cc6-a50c-b577ebd8fa83", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob91676f993')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob9978770b4')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "67f350fa-9ddf-4997-96ba-18ed7b52e2f6", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "919a85d2-8c00-45cc-8b53-7e54f5162898", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "485", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "67f350fa-9ddf-4997-96ba-18ed7b52e2f6", + "request-id" : "919a85d2-8c00-45cc-8b53-7e54f5162898", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:53 GMT", + "Date" : "Thu, 27 May 2021 21:17:28 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628185E1F58\"", - "client-request-id" : "67f350fa-9ddf-4997-96ba-18ed7b52e2f6", - "elapsed-time" : "302", + "ETag" : "W/\"0x8D92154D5712102\"", + "client-request-id" : "919a85d2-8c00-45cc-8b53-7e54f5162898", + "elapsed-time" : "282", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "498", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F628185E1F58\\\"\",\"name\":\"indexer93224c1225fb3f0\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob91676f993\",\"skillsetName\":\"ocr-skillset01576bd8696a\",\"targetIndexName\":\"indexforindexers1016018f17\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:53.9414889Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "67f350fa-9ddf-4997-96ba-18ed7b52e2f6", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154D5712102\\\"\",\"name\":\"indexer466893b3fbace22\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob9978770b4\",\"skillsetName\":\"ocr-skillset8949874415a4\",\"targetIndexName\":\"indexforindexers79753dde2d\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:29.0062763Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "919a85d2-8c00-45cc-8b53-7e54f5162898", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer93224c1225fb3f0')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer466893b3fbace22')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset01576bd8696a')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset8949874415a4')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "91050010-5b9a-4596-b893-277dd9b4d624" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ae0273c6-0baf-40a3-a69a-1938e4505ce9" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "91050010-5b9a-4596-b893-277dd9b4d624", - "elapsed-time" : "78", + "client-request-id" : "ae0273c6-0baf-40a3-a69a-1938e4505ce9", + "elapsed-time" : "22", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "91050010-5b9a-4596-b893-277dd9b4d624", + "request-id" : "ae0273c6-0baf-40a3-a69a-1938e4505ce9", "StatusCode" : "204", - "x-ms-client-request-id" : "91050010-5b9a-4596-b893-277dd9b4d624", - "Date" : "Fri, 02 Apr 2021 22:38:53 GMT" + "x-ms-client-request-id" : "ae0273c6-0baf-40a3-a69a-1938e4505ce9", + "Date" : "Thu, 27 May 2021 21:17:28 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob91676f993')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob9978770b4')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f64d2ba-cbae-40e6-8e68-39e5c2d238da" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "51c525f7-a578-484b-8386-6d506103d7cd" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4f64d2ba-cbae-40e6-8e68-39e5c2d238da", - "elapsed-time" : "57", + "client-request-id" : "51c525f7-a578-484b-8386-6d506103d7cd", + "elapsed-time" : "24", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "4f64d2ba-cbae-40e6-8e68-39e5c2d238da", + "request-id" : "51c525f7-a578-484b-8386-6d506103d7cd", "StatusCode" : "204", - "x-ms-client-request-id" : "4f64d2ba-cbae-40e6-8e68-39e5c2d238da", - "Date" : "Fri, 02 Apr 2021 22:38:53 GMT" + "x-ms-client-request-id" : "51c525f7-a578-484b-8386-6d506103d7cd", + "Date" : "Thu, 27 May 2021 21:17:28 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer93224c1225fb3f0')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer466893b3fbace22')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0da61b54-e6dc-45d7-839c-bc2f27d4a4d0" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f0acae35-eb06-4b9b-8a19-a92d073b1d5e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0da61b54-e6dc-45d7-839c-bc2f27d4a4d0", - "elapsed-time" : "80", + "client-request-id" : "f0acae35-eb06-4b9b-8a19-a92d073b1d5e", + "elapsed-time" : "29", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "0da61b54-e6dc-45d7-839c-bc2f27d4a4d0", + "request-id" : "f0acae35-eb06-4b9b-8a19-a92d073b1d5e", "StatusCode" : "204", - "x-ms-client-request-id" : "0da61b54-e6dc-45d7-839c-bc2f27d4a4d0", - "Date" : "Fri, 02 Apr 2021 22:38:53 GMT" + "x-ms-client-request-id" : "f0acae35-eb06-4b9b-8a19-a92d073b1d5e", + "Date" : "Thu, 27 May 2021 21:17:28 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers1016018f17')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers79753dde2d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1888fd04-aebe-41c3-9ba8-eaed7a1b2a49" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c80bc4b6-7f00-4e70-ba1f-1268776681a0" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1888fd04-aebe-41c3-9ba8-eaed7a1b2a49", - "elapsed-time" : "719", + "client-request-id" : "c80bc4b6-7f00-4e70-ba1f-1268776681a0", + "elapsed-time" : "509", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "1888fd04-aebe-41c3-9ba8-eaed7a1b2a49", + "request-id" : "c80bc4b6-7f00-4e70-ba1f-1268776681a0", "StatusCode" : "204", - "x-ms-client-request-id" : "1888fd04-aebe-41c3-9ba8-eaed7a1b2a49", - "Date" : "Fri, 02 Apr 2021 22:38:55 GMT" + "x-ms-client-request-id" : "c80bc4b6-7f00-4e70-ba1f-1268776681a0", + "Date" : "Thu, 27 May 2021 21:17:29 GMT" }, "Exception" : null } ], - "variables" : [ "ocr-skillset01576bd8696a", "indexforindexers1016018f17", "azs-java-live-blob91676f993", "indexer93224c1225fb3f0" ] + "variables" : [ "ocr-skillset8949874415a4", "indexforindexers79753dde2d", "azs-java-live-blob9978770b4", "indexer466893b3fbace22" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canResetIndexerAndGetIndexerStatus.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canResetIndexerAndGetIndexerStatus.json index 6b3203bfeee2..16c7f9410542 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canResetIndexerAndGetIndexerStatus.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canResetIndexerAndGetIndexerStatus.json @@ -1,201 +1,201 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "093a59c1-d548-4ea5-82e2-f6ca5b0b1594", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1ff29e3c-0444-4bed-a5a7-e2fbf16a48b8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "093a59c1-d548-4ea5-82e2-f6ca5b0b1594", + "request-id" : "1ff29e3c-0444-4bed-a5a7-e2fbf16a48b8", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:21 GMT", + "Date" : "Thu, 27 May 2021 21:16:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6280514AE71\"", - "client-request-id" : "093a59c1-d548-4ea5-82e2-f6ca5b0b1594", - "elapsed-time" : "1051", + "ETag" : "W/\"0x8D92154C11FFAD1\"", + "client-request-id" : "1ff29e3c-0444-4bed-a5a7-e2fbf16a48b8", + "elapsed-time" : "1485", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6280514AE71\\\"\",\"name\":\"indexforindexers636078b284\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "093a59c1-d548-4ea5-82e2-f6ca5b0b1594", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154C11FFAD1\\\"\",\"name\":\"indexforindexers126681c1f4\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "1ff29e3c-0444-4bed-a5a7-e2fbf16a48b8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers636078b284')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers126681c1f4')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob351970fe9')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob75421635b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8a724f19-061e-4df0-9f92-c53608733e12", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "df8a514a-585e-42c4-8b22-c81cd6087ecc", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8a724f19-061e-4df0-9f92-c53608733e12", + "request-id" : "df8a514a-585e-42c4-8b22-c81cd6087ecc", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:21 GMT", + "Date" : "Thu, 27 May 2021 21:16:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6280522BAA2\"", - "client-request-id" : "8a724f19-061e-4df0-9f92-c53608733e12", - "elapsed-time" : "62", + "ETag" : "W/\"0x8D92154C12887DB\"", + "client-request-id" : "df8a514a-585e-42c4-8b22-c81cd6087ecc", + "elapsed-time" : "28", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F6280522BAA2\\\"\",\"name\":\"azs-java-live-blob351970fe9\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "8a724f19-061e-4df0-9f92-c53608733e12", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154C12887DB\\\"\",\"name\":\"azs-java-live-blob75421635b\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "df8a514a-585e-42c4-8b22-c81cd6087ecc", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob351970fe9')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob75421635b')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "22d27ecd-7b24-4f1a-9aeb-430c28ce22b4", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3caec201-2fd9-40d6-96c9-fc8b9d673243", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "22d27ecd-7b24-4f1a-9aeb-430c28ce22b4", + "request-id" : "3caec201-2fd9-40d6-96c9-fc8b9d673243", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:21 GMT", + "Date" : "Thu, 27 May 2021 21:16:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628054898B8\"", - "client-request-id" : "22d27ecd-7b24-4f1a-9aeb-430c28ce22b4", - "elapsed-time" : "375", + "ETag" : "W/\"0x8D92154C1582C0C\"", + "client-request-id" : "3caec201-2fd9-40d6-96c9-fc8b9d673243", + "elapsed-time" : "425", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F628054898B8\\\"\",\"name\":\"indexer955384eb6e7d8f7\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob351970fe9\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers636078b284\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:21.8879687Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "22d27ecd-7b24-4f1a-9aeb-430c28ce22b4", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154C1582C0C\\\"\",\"name\":\"indexer52221f1d812c24e\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob75421635b\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers126681c1f4\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:16:55.1668554Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "3caec201-2fd9-40d6-96c9-fc8b9d673243", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer955384eb6e7d8f7')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer52221f1d812c24e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer955384eb6e7d8f7')/search.reset?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer52221f1d812c24e')/search.reset?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "01ca5669-c8f5-4e2f-8a78-e52ab97a89ba" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f25afa4f-c0ab-48e8-b58f-093caf8d4bd6" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "01ca5669-c8f5-4e2f-8a78-e52ab97a89ba", - "elapsed-time" : "227", + "client-request-id" : "f25afa4f-c0ab-48e8-b58f-093caf8d4bd6", + "elapsed-time" : "222", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "01ca5669-c8f5-4e2f-8a78-e52ab97a89ba", + "request-id" : "f25afa4f-c0ab-48e8-b58f-093caf8d4bd6", "StatusCode" : "204", - "x-ms-client-request-id" : "01ca5669-c8f5-4e2f-8a78-e52ab97a89ba", - "Date" : "Fri, 02 Apr 2021 22:38:21 GMT" + "x-ms-client-request-id" : "f25afa4f-c0ab-48e8-b58f-093caf8d4bd6", + "Date" : "Thu, 27 May 2021 21:16:55 GMT" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer955384eb6e7d8f7')/search.status?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer52221f1d812c24e')/search.status?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "10e7c9ee-d8af-4fe9-9217-08e6608a5fa6" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2ddeaaa5-8a85-41a9-9847-ebcc25ee81e7" }, "Response" : { + "content-length" : "716", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "10e7c9ee-d8af-4fe9-9217-08e6608a5fa6", + "request-id" : "2ddeaaa5-8a85-41a9-9847-ebcc25ee81e7", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:38:21 GMT", + "Date" : "Thu, 27 May 2021 21:16:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "10e7c9ee-d8af-4fe9-9217-08e6608a5fa6", - "elapsed-time" : "17", + "client-request-id" : "2ddeaaa5-8a85-41a9-9847-ebcc25ee81e7", + "elapsed-time" : "15", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1015", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.IndexerExecutionInfo\",\"name\":\"indexer955384eb6e7d8f7\",\"status\":\"running\",\"lastResult\":{\"status\":\"reset\",\"statusDetail\":null,\"errorMessage\":null,\"startTime\":\"2021-04-02T22:38:22.31Z\",\"endTime\":\"2021-04-02T22:38:22.31Z\",\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"mode\":\"indexingAllDocs\",\"errors\":[],\"warnings\":[],\"metrics\":null},\"executionHistory\":[{\"status\":\"reset\",\"statusDetail\":null,\"errorMessage\":null,\"startTime\":\"2021-04-02T22:38:22.31Z\",\"endTime\":\"2021-04-02T22:38:22.31Z\",\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"mode\":\"indexingAllDocs\",\"errors\":[],\"warnings\":[],\"metrics\":null}],\"limits\":null,\"currentState\":{\"mode\":\"indexingAllDocs\",\"allDocsInitialTrackingState\":null,\"allDocsFinalTrackingState\":null,\"resetDocsInitialTrackingState\":null,\"resetDocsFinalTrackingState\":null,\"resetDocumentKeys\":[]}}", - "x-ms-client-request-id" : "10e7c9ee-d8af-4fe9-9217-08e6608a5fa6", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.IndexerExecutionInfo\",\"name\":\"indexer52221f1d812c24e\",\"status\":\"running\",\"lastResult\":{\"status\":\"reset\",\"errorMessage\":null,\"startTime\":\"2021-05-27T21:16:55.641Z\",\"endTime\":\"2021-05-27T21:16:55.641Z\",\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"errors\":[],\"warnings\":[],\"metrics\":null},\"executionHistory\":[{\"status\":\"reset\",\"errorMessage\":null,\"startTime\":\"2021-05-27T21:16:55.641Z\",\"endTime\":\"2021-05-27T21:16:55.641Z\",\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"errors\":[],\"warnings\":[],\"metrics\":null}],\"limits\":null}", + "x-ms-client-request-id" : "2ddeaaa5-8a85-41a9-9847-ebcc25ee81e7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob351970fe9')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob75421635b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "568b5051-98d2-4a71-a447-700f46910d1c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1c968d8e-5423-4ee1-9a4a-d54f4f224d88" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "568b5051-98d2-4a71-a447-700f46910d1c", - "elapsed-time" : "45", + "client-request-id" : "1c968d8e-5423-4ee1-9a4a-d54f4f224d88", + "elapsed-time" : "17", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "568b5051-98d2-4a71-a447-700f46910d1c", + "request-id" : "1c968d8e-5423-4ee1-9a4a-d54f4f224d88", "StatusCode" : "204", - "x-ms-client-request-id" : "568b5051-98d2-4a71-a447-700f46910d1c", - "Date" : "Fri, 02 Apr 2021 22:38:21 GMT" + "x-ms-client-request-id" : "1c968d8e-5423-4ee1-9a4a-d54f4f224d88", + "Date" : "Thu, 27 May 2021 21:16:55 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer955384eb6e7d8f7')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer52221f1d812c24e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "37d3594f-6ef5-4f88-a995-2a18a444e776" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "89ff8a47-950f-418a-8ab6-b661f46ccacc" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "37d3594f-6ef5-4f88-a995-2a18a444e776", - "elapsed-time" : "78", + "client-request-id" : "89ff8a47-950f-418a-8ab6-b661f46ccacc", + "elapsed-time" : "34", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "37d3594f-6ef5-4f88-a995-2a18a444e776", + "request-id" : "89ff8a47-950f-418a-8ab6-b661f46ccacc", "StatusCode" : "204", - "x-ms-client-request-id" : "37d3594f-6ef5-4f88-a995-2a18a444e776", - "Date" : "Fri, 02 Apr 2021 22:38:21 GMT" + "x-ms-client-request-id" : "89ff8a47-950f-418a-8ab6-b661f46ccacc", + "Date" : "Thu, 27 May 2021 21:16:55 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers636078b284')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers126681c1f4')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "39c9306b-c354-4d9e-ae8a-8c6a3aee084d" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c15b1529-0be1-41c1-ba97-5d3fc1a7b2c7" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "39c9306b-c354-4d9e-ae8a-8c6a3aee084d", - "elapsed-time" : "526", + "client-request-id" : "c15b1529-0be1-41c1-ba97-5d3fc1a7b2c7", + "elapsed-time" : "482", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "39c9306b-c354-4d9e-ae8a-8c6a3aee084d", + "request-id" : "c15b1529-0be1-41c1-ba97-5d3fc1a7b2c7", "StatusCode" : "204", - "x-ms-client-request-id" : "39c9306b-c354-4d9e-ae8a-8c6a3aee084d", - "Date" : "Fri, 02 Apr 2021 22:38:23 GMT" + "x-ms-client-request-id" : "c15b1529-0be1-41c1-ba97-5d3fc1a7b2c7", + "Date" : "Thu, 27 May 2021 21:16:56 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers636078b284", "azs-java-live-blob351970fe9", "indexer955384eb6e7d8f7" ] + "variables" : [ "indexforindexers126681c1f4", "azs-java-live-blob75421635b", "indexer52221f1d812c24e" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canResetIndexerAndGetIndexerStatusWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canResetIndexerAndGetIndexerStatusWithResponse.json index 272caaa9640b..65bd35589ee8 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canResetIndexerAndGetIndexerStatusWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canResetIndexerAndGetIndexerStatusWithResponse.json @@ -1,201 +1,201 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "28c8392b-71b4-4da8-a3a4-747a2a2e4980", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e33e7263-5a2a-4a82-8acc-b039515fce81", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "28c8392b-71b4-4da8-a3a4-747a2a2e4980", + "request-id" : "e33e7263-5a2a-4a82-8acc-b039515fce81", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:32 GMT", + "Date" : "Thu, 27 May 2021 21:18:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282F798E18\"", - "client-request-id" : "28c8392b-71b4-4da8-a3a4-747a2a2e4980", - "elapsed-time" : "1097", + "ETag" : "W/\"0x8D92154EC64BCC4\"", + "client-request-id" : "e33e7263-5a2a-4a82-8acc-b039515fce81", + "elapsed-time" : "1510", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282F798E18\\\"\",\"name\":\"indexforindexers4856883ba8\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "28c8392b-71b4-4da8-a3a4-747a2a2e4980", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154EC64BCC4\\\"\",\"name\":\"indexforindexers6783235dd9\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "e33e7263-5a2a-4a82-8acc-b039515fce81", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers4856883ba8')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers6783235dd9')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob16537b0aa')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob026992393')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "07833617-2d39-4fd0-8dea-17384685820d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5420510a-5154-49f0-88d4-0a4ceac39e55", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "07833617-2d39-4fd0-8dea-17384685820d", + "request-id" : "5420510a-5154-49f0-88d4-0a4ceac39e55", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:33 GMT", + "Date" : "Thu, 27 May 2021 21:18:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282F8836A4\"", - "client-request-id" : "07833617-2d39-4fd0-8dea-17384685820d", - "elapsed-time" : "98", + "ETag" : "W/\"0x8D92154EC6E0D48\"", + "client-request-id" : "5420510a-5154-49f0-88d4-0a4ceac39e55", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282F8836A4\\\"\",\"name\":\"azs-java-live-blob16537b0aa\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "07833617-2d39-4fd0-8dea-17384685820d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154EC6E0D48\\\"\",\"name\":\"azs-java-live-blob026992393\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "5420510a-5154-49f0-88d4-0a4ceac39e55", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob16537b0aa')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob026992393')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5f176655-6ba5-438a-bce7-cddaa3df6155", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b7f4b296-990d-4d60-a7fd-a317afa93185", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5f176655-6ba5-438a-bce7-cddaa3df6155", + "request-id" : "b7f4b296-990d-4d60-a7fd-a317afa93185", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:33 GMT", + "Date" : "Thu, 27 May 2021 21:18:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282FAE62E7\"", - "client-request-id" : "5f176655-6ba5-438a-bce7-cddaa3df6155", - "elapsed-time" : "318", + "ETag" : "W/\"0x8D92154EC896270\"", + "client-request-id" : "b7f4b296-990d-4d60-a7fd-a317afa93185", + "elapsed-time" : "269", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282FAE62E7\\\"\",\"name\":\"indexer68641d2e9a44721\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob16537b0aa\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers4856883ba8\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:33.0540894Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "5f176655-6ba5-438a-bce7-cddaa3df6155", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154EC896270\\\"\",\"name\":\"indexer75274b6b8ddec9f\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob026992393\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers6783235dd9\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:18:07.7606478Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "b7f4b296-990d-4d60-a7fd-a317afa93185", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer68641d2e9a44721')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer75274b6b8ddec9f')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer68641d2e9a44721')/search.reset?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer75274b6b8ddec9f')/search.reset?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b467fad6-7800-4bab-8c7c-8115c829a66f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6dd7a637-d2df-4fc2-a6b8-5e2aafc427cb" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b467fad6-7800-4bab-8c7c-8115c829a66f", - "elapsed-time" : "194", + "client-request-id" : "6dd7a637-d2df-4fc2-a6b8-5e2aafc427cb", + "elapsed-time" : "192", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "b467fad6-7800-4bab-8c7c-8115c829a66f", + "request-id" : "6dd7a637-d2df-4fc2-a6b8-5e2aafc427cb", "StatusCode" : "204", - "x-ms-client-request-id" : "b467fad6-7800-4bab-8c7c-8115c829a66f", - "Date" : "Fri, 02 Apr 2021 22:39:33 GMT" + "x-ms-client-request-id" : "6dd7a637-d2df-4fc2-a6b8-5e2aafc427cb", + "Date" : "Thu, 27 May 2021 21:18:07 GMT" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer68641d2e9a44721')/search.status?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer75274b6b8ddec9f')/search.status?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "95ea2cd0-4011-4117-b585-25cccf3a2af6" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "29dc1182-fa89-4ccb-a59e-6b19e5999858" }, "Response" : { + "content-length" : "716", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "95ea2cd0-4011-4117-b585-25cccf3a2af6", + "request-id" : "29dc1182-fa89-4ccb-a59e-6b19e5999858", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:33 GMT", + "Date" : "Thu, 27 May 2021 21:18:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "95ea2cd0-4011-4117-b585-25cccf3a2af6", - "elapsed-time" : "18", + "client-request-id" : "29dc1182-fa89-4ccb-a59e-6b19e5999858", + "elapsed-time" : "14", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1015", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.IndexerExecutionInfo\",\"name\":\"indexer68641d2e9a44721\",\"status\":\"running\",\"lastResult\":{\"status\":\"reset\",\"statusDetail\":null,\"errorMessage\":null,\"startTime\":\"2021-04-02T22:39:33.43Z\",\"endTime\":\"2021-04-02T22:39:33.43Z\",\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"mode\":\"indexingAllDocs\",\"errors\":[],\"warnings\":[],\"metrics\":null},\"executionHistory\":[{\"status\":\"reset\",\"statusDetail\":null,\"errorMessage\":null,\"startTime\":\"2021-04-02T22:39:33.43Z\",\"endTime\":\"2021-04-02T22:39:33.43Z\",\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"mode\":\"indexingAllDocs\",\"errors\":[],\"warnings\":[],\"metrics\":null}],\"limits\":null,\"currentState\":{\"mode\":\"indexingAllDocs\",\"allDocsInitialTrackingState\":null,\"allDocsFinalTrackingState\":null,\"resetDocsInitialTrackingState\":null,\"resetDocsFinalTrackingState\":null,\"resetDocumentKeys\":[]}}", - "x-ms-client-request-id" : "95ea2cd0-4011-4117-b585-25cccf3a2af6", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.IndexerExecutionInfo\",\"name\":\"indexer75274b6b8ddec9f\",\"status\":\"running\",\"lastResult\":{\"status\":\"reset\",\"errorMessage\":null,\"startTime\":\"2021-05-27T21:18:08.072Z\",\"endTime\":\"2021-05-27T21:18:08.072Z\",\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"errors\":[],\"warnings\":[],\"metrics\":null},\"executionHistory\":[{\"status\":\"reset\",\"errorMessage\":null,\"startTime\":\"2021-05-27T21:18:08.072Z\",\"endTime\":\"2021-05-27T21:18:08.072Z\",\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"errors\":[],\"warnings\":[],\"metrics\":null}],\"limits\":null}", + "x-ms-client-request-id" : "29dc1182-fa89-4ccb-a59e-6b19e5999858", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob16537b0aa')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob026992393')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "26c614b3-c097-4fe1-9c3d-b6751a0fcf91" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0f1c482b-80b7-4a6f-b005-4459c6ab0501" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "26c614b3-c097-4fe1-9c3d-b6751a0fcf91", - "elapsed-time" : "41", + "client-request-id" : "0f1c482b-80b7-4a6f-b005-4459c6ab0501", + "elapsed-time" : "16", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "26c614b3-c097-4fe1-9c3d-b6751a0fcf91", + "request-id" : "0f1c482b-80b7-4a6f-b005-4459c6ab0501", "StatusCode" : "204", - "x-ms-client-request-id" : "26c614b3-c097-4fe1-9c3d-b6751a0fcf91", - "Date" : "Fri, 02 Apr 2021 22:39:33 GMT" + "x-ms-client-request-id" : "0f1c482b-80b7-4a6f-b005-4459c6ab0501", + "Date" : "Thu, 27 May 2021 21:18:07 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer68641d2e9a44721')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer75274b6b8ddec9f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5f08bd28-fbf5-4f37-aa18-9c90652487c0" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "690693e9-f230-4620-aba1-88802f86a572" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5f08bd28-fbf5-4f37-aa18-9c90652487c0", - "elapsed-time" : "87", + "client-request-id" : "690693e9-f230-4620-aba1-88802f86a572", + "elapsed-time" : "35", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "5f08bd28-fbf5-4f37-aa18-9c90652487c0", + "request-id" : "690693e9-f230-4620-aba1-88802f86a572", "StatusCode" : "204", - "x-ms-client-request-id" : "5f08bd28-fbf5-4f37-aa18-9c90652487c0", - "Date" : "Fri, 02 Apr 2021 22:39:33 GMT" + "x-ms-client-request-id" : "690693e9-f230-4620-aba1-88802f86a572", + "Date" : "Thu, 27 May 2021 21:18:07 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers4856883ba8')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers6783235dd9')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0f2db24d-c6c8-487d-ab4c-0a265b35ba0f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "229d1695-e59e-4862-ab56-a9014f178dcc" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0f2db24d-c6c8-487d-ab4c-0a265b35ba0f", - "elapsed-time" : "538", + "client-request-id" : "229d1695-e59e-4862-ab56-a9014f178dcc", + "elapsed-time" : "475", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "0f2db24d-c6c8-487d-ab4c-0a265b35ba0f", + "request-id" : "229d1695-e59e-4862-ab56-a9014f178dcc", "StatusCode" : "204", - "x-ms-client-request-id" : "0f2db24d-c6c8-487d-ab4c-0a265b35ba0f", - "Date" : "Fri, 02 Apr 2021 22:39:34 GMT" + "x-ms-client-request-id" : "229d1695-e59e-4862-ab56-a9014f178dcc", + "Date" : "Thu, 27 May 2021 21:18:08 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers4856883ba8", "azs-java-live-blob16537b0aa", "indexer68641d2e9a44721" ] + "variables" : [ "indexforindexers6783235dd9", "azs-java-live-blob026992393", "indexer75274b6b8ddec9f" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canRunIndexer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canRunIndexer.json index 95cea20827d1..d452513cd35a 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canRunIndexer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canRunIndexer.json @@ -1,202 +1,202 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "59cc3c50-2ca4-47fe-8d52-7a6ec396ac9b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "329e5fd3-b33a-4da0-b56e-401c4215ba75", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "59cc3c50-2ca4-47fe-8d52-7a6ec396ac9b", + "request-id" : "329e5fd3-b33a-4da0-b56e-401c4215ba75", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:23 GMT", + "Date" : "Thu, 27 May 2021 21:16:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62806B22B95\"", - "client-request-id" : "59cc3c50-2ca4-47fe-8d52-7a6ec396ac9b", - "elapsed-time" : "1128", + "ETag" : "W/\"0x8D92154C2E1ABC5\"", + "client-request-id" : "329e5fd3-b33a-4da0-b56e-401c4215ba75", + "elapsed-time" : "1472", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62806B22B95\\\"\",\"name\":\"indexforindexers942912785b\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "59cc3c50-2ca4-47fe-8d52-7a6ec396ac9b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154C2E1ABC5\\\"\",\"name\":\"indexforindexers92845b32fe\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "329e5fd3-b33a-4da0-b56e-401c4215ba75", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers942912785b')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers92845b32fe')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob142368a08')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob66004bf08')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "487718e0-249d-4789-81ad-ba58975d1410", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "aa18a135-a0e6-4f46-89ab-8284f89cf016", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "487718e0-249d-4789-81ad-ba58975d1410", + "request-id" : "aa18a135-a0e6-4f46-89ab-8284f89cf016", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:24 GMT", + "Date" : "Thu, 27 May 2021 21:16:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62806C233F1\"", - "client-request-id" : "487718e0-249d-4789-81ad-ba58975d1410", - "elapsed-time" : "70", + "ETag" : "W/\"0x8D92154C2EA38D3\"", + "client-request-id" : "aa18a135-a0e6-4f46-89ab-8284f89cf016", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F62806C233F1\\\"\",\"name\":\"azs-java-live-blob142368a08\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "487718e0-249d-4789-81ad-ba58975d1410", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154C2EA38D3\\\"\",\"name\":\"azs-java-live-blob66004bf08\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "aa18a135-a0e6-4f46-89ab-8284f89cf016", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob142368a08')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob66004bf08')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a7b1d798-4897-447e-9e9f-eea2f893b6c5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f573b4dd-30cc-4e83-b178-432771953d7f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "471", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a7b1d798-4897-447e-9e9f-eea2f893b6c5", + "request-id" : "f573b4dd-30cc-4e83-b178-432771953d7f", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:24 GMT", + "Date" : "Thu, 27 May 2021 21:16:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62806E52B65\"", - "client-request-id" : "a7b1d798-4897-447e-9e9f-eea2f893b6c5", - "elapsed-time" : "300", + "ETag" : "W/\"0x8D92154C3060343\"", + "client-request-id" : "f573b4dd-30cc-4e83-b178-432771953d7f", + "elapsed-time" : "286", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "484", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62806E52B65\\\"\",\"name\":\"indexercanrunindexer9f881038b1\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob142368a08\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers942912785b\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:24.6161748Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "a7b1d798-4897-447e-9e9f-eea2f893b6c5", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154C3060343\\\"\",\"name\":\"indexercanrunindexer4a46279520\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob66004bf08\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers92845b32fe\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:16:58.1023215Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "f573b4dd-30cc-4e83-b178-432771953d7f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexercanrunindexer9f881038b1')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexercanrunindexer4a46279520')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexercanrunindexer9f881038b1')/search.run?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexercanrunindexer4a46279520')/search.run?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3f1c103d-1876-4b96-8df8-316c22085774" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "85a019de-eef6-4323-ad23-84ccc781cd39" }, "Response" : { + "content-length" : "0", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3f1c103d-1876-4b96-8df8-316c22085774", - "elapsed-time" : "65", + "client-request-id" : "85a019de-eef6-4323-ad23-84ccc781cd39", + "elapsed-time" : "37", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "3f1c103d-1876-4b96-8df8-316c22085774", - "Content-Length" : "0", + "request-id" : "85a019de-eef6-4323-ad23-84ccc781cd39", "StatusCode" : "202", - "x-ms-client-request-id" : "3f1c103d-1876-4b96-8df8-316c22085774", - "Date" : "Fri, 02 Apr 2021 22:38:24 GMT" + "x-ms-client-request-id" : "85a019de-eef6-4323-ad23-84ccc781cd39", + "Date" : "Thu, 27 May 2021 21:16:58 GMT" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexercanrunindexer9f881038b1')/search.status?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexercanrunindexer4a46279520')/search.status?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "44863440-23af-499b-ba98-520b79f07c35" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "447e4633-5d35-4466-809e-3a19b053802f" }, "Response" : { + "content-length" : "329", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "44863440-23af-499b-ba98-520b79f07c35", + "request-id" : "447e4633-5d35-4466-809e-3a19b053802f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:38:24 GMT", + "Date" : "Thu, 27 May 2021 21:16:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "44863440-23af-499b-ba98-520b79f07c35", - "elapsed-time" : "17", + "client-request-id" : "447e4633-5d35-4466-809e-3a19b053802f", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "542", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.IndexerExecutionInfo\",\"name\":\"indexercanrunindexer9f881038b1\",\"status\":\"running\",\"lastResult\":null,\"executionHistory\":[],\"limits\":{\"maxRunTime\":\"PT0S\",\"maxDocumentExtractionSize\":0,\"maxDocumentContentCharactersToExtract\":0},\"currentState\":{\"mode\":\"indexingAllDocs\",\"allDocsInitialTrackingState\":null,\"allDocsFinalTrackingState\":null,\"resetDocsInitialTrackingState\":null,\"resetDocsFinalTrackingState\":null,\"resetDocumentKeys\":[]}}", - "x-ms-client-request-id" : "44863440-23af-499b-ba98-520b79f07c35", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.IndexerExecutionInfo\",\"name\":\"indexercanrunindexer4a46279520\",\"status\":\"running\",\"lastResult\":null,\"executionHistory\":[],\"limits\":{\"maxRunTime\":\"PT0S\",\"maxDocumentExtractionSize\":0,\"maxDocumentContentCharactersToExtract\":0}}", + "x-ms-client-request-id" : "447e4633-5d35-4466-809e-3a19b053802f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob142368a08')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob66004bf08')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e0ac04f7-4a96-4960-8af7-497b141b56a5" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "72066edd-3f20-4436-809b-b899db299bb9" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e0ac04f7-4a96-4960-8af7-497b141b56a5", - "elapsed-time" : "45", + "client-request-id" : "72066edd-3f20-4436-809b-b899db299bb9", + "elapsed-time" : "16", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "e0ac04f7-4a96-4960-8af7-497b141b56a5", + "request-id" : "72066edd-3f20-4436-809b-b899db299bb9", "StatusCode" : "204", - "x-ms-client-request-id" : "e0ac04f7-4a96-4960-8af7-497b141b56a5", - "Date" : "Fri, 02 Apr 2021 22:38:24 GMT" + "x-ms-client-request-id" : "72066edd-3f20-4436-809b-b899db299bb9", + "Date" : "Thu, 27 May 2021 21:16:58 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexercanrunindexer9f881038b1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexercanrunindexer4a46279520')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4619229e-690f-451a-9bfe-4ffa5b6a0315" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "39ff6e2a-787c-4a02-b4d6-ab0c2703fda3" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4619229e-690f-451a-9bfe-4ffa5b6a0315", - "elapsed-time" : "79", + "client-request-id" : "39ff6e2a-787c-4a02-b4d6-ab0c2703fda3", + "elapsed-time" : "28", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "4619229e-690f-451a-9bfe-4ffa5b6a0315", + "request-id" : "39ff6e2a-787c-4a02-b4d6-ab0c2703fda3", "StatusCode" : "204", - "x-ms-client-request-id" : "4619229e-690f-451a-9bfe-4ffa5b6a0315", - "Date" : "Fri, 02 Apr 2021 22:38:24 GMT" + "x-ms-client-request-id" : "39ff6e2a-787c-4a02-b4d6-ab0c2703fda3", + "Date" : "Thu, 27 May 2021 21:16:58 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers942912785b')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers92845b32fe')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9e5b0a07-af59-40c2-973c-e8dfe6df2b05" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7002de9d-dbdd-4409-b412-91029512fd76" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9e5b0a07-af59-40c2-973c-e8dfe6df2b05", - "elapsed-time" : "976", + "client-request-id" : "7002de9d-dbdd-4409-b412-91029512fd76", + "elapsed-time" : "507", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "9e5b0a07-af59-40c2-973c-e8dfe6df2b05", + "request-id" : "7002de9d-dbdd-4409-b412-91029512fd76", "StatusCode" : "204", - "x-ms-client-request-id" : "9e5b0a07-af59-40c2-973c-e8dfe6df2b05", - "Date" : "Fri, 02 Apr 2021 22:38:26 GMT" + "x-ms-client-request-id" : "7002de9d-dbdd-4409-b412-91029512fd76", + "Date" : "Thu, 27 May 2021 21:16:59 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers942912785b", "azs-java-live-blob142368a08", "indexercanrunindexer9f881038b1" ] + "variables" : [ "indexforindexers92845b32fe", "azs-java-live-blob66004bf08", "indexercanrunindexer4a46279520" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canRunIndexerAndGetIndexerStatus.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canRunIndexerAndGetIndexerStatus.json index c60312037738..7e1ccb3e3ec7 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canRunIndexerAndGetIndexerStatus.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canRunIndexerAndGetIndexerStatus.json @@ -1,228 +1,228 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8c6c74f2-8b53-4f59-881b-06425665bdfd", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a0f28b59-3fd8-4c42-9d7c-a7c64b5e8948", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8c6c74f2-8b53-4f59-881b-06425665bdfd", + "request-id" : "a0f28b59-3fd8-4c42-9d7c-a7c64b5e8948", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:58 GMT", + "Date" : "Thu, 27 May 2021 21:17:34 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6281B39F96B\"", - "client-request-id" : "8c6c74f2-8b53-4f59-881b-06425665bdfd", - "elapsed-time" : "1083", + "ETag" : "W/\"0x8D92154D85E4205\"", + "client-request-id" : "a0f28b59-3fd8-4c42-9d7c-a7c64b5e8948", + "elapsed-time" : "1466", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6281B39F96B\\\"\",\"name\":\"indexforindexers68685dd51f\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "8c6c74f2-8b53-4f59-881b-06425665bdfd", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154D85E4205\\\"\",\"name\":\"indexforindexers543759e639\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "a0f28b59-3fd8-4c42-9d7c-a7c64b5e8948", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers68685dd51f')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers543759e639')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob70042954e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob03171bffb')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cfb5a1a1-1943-4d6a-b269-72439c80437b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "88ff88df-5aee-467f-82fe-e9e730472698", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "cfb5a1a1-1943-4d6a-b269-72439c80437b", + "request-id" : "88ff88df-5aee-467f-82fe-e9e730472698", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:59 GMT", + "Date" : "Thu, 27 May 2021 21:17:34 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6281B487ADA\"", - "client-request-id" : "cfb5a1a1-1943-4d6a-b269-72439c80437b", - "elapsed-time" : "63", + "ETag" : "W/\"0x8D92154D8671D3D\"", + "client-request-id" : "88ff88df-5aee-467f-82fe-e9e730472698", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F6281B487ADA\\\"\",\"name\":\"azs-java-live-blob70042954e\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "cfb5a1a1-1943-4d6a-b269-72439c80437b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154D8671D3D\\\"\",\"name\":\"azs-java-live-blob03171bffb\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "88ff88df-5aee-467f-82fe-e9e730472698", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob70042954e')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob03171bffb')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview&mock_status=inProgress", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30&mock_status=inProgress", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b4d78a69-3c41-465f-b00f-92486002f5a4", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "407f3c98-4ac1-4ff9-8d4e-ebd4972b4c90", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b4d78a69-3c41-465f-b00f-92486002f5a4", + "request-id" : "407f3c98-4ac1-4ff9-8d4e-ebd4972b4c90", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:58 GMT", + "Date" : "Thu, 27 May 2021 21:17:34 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6281B6B9955\"", - "client-request-id" : "b4d78a69-3c41-465f-b00f-92486002f5a4", - "elapsed-time" : "327", + "ETag" : "W/\"0x8D92154D88AB14A\"", + "client-request-id" : "407f3c98-4ac1-4ff9-8d4e-ebd4972b4c90", + "elapsed-time" : "312", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6281B6B9955\\\"\",\"name\":\"indexer07411a7295f4a63\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob70042954e\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers68685dd51f\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:59.0640889Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "b4d78a69-3c41-465f-b00f-92486002f5a4", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154D88AB14A\\\"\",\"name\":\"indexer864846da94c9b44\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob03171bffb\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers543759e639\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:34.1856217Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "407f3c98-4ac1-4ff9-8d4e-ebd4972b4c90", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer07411a7295f4a63')?api-version=2020-06-30-Preview&mock_status=inProgress" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer864846da94c9b44')?api-version=2020-06-30&mock_status=inProgress" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer07411a7295f4a63')/search.status?api-version=2020-06-30-Preview&mock_status=inProgress", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer864846da94c9b44')/search.status?api-version=2020-06-30&mock_status=inProgress", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e6f821b-df0b-4d04-b9b5-af6a6b554591" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3f506198-c5dd-498b-9ab7-37d4e427627c" }, "Response" : { + "content-length" : "2111", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7e6f821b-df0b-4d04-b9b5-af6a6b554591", + "request-id" : "3f506198-c5dd-498b-9ab7-37d4e427627c", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:38:59 GMT", + "Date" : "Thu, 27 May 2021 21:17:34 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7e6f821b-df0b-4d04-b9b5-af6a6b554591", - "elapsed-time" : "26", + "client-request-id" : "3f506198-c5dd-498b-9ab7-37d4e427627c", + "elapsed-time" : "15", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "2506", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.IndexerExecutionInfo\",\"name\":\"indexer07411a7295f4a63\",\"status\":\"running\",\"lastResult\":{\"status\":\"inProgress\",\"statusDetail\":null,\"errorMessage\":null,\"startTime\":\"2021-04-02T22:38:59.4135218Z\",\"endTime\":null,\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"mode\":\"indexingAllDocs\",\"errors\":[],\"warnings\":[],\"metrics\":null},\"executionHistory\":[{\"status\":\"transientFailure\",\"statusDetail\":null,\"errorMessage\":\"The indexer could not connect to the data source\",\"startTime\":\"2021-04-02T22:38:59.4035201Z\",\"endTime\":\"2021-04-02T22:38:59.4035201Z\",\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"mode\":\"indexingAllDocs\",\"errors\":[],\"warnings\":[],\"metrics\":null},{\"status\":\"reset\",\"statusDetail\":null,\"errorMessage\":null,\"startTime\":\"2021-04-02T21:38:59.4085236Z\",\"endTime\":\"2021-04-02T21:38:59.4085236Z\",\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"mode\":\"indexingAllDocs\",\"errors\":[],\"warnings\":[],\"metrics\":null},{\"status\":\"success\",\"statusDetail\":null,\"errorMessage\":null,\"startTime\":\"2021-04-01T22:38:59.4135218Z\",\"endTime\":\"2021-04-01T23:38:59.4135218Z\",\"itemsProcessed\":124876,\"itemsFailed\":2,\"initialTrackingState\":\"100\",\"finalTrackingState\":\"200\",\"mode\":\"indexingAllDocs\",\"errors\":[{\"key\":\"1\",\"statusCode\":400,\"name\":\"DocumentExtraction.AzureBlob.MyDataSource\",\"errorMessage\":\"Key field contains unsafe characters\",\"details\":\"The file could not be parsed.\",\"documentationLink\":\"https://go.microsoft.com/fwlink/?linkid=2049388\"},{\"key\":\"121713\",\"statusCode\":400,\"name\":\"DocumentExtraction.AzureBlob.DataReader\",\"errorMessage\":\"Item is too large\",\"details\":\"Blob size cannot exceed 256 MB.\",\"documentationLink\":\"https://go.microsoft.com/fwlink/?linkid=2049388\"}],\"warnings\":[{\"key\":\"2\",\"name\":\"Enrichment.LanguageDetectionSkill.#4\",\"message\":\"Document was truncated to 50000 characters.\",\"details\":\"Try to split the input into smaller chunks using Split skill.\",\"documentationLink\":\"https://go.microsoft.com/fwlink/?linkid=2099692\"}],\"metrics\":null}],\"limits\":{\"maxRunTime\":\"P1D\",\"maxDocumentExtractionSize\":1000,\"maxDocumentContentCharactersToExtract\":100000},\"currentState\":{\"mode\":\"indexingAllDocs\",\"allDocsInitialTrackingState\":null,\"allDocsFinalTrackingState\":null,\"resetDocsInitialTrackingState\":null,\"resetDocsFinalTrackingState\":null,\"resetDocumentKeys\":[]}}", - "x-ms-client-request-id" : "7e6f821b-df0b-4d04-b9b5-af6a6b554591", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.IndexerExecutionInfo\",\"name\":\"indexer864846da94c9b44\",\"status\":\"running\",\"lastResult\":{\"status\":\"inProgress\",\"errorMessage\":null,\"startTime\":\"2021-05-27T21:17:34.5344613Z\",\"endTime\":null,\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"errors\":[],\"warnings\":[],\"metrics\":null},\"executionHistory\":[{\"status\":\"transientFailure\",\"errorMessage\":\"The indexer could not connect to the data source\",\"startTime\":\"2021-05-27T21:17:34.524468Z\",\"endTime\":\"2021-05-27T21:17:34.524468Z\",\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"errors\":[],\"warnings\":[],\"metrics\":null},{\"status\":\"reset\",\"errorMessage\":null,\"startTime\":\"2021-05-27T20:17:34.5294582Z\",\"endTime\":\"2021-05-27T20:17:34.5294582Z\",\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"errors\":[],\"warnings\":[],\"metrics\":null},{\"status\":\"success\",\"errorMessage\":null,\"startTime\":\"2021-05-26T21:17:34.5294582Z\",\"endTime\":\"2021-05-26T22:17:34.5294582Z\",\"itemsProcessed\":124876,\"itemsFailed\":2,\"initialTrackingState\":\"100\",\"finalTrackingState\":\"200\",\"errors\":[{\"key\":\"1\",\"statusCode\":400,\"name\":\"DocumentExtraction.AzureBlob.MyDataSource\",\"errorMessage\":\"Key field contains unsafe characters\",\"details\":\"The file could not be parsed.\",\"documentationLink\":\"https://go.microsoft.com/fwlink/?linkid=2049388\"},{\"key\":\"121713\",\"statusCode\":400,\"name\":\"DocumentExtraction.AzureBlob.DataReader\",\"errorMessage\":\"Item is too large\",\"details\":\"Blob size cannot exceed 256 MB.\",\"documentationLink\":\"https://go.microsoft.com/fwlink/?linkid=2049388\"}],\"warnings\":[{\"key\":\"2\",\"name\":\"Enrichment.LanguageDetectionSkill.#4\",\"message\":\"Document was truncated to 50000 characters.\",\"details\":\"Try to split the input into smaller chunks using Split skill.\",\"documentationLink\":\"https://go.microsoft.com/fwlink/?linkid=2099692\"}],\"metrics\":null}],\"limits\":{\"maxRunTime\":\"P1D\",\"maxDocumentExtractionSize\":1000,\"maxDocumentContentCharactersToExtract\":100000}}", + "x-ms-client-request-id" : "3f506198-c5dd-498b-9ab7-37d4e427627c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer07411a7295f4a63')/search.run?api-version=2020-06-30-Preview&mock_status=inProgress", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer864846da94c9b44')/search.run?api-version=2020-06-30&mock_status=inProgress", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a09daf3d-f752-4365-b53a-3409ba0022b0" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c64f09aa-3e0d-4729-96cf-acbb17ce1d93" }, "Response" : { + "content-length" : "0", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a09daf3d-f752-4365-b53a-3409ba0022b0", - "elapsed-time" : "45", + "client-request-id" : "c64f09aa-3e0d-4729-96cf-acbb17ce1d93", + "elapsed-time" : "58", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "a09daf3d-f752-4365-b53a-3409ba0022b0", - "Content-Length" : "0", + "request-id" : "c64f09aa-3e0d-4729-96cf-acbb17ce1d93", "StatusCode" : "202", - "x-ms-client-request-id" : "a09daf3d-f752-4365-b53a-3409ba0022b0", - "Date" : "Fri, 02 Apr 2021 22:38:58 GMT" + "x-ms-client-request-id" : "c64f09aa-3e0d-4729-96cf-acbb17ce1d93", + "Date" : "Thu, 27 May 2021 21:17:34 GMT" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer07411a7295f4a63')/search.status?api-version=2020-06-30-Preview&mock_status=inProgress", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer864846da94c9b44')/search.status?api-version=2020-06-30&mock_status=inProgress", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5963eea6-a2dd-4399-a83f-5897331276a1" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "65d7e9a8-0604-492b-97fe-9bfafd001708" }, "Response" : { + "content-length" : "2113", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5963eea6-a2dd-4399-a83f-5897331276a1", + "request-id" : "65d7e9a8-0604-492b-97fe-9bfafd001708", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:38:59 GMT", + "Date" : "Thu, 27 May 2021 21:17:34 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5963eea6-a2dd-4399-a83f-5897331276a1", + "client-request-id" : "65d7e9a8-0604-492b-97fe-9bfafd001708", "elapsed-time" : "2", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "2506", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.IndexerExecutionInfo\",\"name\":\"indexer07411a7295f4a63\",\"status\":\"running\",\"lastResult\":{\"status\":\"inProgress\",\"statusDetail\":null,\"errorMessage\":null,\"startTime\":\"2021-04-02T22:38:59.5202747Z\",\"endTime\":null,\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"mode\":\"indexingAllDocs\",\"errors\":[],\"warnings\":[],\"metrics\":null},\"executionHistory\":[{\"status\":\"transientFailure\",\"statusDetail\":null,\"errorMessage\":\"The indexer could not connect to the data source\",\"startTime\":\"2021-04-02T22:38:59.5153372Z\",\"endTime\":\"2021-04-02T22:38:59.5153372Z\",\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"mode\":\"indexingAllDocs\",\"errors\":[],\"warnings\":[],\"metrics\":null},{\"status\":\"reset\",\"statusDetail\":null,\"errorMessage\":null,\"startTime\":\"2021-04-02T21:38:59.5202747Z\",\"endTime\":\"2021-04-02T21:38:59.5202747Z\",\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"mode\":\"indexingAllDocs\",\"errors\":[],\"warnings\":[],\"metrics\":null},{\"status\":\"success\",\"statusDetail\":null,\"errorMessage\":null,\"startTime\":\"2021-04-01T22:38:59.5202747Z\",\"endTime\":\"2021-04-01T23:38:59.5202747Z\",\"itemsProcessed\":124876,\"itemsFailed\":2,\"initialTrackingState\":\"100\",\"finalTrackingState\":\"200\",\"mode\":\"indexingAllDocs\",\"errors\":[{\"key\":\"1\",\"statusCode\":400,\"name\":\"DocumentExtraction.AzureBlob.MyDataSource\",\"errorMessage\":\"Key field contains unsafe characters\",\"details\":\"The file could not be parsed.\",\"documentationLink\":\"https://go.microsoft.com/fwlink/?linkid=2049388\"},{\"key\":\"121713\",\"statusCode\":400,\"name\":\"DocumentExtraction.AzureBlob.DataReader\",\"errorMessage\":\"Item is too large\",\"details\":\"Blob size cannot exceed 256 MB.\",\"documentationLink\":\"https://go.microsoft.com/fwlink/?linkid=2049388\"}],\"warnings\":[{\"key\":\"2\",\"name\":\"Enrichment.LanguageDetectionSkill.#4\",\"message\":\"Document was truncated to 50000 characters.\",\"details\":\"Try to split the input into smaller chunks using Split skill.\",\"documentationLink\":\"https://go.microsoft.com/fwlink/?linkid=2099692\"}],\"metrics\":null}],\"limits\":{\"maxRunTime\":\"P1D\",\"maxDocumentExtractionSize\":1000,\"maxDocumentContentCharactersToExtract\":100000},\"currentState\":{\"mode\":\"indexingAllDocs\",\"allDocsInitialTrackingState\":null,\"allDocsFinalTrackingState\":null,\"resetDocsInitialTrackingState\":null,\"resetDocsFinalTrackingState\":null,\"resetDocumentKeys\":[]}}", - "x-ms-client-request-id" : "5963eea6-a2dd-4399-a83f-5897331276a1", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.IndexerExecutionInfo\",\"name\":\"indexer864846da94c9b44\",\"status\":\"running\",\"lastResult\":{\"status\":\"inProgress\",\"errorMessage\":null,\"startTime\":\"2021-05-27T21:17:34.6445198Z\",\"endTime\":null,\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"errors\":[],\"warnings\":[],\"metrics\":null},\"executionHistory\":[{\"status\":\"transientFailure\",\"errorMessage\":\"The indexer could not connect to the data source\",\"startTime\":\"2021-05-27T21:17:34.6445198Z\",\"endTime\":\"2021-05-27T21:17:34.6445198Z\",\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"errors\":[],\"warnings\":[],\"metrics\":null},{\"status\":\"reset\",\"errorMessage\":null,\"startTime\":\"2021-05-27T20:17:34.6445198Z\",\"endTime\":\"2021-05-27T20:17:34.6445198Z\",\"itemsProcessed\":0,\"itemsFailed\":0,\"initialTrackingState\":null,\"finalTrackingState\":null,\"errors\":[],\"warnings\":[],\"metrics\":null},{\"status\":\"success\",\"errorMessage\":null,\"startTime\":\"2021-05-26T21:17:34.6445198Z\",\"endTime\":\"2021-05-26T22:17:34.6445198Z\",\"itemsProcessed\":124876,\"itemsFailed\":2,\"initialTrackingState\":\"100\",\"finalTrackingState\":\"200\",\"errors\":[{\"key\":\"1\",\"statusCode\":400,\"name\":\"DocumentExtraction.AzureBlob.MyDataSource\",\"errorMessage\":\"Key field contains unsafe characters\",\"details\":\"The file could not be parsed.\",\"documentationLink\":\"https://go.microsoft.com/fwlink/?linkid=2049388\"},{\"key\":\"121713\",\"statusCode\":400,\"name\":\"DocumentExtraction.AzureBlob.DataReader\",\"errorMessage\":\"Item is too large\",\"details\":\"Blob size cannot exceed 256 MB.\",\"documentationLink\":\"https://go.microsoft.com/fwlink/?linkid=2049388\"}],\"warnings\":[{\"key\":\"2\",\"name\":\"Enrichment.LanguageDetectionSkill.#4\",\"message\":\"Document was truncated to 50000 characters.\",\"details\":\"Try to split the input into smaller chunks using Split skill.\",\"documentationLink\":\"https://go.microsoft.com/fwlink/?linkid=2099692\"}],\"metrics\":null}],\"limits\":{\"maxRunTime\":\"P1D\",\"maxDocumentExtractionSize\":1000,\"maxDocumentContentCharactersToExtract\":100000}}", + "x-ms-client-request-id" : "65d7e9a8-0604-492b-97fe-9bfafd001708", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob70042954e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob03171bffb')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5456a753-028c-4b83-b73e-2acfc38b12d4" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c9eb4765-432a-4671-b6c3-25c4d2945814" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5456a753-028c-4b83-b73e-2acfc38b12d4", - "elapsed-time" : "43", + "client-request-id" : "c9eb4765-432a-4671-b6c3-25c4d2945814", + "elapsed-time" : "15", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "5456a753-028c-4b83-b73e-2acfc38b12d4", + "request-id" : "c9eb4765-432a-4671-b6c3-25c4d2945814", "StatusCode" : "204", - "x-ms-client-request-id" : "5456a753-028c-4b83-b73e-2acfc38b12d4", - "Date" : "Fri, 02 Apr 2021 22:38:58 GMT" + "x-ms-client-request-id" : "c9eb4765-432a-4671-b6c3-25c4d2945814", + "Date" : "Thu, 27 May 2021 21:17:34 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer07411a7295f4a63')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer864846da94c9b44')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cee7ae6f-4890-4d2d-b2d7-76afb9268f1f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ae3aa5a5-29fc-4bd6-a84d-12756ef61555" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "cee7ae6f-4890-4d2d-b2d7-76afb9268f1f", - "elapsed-time" : "81", + "client-request-id" : "ae3aa5a5-29fc-4bd6-a84d-12756ef61555", + "elapsed-time" : "34", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "cee7ae6f-4890-4d2d-b2d7-76afb9268f1f", + "request-id" : "ae3aa5a5-29fc-4bd6-a84d-12756ef61555", "StatusCode" : "204", - "x-ms-client-request-id" : "cee7ae6f-4890-4d2d-b2d7-76afb9268f1f", - "Date" : "Fri, 02 Apr 2021 22:38:59 GMT" + "x-ms-client-request-id" : "ae3aa5a5-29fc-4bd6-a84d-12756ef61555", + "Date" : "Thu, 27 May 2021 21:17:34 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers68685dd51f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers543759e639')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1891e597-f234-4d1a-9213-b8a8fbc91ceb" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "542a5c99-cfcc-417d-a0b7-b66273b475fc" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1891e597-f234-4d1a-9213-b8a8fbc91ceb", - "elapsed-time" : "677", + "client-request-id" : "542a5c99-cfcc-417d-a0b7-b66273b475fc", + "elapsed-time" : "563", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "1891e597-f234-4d1a-9213-b8a8fbc91ceb", + "request-id" : "542a5c99-cfcc-417d-a0b7-b66273b475fc", "StatusCode" : "204", - "x-ms-client-request-id" : "1891e597-f234-4d1a-9213-b8a8fbc91ceb", - "Date" : "Fri, 02 Apr 2021 22:39:00 GMT" + "x-ms-client-request-id" : "542a5c99-cfcc-417d-a0b7-b66273b475fc", + "Date" : "Thu, 27 May 2021 21:17:35 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers68685dd51f", "azs-java-live-blob70042954e", "indexer07411a7295f4a63" ] + "variables" : [ "indexforindexers543759e639", "azs-java-live-blob03171bffb", "indexer864846da94c9b44" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canRunIndexerWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canRunIndexerWithResponse.json index caa5d0a3ad73..1f529a71740e 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canRunIndexerWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canRunIndexerWithResponse.json @@ -1,202 +1,202 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd9f5708-9535-4e25-af24-53974ed04b0c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b20c17a1-b086-4b55-a1ec-8bb7ab9264e9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "cd9f5708-9535-4e25-af24-53974ed04b0c", + "request-id" : "b20c17a1-b086-4b55-a1ec-8bb7ab9264e9", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:35 GMT", + "Date" : "Thu, 27 May 2021 21:18:09 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628310AFB31\"", - "client-request-id" : "cd9f5708-9535-4e25-af24-53974ed04b0c", - "elapsed-time" : "1115", + "ETag" : "W/\"0x8D92154EDFDF6C7\"", + "client-request-id" : "b20c17a1-b086-4b55-a1ec-8bb7ab9264e9", + "elapsed-time" : "1432", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F628310AFB31\\\"\",\"name\":\"indexforindexers4988607c3b\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "cd9f5708-9535-4e25-af24-53974ed04b0c", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154EDFDF6C7\\\"\",\"name\":\"indexforindexers66298093b6\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "b20c17a1-b086-4b55-a1ec-8bb7ab9264e9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers4988607c3b')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers66298093b6')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob784295a40')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob578651d21')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8fe7c7fd-96bc-42c4-879c-2012caa8c055", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "990f3ee4-81a6-4369-b1e2-88c3dc3aee3e", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8fe7c7fd-96bc-42c4-879c-2012caa8c055", + "request-id" : "990f3ee4-81a6-4369-b1e2-88c3dc3aee3e", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:35 GMT", + "Date" : "Thu, 27 May 2021 21:18:10 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283119F1EF\"", - "client-request-id" : "8fe7c7fd-96bc-42c4-879c-2012caa8c055", - "elapsed-time" : "64", + "ETag" : "W/\"0x8D92154EE06D20D\"", + "client-request-id" : "990f3ee4-81a6-4369-b1e2-88c3dc3aee3e", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283119F1EF\\\"\",\"name\":\"azs-java-live-blob784295a40\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "8fe7c7fd-96bc-42c4-879c-2012caa8c055", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154EE06D20D\\\"\",\"name\":\"azs-java-live-blob578651d21\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "990f3ee4-81a6-4369-b1e2-88c3dc3aee3e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob784295a40')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob578651d21')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e133daae-19fe-4906-a94f-d52c3c686b2b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7836898c-d0ad-4ae7-8fdc-e46fb127902f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e133daae-19fe-4906-a94f-d52c3c686b2b", + "request-id" : "7836898c-d0ad-4ae7-8fdc-e46fb127902f", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:35 GMT", + "Date" : "Thu, 27 May 2021 21:18:10 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62831417E08\"", - "client-request-id" : "e133daae-19fe-4906-a94f-d52c3c686b2b", - "elapsed-time" : "352", + "ETag" : "W/\"0x8D92154EE23AE13\"", + "client-request-id" : "7836898c-d0ad-4ae7-8fdc-e46fb127902f", + "elapsed-time" : "286", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62831417E08\\\"\",\"name\":\"indexer04163eaa7df41a9\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob784295a40\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers4988607c3b\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:35.6603618Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "e133daae-19fe-4906-a94f-d52c3c686b2b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154EE23AE13\\\"\",\"name\":\"indexer81655d294fdb850\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob578651d21\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers66298093b6\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:18:10.4438106Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "7836898c-d0ad-4ae7-8fdc-e46fb127902f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer04163eaa7df41a9')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer81655d294fdb850')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer04163eaa7df41a9')/search.run?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer81655d294fdb850')/search.run?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "428d2337-c574-4536-8e65-da29f50e991e" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "afe1dacd-de48-4884-9f9c-bf1255a9e94a" }, "Response" : { + "content-length" : "0", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "428d2337-c574-4536-8e65-da29f50e991e", - "elapsed-time" : "58", + "client-request-id" : "afe1dacd-de48-4884-9f9c-bf1255a9e94a", + "elapsed-time" : "46", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "428d2337-c574-4536-8e65-da29f50e991e", - "Content-Length" : "0", + "request-id" : "afe1dacd-de48-4884-9f9c-bf1255a9e94a", "StatusCode" : "202", - "x-ms-client-request-id" : "428d2337-c574-4536-8e65-da29f50e991e", - "Date" : "Fri, 02 Apr 2021 22:39:35 GMT" + "x-ms-client-request-id" : "afe1dacd-de48-4884-9f9c-bf1255a9e94a", + "Date" : "Thu, 27 May 2021 21:18:10 GMT" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer04163eaa7df41a9')/search.status?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer81655d294fdb850')/search.status?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6392cfd9-03a1-485c-b010-cf7ebf481d75" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5cc2b090-5d7a-4e9d-84b0-668709a8305e" }, "Response" : { + "content-length" : "321", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6392cfd9-03a1-485c-b010-cf7ebf481d75", + "request-id" : "5cc2b090-5d7a-4e9d-84b0-668709a8305e", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:35 GMT", + "Date" : "Thu, 27 May 2021 21:18:10 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6392cfd9-03a1-485c-b010-cf7ebf481d75", - "elapsed-time" : "20", + "client-request-id" : "5cc2b090-5d7a-4e9d-84b0-668709a8305e", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "534", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.IndexerExecutionInfo\",\"name\":\"indexer04163eaa7df41a9\",\"status\":\"running\",\"lastResult\":null,\"executionHistory\":[],\"limits\":{\"maxRunTime\":\"PT0S\",\"maxDocumentExtractionSize\":0,\"maxDocumentContentCharactersToExtract\":0},\"currentState\":{\"mode\":\"indexingAllDocs\",\"allDocsInitialTrackingState\":null,\"allDocsFinalTrackingState\":null,\"resetDocsInitialTrackingState\":null,\"resetDocsFinalTrackingState\":null,\"resetDocumentKeys\":[]}}", - "x-ms-client-request-id" : "6392cfd9-03a1-485c-b010-cf7ebf481d75", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.IndexerExecutionInfo\",\"name\":\"indexer81655d294fdb850\",\"status\":\"running\",\"lastResult\":null,\"executionHistory\":[],\"limits\":{\"maxRunTime\":\"PT0S\",\"maxDocumentExtractionSize\":0,\"maxDocumentContentCharactersToExtract\":0}}", + "x-ms-client-request-id" : "5cc2b090-5d7a-4e9d-84b0-668709a8305e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob784295a40')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob578651d21')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "54cf85f7-f4e5-45b8-992e-e93950348c1f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "517e06d0-798f-43a7-ac12-f38cc5883683" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "54cf85f7-f4e5-45b8-992e-e93950348c1f", - "elapsed-time" : "49", + "client-request-id" : "517e06d0-798f-43a7-ac12-f38cc5883683", + "elapsed-time" : "16", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "54cf85f7-f4e5-45b8-992e-e93950348c1f", + "request-id" : "517e06d0-798f-43a7-ac12-f38cc5883683", "StatusCode" : "204", - "x-ms-client-request-id" : "54cf85f7-f4e5-45b8-992e-e93950348c1f", - "Date" : "Fri, 02 Apr 2021 22:39:35 GMT" + "x-ms-client-request-id" : "517e06d0-798f-43a7-ac12-f38cc5883683", + "Date" : "Thu, 27 May 2021 21:18:10 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer04163eaa7df41a9')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer81655d294fdb850')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "53988611-8b63-4401-8193-d31d3c789261" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f5a88712-2459-4454-8c98-da9594769b0b" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "53988611-8b63-4401-8193-d31d3c789261", - "elapsed-time" : "87", + "client-request-id" : "f5a88712-2459-4454-8c98-da9594769b0b", + "elapsed-time" : "28", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "53988611-8b63-4401-8193-d31d3c789261", + "request-id" : "f5a88712-2459-4454-8c98-da9594769b0b", "StatusCode" : "204", - "x-ms-client-request-id" : "53988611-8b63-4401-8193-d31d3c789261", - "Date" : "Fri, 02 Apr 2021 22:39:35 GMT" + "x-ms-client-request-id" : "f5a88712-2459-4454-8c98-da9594769b0b", + "Date" : "Thu, 27 May 2021 21:18:10 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers4988607c3b')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers66298093b6')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9786684a-38c6-4f2b-ba09-fb9a9613a9ec" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "088b13f2-ca8e-4c0b-80db-4fb5245b5f88" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9786684a-38c6-4f2b-ba09-fb9a9613a9ec", - "elapsed-time" : "689", + "client-request-id" : "088b13f2-ca8e-4c0b-80db-4fb5245b5f88", + "elapsed-time" : "516", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "9786684a-38c6-4f2b-ba09-fb9a9613a9ec", + "request-id" : "088b13f2-ca8e-4c0b-80db-4fb5245b5f88", "StatusCode" : "204", - "x-ms-client-request-id" : "9786684a-38c6-4f2b-ba09-fb9a9613a9ec", - "Date" : "Fri, 02 Apr 2021 22:39:37 GMT" + "x-ms-client-request-id" : "088b13f2-ca8e-4c0b-80db-4fb5245b5f88", + "Date" : "Thu, 27 May 2021 21:18:11 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers4988607c3b", "azs-java-live-blob784295a40", "indexer04163eaa7df41a9" ] + "variables" : [ "indexforindexers66298093b6", "azs-java-live-blob578651d21", "indexer81655d294fdb850" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexer.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexer.json index 5d0ac239535c..ae79d8676cfc 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexer.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexer.json @@ -1,182 +1,182 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3efdcf55-4aae-455e-be2c-40d55a602a21", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4fdcbba3-81c2-4851-8caf-c6bccf4f8bd8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3efdcf55-4aae-455e-be2c-40d55a602a21", + "request-id" : "4fdcbba3-81c2-4851-8caf-c6bccf4f8bd8", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:27 GMT", + "Date" : "Thu, 27 May 2021 21:17:00 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628085FFF7C\"", - "client-request-id" : "3efdcf55-4aae-455e-be2c-40d55a602a21", - "elapsed-time" : "1042", + "ETag" : "W/\"0x8D92154C46A8F18\"", + "client-request-id" : "4fdcbba3-81c2-4851-8caf-c6bccf4f8bd8", + "elapsed-time" : "1467", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F628085FFF7C\\\"\",\"name\":\"indexforindexers793203ea7e\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "3efdcf55-4aae-455e-be2c-40d55a602a21", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154C46A8F18\\\"\",\"name\":\"indexforindexers216248c285\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "4fdcbba3-81c2-4851-8caf-c6bccf4f8bd8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers793203ea7e')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers216248c285')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob848943ef7')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob475439e99')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bcaddfa2-c1e1-4f89-bbb2-1be856505dc1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e9e95b00-d9b8-4762-99c6-b2a14d9d96b9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "bcaddfa2-c1e1-4f89-bbb2-1be856505dc1", + "request-id" : "e9e95b00-d9b8-4762-99c6-b2a14d9d96b9", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:27 GMT", + "Date" : "Thu, 27 May 2021 21:17:00 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628086DBD84\"", - "client-request-id" : "bcaddfa2-c1e1-4f89-bbb2-1be856505dc1", - "elapsed-time" : "65", + "ETag" : "W/\"0x8D92154C4787452\"", + "client-request-id" : "e9e95b00-d9b8-4762-99c6-b2a14d9d96b9", + "elapsed-time" : "64", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F628086DBD84\\\"\",\"name\":\"azs-java-live-blob848943ef7\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "bcaddfa2-c1e1-4f89-bbb2-1be856505dc1", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154C4787452\\\"\",\"name\":\"azs-java-live-blob475439e99\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "e9e95b00-d9b8-4762-99c6-b2a14d9d96b9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob848943ef7')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob475439e99')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "16b7adea-d3c4-4e4e-8aa4-934189373c6e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f92a8411-d43e-4bd7-a1bb-ae81c461eb43", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "472", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "16b7adea-d3c4-4e4e-8aa4-934189373c6e", + "request-id" : "f92a8411-d43e-4bd7-a1bb-ae81c461eb43", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:27 GMT", + "Date" : "Thu, 27 May 2021 21:17:00 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628087C8D25\"", - "client-request-id" : "16b7adea-d3c4-4e4e-8aa4-934189373c6e", - "elapsed-time" : "72", + "ETag" : "W/\"0x8D92154C48176AC\"", + "client-request-id" : "f92a8411-d43e-4bd7-a1bb-ae81c461eb43", + "elapsed-time" : "38", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "485", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F628087C8D25\\\"\",\"name\":\"indexercanupdateindexer4e691751\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob848943ef7\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers793203ea7e\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:27.4163955Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "16b7adea-d3c4-4e4e-8aa4-934189373c6e", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154C48176AC\\\"\",\"name\":\"indexercanupdateindexerc3856641\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob475439e99\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers216248c285\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:00.7170431Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "f92a8411-d43e-4bd7-a1bb-ae81c461eb43", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexercanupdateindexer4e691751')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexercanupdateindexerc3856641')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexercanupdateindexer4e691751')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexercanupdateindexerc3856641')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0fac1eb6-3432-4642-a155-a2e76ead0bcd", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3e75f043-4971-40c5-9419-e4c5e6a7034a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "488", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0fac1eb6-3432-4642-a155-a2e76ead0bcd", + "request-id" : "3e75f043-4971-40c5-9419-e4c5e6a7034a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:38:27 GMT", + "Date" : "Thu, 27 May 2021 21:17:00 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628089C76C4\"", - "client-request-id" : "0fac1eb6-3432-4642-a155-a2e76ead0bcd", - "elapsed-time" : "308", + "ETag" : "W/\"0x8D92154C49E79CC\"", + "client-request-id" : "3e75f043-4971-40c5-9419-e4c5e6a7034a", + "elapsed-time" : "284", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "500", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F628089C76C4\\\"\",\"name\":\"indexercanupdateindexer4e691751\",\"description\":\"somethingdifferent\",\"dataSourceName\":\"azs-java-live-blob848943ef7\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers793203ea7e\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:27.512968Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "0fac1eb6-3432-4642-a155-a2e76ead0bcd", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154C49E79CC\\\"\",\"name\":\"indexercanupdateindexerc3856641\",\"description\":\"somethingdifferent\",\"dataSourceName\":\"azs-java-live-blob475439e99\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers216248c285\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:00.7887106Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "3e75f043-4971-40c5-9419-e4c5e6a7034a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob848943ef7')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob475439e99')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8a19173-f28d-4181-8de1-2f56d045b7ed" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "52570aa8-c940-42f1-9e4c-c3e33d8c90c7" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e8a19173-f28d-4181-8de1-2f56d045b7ed", - "elapsed-time" : "55", + "client-request-id" : "52570aa8-c940-42f1-9e4c-c3e33d8c90c7", + "elapsed-time" : "17", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "e8a19173-f28d-4181-8de1-2f56d045b7ed", + "request-id" : "52570aa8-c940-42f1-9e4c-c3e33d8c90c7", "StatusCode" : "204", - "x-ms-client-request-id" : "e8a19173-f28d-4181-8de1-2f56d045b7ed", - "Date" : "Fri, 02 Apr 2021 22:38:27 GMT" + "x-ms-client-request-id" : "52570aa8-c940-42f1-9e4c-c3e33d8c90c7", + "Date" : "Thu, 27 May 2021 21:17:00 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexercanupdateindexer4e691751')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexercanupdateindexerc3856641')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0855990-1a07-4667-bb32-42225f1a760f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d48d70dc-9eca-47e9-97cd-4ed3bf0fe50b" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c0855990-1a07-4667-bb32-42225f1a760f", - "elapsed-time" : "85", + "client-request-id" : "d48d70dc-9eca-47e9-97cd-4ed3bf0fe50b", + "elapsed-time" : "29", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "c0855990-1a07-4667-bb32-42225f1a760f", + "request-id" : "d48d70dc-9eca-47e9-97cd-4ed3bf0fe50b", "StatusCode" : "204", - "x-ms-client-request-id" : "c0855990-1a07-4667-bb32-42225f1a760f", - "Date" : "Fri, 02 Apr 2021 22:38:27 GMT" + "x-ms-client-request-id" : "d48d70dc-9eca-47e9-97cd-4ed3bf0fe50b", + "Date" : "Thu, 27 May 2021 21:17:00 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers793203ea7e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers216248c285')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "03c84c5a-9deb-456b-9456-d168a3df15fa" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e1038331-19f8-4c24-9428-8ddd248db8d2" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "03c84c5a-9deb-456b-9456-d168a3df15fa", - "elapsed-time" : "759", + "client-request-id" : "e1038331-19f8-4c24-9428-8ddd248db8d2", + "elapsed-time" : "488", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "03c84c5a-9deb-456b-9456-d168a3df15fa", + "request-id" : "e1038331-19f8-4c24-9428-8ddd248db8d2", "StatusCode" : "204", - "x-ms-client-request-id" : "03c84c5a-9deb-456b-9456-d168a3df15fa", - "Date" : "Fri, 02 Apr 2021 22:38:28 GMT" + "x-ms-client-request-id" : "e1038331-19f8-4c24-9428-8ddd248db8d2", + "Date" : "Thu, 27 May 2021 21:17:01 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers793203ea7e", "azs-java-live-blob848943ef7", "indexercanupdateindexer4e691751", "indexercanupdateindexer4e664060" ] + "variables" : [ "indexforindexers216248c285", "azs-java-live-blob475439e99", "indexercanupdateindexerc3856641", "indexercanupdateindexerc3890949" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerBatchSizeMaxFailedItems.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerBatchSizeMaxFailedItems.json index ad592e50f014..8aef7303e732 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerBatchSizeMaxFailedItems.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerBatchSizeMaxFailedItems.json @@ -1,182 +1,182 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9590a6d4-042a-4db9-949c-01846828ee45", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a3a47108-8fcc-4f83-a4fe-db5853761dbd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9590a6d4-042a-4db9-949c-01846828ee45", + "request-id" : "a3a47108-8fcc-4f83-a4fe-db5853761dbd", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:01 GMT", + "Date" : "Thu, 27 May 2021 21:17:36 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6281CC1C81D\"", - "client-request-id" : "9590a6d4-042a-4db9-949c-01846828ee45", - "elapsed-time" : "1061", + "ETag" : "W/\"0x8D92154D9FE5B1B\"", + "client-request-id" : "a3a47108-8fcc-4f83-a4fe-db5853761dbd", + "elapsed-time" : "1444", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6281CC1C81D\\\"\",\"name\":\"indexforindexers693840ac8a\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "9590a6d4-042a-4db9-949c-01846828ee45", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154D9FE5B1B\\\"\",\"name\":\"indexforindexers53806116a8\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "a3a47108-8fcc-4f83-a4fe-db5853761dbd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers693840ac8a')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers53806116a8')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob34204bb1f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob17640e006')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bee8e30f-0ded-4efe-a813-f3d0a247e947", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b90743f3-b45d-4f0a-8fae-3a3d3389f1e0", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "bee8e30f-0ded-4efe-a813-f3d0a247e947", + "request-id" : "b90743f3-b45d-4f0a-8fae-3a3d3389f1e0", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:01 GMT", + "Date" : "Thu, 27 May 2021 21:17:36 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6281CCFFB64\"", - "client-request-id" : "bee8e30f-0ded-4efe-a813-f3d0a247e947", - "elapsed-time" : "65", + "ETag" : "W/\"0x8D92154DA07F9C9\"", + "client-request-id" : "b90743f3-b45d-4f0a-8fae-3a3d3389f1e0", + "elapsed-time" : "28", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F6281CCFFB64\\\"\",\"name\":\"azs-java-live-blob34204bb1f\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "bee8e30f-0ded-4efe-a813-f3d0a247e947", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154DA07F9C9\\\"\",\"name\":\"azs-java-live-blob17640e006\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "b90743f3-b45d-4f0a-8fae-3a3d3389f1e0", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob34204bb1f')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob17640e006')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac8713ef-dec9-4b83-93b2-068b8bfe1b26", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c94e44ef-a80d-43dc-8a99-f980cc9245f6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "462", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ac8713ef-dec9-4b83-93b2-068b8bfe1b26", + "request-id" : "c94e44ef-a80d-43dc-8a99-f980cc9245f6", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:01 GMT", + "Date" : "Thu, 27 May 2021 21:17:36 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6281CDEA3F6\"", - "client-request-id" : "ac8713ef-dec9-4b83-93b2-068b8bfe1b26", - "elapsed-time" : "69", + "ETag" : "W/\"0x8D92154DA10ADED\"", + "client-request-id" : "c94e44ef-a80d-43dc-8a99-f980cc9245f6", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6281CDEA3F6\\\"\",\"name\":\"indexer696952bef0694d9\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob34204bb1f\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers693840ac8a\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:01.6153458Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "ac8713ef-dec9-4b83-93b2-068b8bfe1b26", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154DA10ADED\\\"\",\"name\":\"indexer70856b397d5834b\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob17640e006\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers53806116a8\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:36.886426Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "c94e44ef-a80d-43dc-8a99-f980cc9245f6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer696952bef0694d9')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer70856b397d5834b')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer696952bef0694d9')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer70856b397d5834b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "885bd073-9566-4e92-a101-5de32fa386f7", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d20495d0-7cf4-4789-981d-2390c2001c53", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "567", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "885bd073-9566-4e92-a101-5de32fa386f7", + "request-id" : "d20495d0-7cf4-4789-981d-2390c2001c53", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:01 GMT", + "Date" : "Thu, 27 May 2021 21:17:36 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6281CED73A0\"", - "client-request-id" : "885bd073-9566-4e92-a101-5de32fa386f7", - "elapsed-time" : "68", + "ETag" : "W/\"0x8D92154DA1A4C9F\"", + "client-request-id" : "d20495d0-7cf4-4789-981d-2390c2001c53", + "elapsed-time" : "37", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "580", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6281CED73A0\\\"\",\"name\":\"indexer696952bef0694d9\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob34204bb1f\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers693840ac8a\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:01.7109963Z\"},\"parameters\":{\"batchSize\":20,\"maxFailedItems\":121,\"maxFailedItemsPerBatch\":11,\"base64EncodeKeys\":null,\"configuration\":{}},\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "885bd073-9566-4e92-a101-5de32fa386f7", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154DA1A4C9F\\\"\",\"name\":\"indexer70856b397d5834b\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob17640e006\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers53806116a8\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:36.9507759Z\"},\"parameters\":{\"batchSize\":20,\"maxFailedItems\":121,\"maxFailedItemsPerBatch\":11,\"base64EncodeKeys\":null,\"configuration\":{}},\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "d20495d0-7cf4-4789-981d-2390c2001c53", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob34204bb1f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob17640e006')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef3fa417-47d4-4215-a8c3-df63583c893d" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b331efa7-7d82-40ab-992b-1265e53c375d" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ef3fa417-47d4-4215-a8c3-df63583c893d", - "elapsed-time" : "56", + "client-request-id" : "b331efa7-7d82-40ab-992b-1265e53c375d", + "elapsed-time" : "15", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "ef3fa417-47d4-4215-a8c3-df63583c893d", + "request-id" : "b331efa7-7d82-40ab-992b-1265e53c375d", "StatusCode" : "204", - "x-ms-client-request-id" : "ef3fa417-47d4-4215-a8c3-df63583c893d", - "Date" : "Fri, 02 Apr 2021 22:39:01 GMT" + "x-ms-client-request-id" : "b331efa7-7d82-40ab-992b-1265e53c375d", + "Date" : "Thu, 27 May 2021 21:17:36 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer696952bef0694d9')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer70856b397d5834b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5033a5df-f932-4de7-af15-d0542add64a4" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2dfd817d-b4f5-436f-a38a-45bbc610b02c" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5033a5df-f932-4de7-af15-d0542add64a4", - "elapsed-time" : "69", + "client-request-id" : "2dfd817d-b4f5-436f-a38a-45bbc610b02c", + "elapsed-time" : "25", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "5033a5df-f932-4de7-af15-d0542add64a4", + "request-id" : "2dfd817d-b4f5-436f-a38a-45bbc610b02c", "StatusCode" : "204", - "x-ms-client-request-id" : "5033a5df-f932-4de7-af15-d0542add64a4", - "Date" : "Fri, 02 Apr 2021 22:39:01 GMT" + "x-ms-client-request-id" : "2dfd817d-b4f5-436f-a38a-45bbc610b02c", + "Date" : "Thu, 27 May 2021 21:17:36 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers693840ac8a')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers53806116a8')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8bb345d-2ebf-41a8-9a6f-092c6926c149" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6cb768ae-55a4-49be-a9d8-40a51113c66b" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f8bb345d-2ebf-41a8-9a6f-092c6926c149", - "elapsed-time" : "993", + "client-request-id" : "6cb768ae-55a4-49be-a9d8-40a51113c66b", + "elapsed-time" : "488", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "f8bb345d-2ebf-41a8-9a6f-092c6926c149", + "request-id" : "6cb768ae-55a4-49be-a9d8-40a51113c66b", "StatusCode" : "204", - "x-ms-client-request-id" : "f8bb345d-2ebf-41a8-9a6f-092c6926c149", - "Date" : "Fri, 02 Apr 2021 22:39:02 GMT" + "x-ms-client-request-id" : "6cb768ae-55a4-49be-a9d8-40a51113c66b", + "Date" : "Thu, 27 May 2021 21:17:36 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers693840ac8a", "azs-java-live-blob34204bb1f", "indexer696952bef0694d9" ] + "variables" : [ "indexforindexers53806116a8", "azs-java-live-blob17640e006", "indexer70856b397d5834b" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerBlobParams.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerBlobParams.json index e81184586d25..a521e93c77bf 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerBlobParams.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerBlobParams.json @@ -1,182 +1,182 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "16ab8415-0e44-475c-aebc-7348c25de83b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "885d92f5-bfdc-4e58-b8a7-5f36a640fd9a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "16ab8415-0e44-475c-aebc-7348c25de83b", + "request-id" : "885d92f5-bfdc-4e58-b8a7-5f36a640fd9a", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:30 GMT", + "Date" : "Thu, 27 May 2021 21:17:03 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62809FF2AB3\"", - "client-request-id" : "16ab8415-0e44-475c-aebc-7348c25de83b", - "elapsed-time" : "1202", + "ETag" : "W/\"0x8D92154C5FA9FB5\"", + "client-request-id" : "885d92f5-bfdc-4e58-b8a7-5f36a640fd9a", + "elapsed-time" : "1519", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62809FF2AB3\\\"\",\"name\":\"indexforindexers853295d04e\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "16ab8415-0e44-475c-aebc-7348c25de83b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154C5FA9FB5\\\"\",\"name\":\"indexforindexers859222fb36\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "885d92f5-bfdc-4e58-b8a7-5f36a640fd9a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers853295d04e')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers859222fb36')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/datasources?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8989fb48-9c8c-4243-a8db-00ca78d0aed4", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8c719734-39de-495e-9dbe-091a69d8875d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8989fb48-9c8c-4243-a8db-00ca78d0aed4", + "request-id" : "8c719734-39de-495e-9dbe-091a69d8875d", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:30 GMT", + "Date" : "Thu, 27 May 2021 21:17:03 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6280A0DFA63\"", - "client-request-id" : "8989fb48-9c8c-4243-a8db-00ca78d0aed4", - "elapsed-time" : "66", + "ETag" : "W/\"0x8D92154C6032CBF\"", + "client-request-id" : "8c719734-39de-495e-9dbe-091a69d8875d", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F6280A0DFA63\\\"\",\"name\":\"azs-java-live-blob75473f8b0\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "8989fb48-9c8c-4243-a8db-00ca78d0aed4", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154C6032CBF\\\"\",\"name\":\"azs-java-live-blob181606da2\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "8c719734-39de-495e-9dbe-091a69d8875d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob75473f8b0')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob181606da2')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4afb5b6e-2d7e-4367-8e16-c2b44d69737a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "29d685cf-8a72-41a9-aeb5-152eab57fa60", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4afb5b6e-2d7e-4367-8e16-c2b44d69737a", + "request-id" : "29d685cf-8a72-41a9-aeb5-152eab57fa60", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:30 GMT", + "Date" : "Thu, 27 May 2021 21:17:03 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6280A1C2DAB\"", - "client-request-id" : "4afb5b6e-2d7e-4367-8e16-c2b44d69737a", - "elapsed-time" : "74", + "ETag" : "W/\"0x8D92154C60CF28B\"", + "client-request-id" : "29d685cf-8a72-41a9-aeb5-152eab57fa60", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6280A1C2DAB\\\"\",\"name\":\"indexer54559dca706c07e\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob75473f8b0\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers853295d04e\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:30.1370998Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "4afb5b6e-2d7e-4367-8e16-c2b44d69737a", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154C60CF28B\\\"\",\"name\":\"indexer439743b17cd895f\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob181606da2\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers859222fb36\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:03.3068002Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "29d685cf-8a72-41a9-aeb5-152eab57fa60", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer54559dca706c07e')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer439743b17cd895f')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer54559dca706c07e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer439743b17cd895f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c7906c8b-4b4f-499f-81de-2593169e5348", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "581bd291-87ac-4633-af9b-9c845feef298", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "720", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c7906c8b-4b4f-499f-81de-2593169e5348", + "request-id" : "581bd291-87ac-4633-af9b-9c845feef298", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:38:30 GMT", + "Date" : "Thu, 27 May 2021 21:17:03 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6280A3C1756\"", - "client-request-id" : "c7906c8b-4b4f-499f-81de-2593169e5348", - "elapsed-time" : "272", + "ETag" : "W/\"0x8D92154C62B7C96\"", + "client-request-id" : "581bd291-87ac-4633-af9b-9c845feef298", + "elapsed-time" : "305", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "733", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6280A3C1756\\\"\",\"name\":\"indexer54559dca706c07e\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob75473f8b0\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers853295d04e\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:30.2343716Z\"},\"parameters\":{\"batchSize\":null,\"maxFailedItems\":null,\"maxFailedItemsPerBatch\":null,\"base64EncodeKeys\":null,\"configuration\":{\"excludedFileNameExtensions\":\".xlsx\",\"indexedFileNameExtensions\":\".pdf,.docx\",\"failOnUnsupportedContentType\":false,\"dataToExtract\":\"storageMetadata\"}},\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "c7906c8b-4b4f-499f-81de-2593169e5348", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154C62B7C96\\\"\",\"name\":\"indexer439743b17cd895f\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob181606da2\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers859222fb36\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:03.3773555Z\"},\"parameters\":{\"batchSize\":null,\"maxFailedItems\":null,\"maxFailedItemsPerBatch\":null,\"base64EncodeKeys\":null,\"configuration\":{\"excludedFileNameExtensions\":\".xlsx\",\"indexedFileNameExtensions\":\".pdf,.docx\",\"failOnUnsupportedContentType\":false,\"dataToExtract\":\"storageMetadata\"}},\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "581bd291-87ac-4633-af9b-9c845feef298", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob75473f8b0')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob181606da2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e64ffb33-19cc-44aa-9cf3-22bd13c8d321" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "99073542-4dac-415f-80bf-3f0bdfda81ad" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e64ffb33-19cc-44aa-9cf3-22bd13c8d321", - "elapsed-time" : "62", + "client-request-id" : "99073542-4dac-415f-80bf-3f0bdfda81ad", + "elapsed-time" : "16", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "e64ffb33-19cc-44aa-9cf3-22bd13c8d321", + "request-id" : "99073542-4dac-415f-80bf-3f0bdfda81ad", "StatusCode" : "204", - "x-ms-client-request-id" : "e64ffb33-19cc-44aa-9cf3-22bd13c8d321", - "Date" : "Fri, 02 Apr 2021 22:38:30 GMT" + "x-ms-client-request-id" : "99073542-4dac-415f-80bf-3f0bdfda81ad", + "Date" : "Thu, 27 May 2021 21:17:03 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer54559dca706c07e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer439743b17cd895f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b4c625c-4404-4726-97bc-51d7fab9d5d0" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d1994c7b-bff3-4a00-846e-c3faae0ef3ca" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5b4c625c-4404-4726-97bc-51d7fab9d5d0", - "elapsed-time" : "75", + "client-request-id" : "d1994c7b-bff3-4a00-846e-c3faae0ef3ca", + "elapsed-time" : "27", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "5b4c625c-4404-4726-97bc-51d7fab9d5d0", + "request-id" : "d1994c7b-bff3-4a00-846e-c3faae0ef3ca", "StatusCode" : "204", - "x-ms-client-request-id" : "5b4c625c-4404-4726-97bc-51d7fab9d5d0", - "Date" : "Fri, 02 Apr 2021 22:38:30 GMT" + "x-ms-client-request-id" : "d1994c7b-bff3-4a00-846e-c3faae0ef3ca", + "Date" : "Thu, 27 May 2021 21:17:03 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers853295d04e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers859222fb36')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2dc474b0-247d-468e-968c-50fd8e9a71f2" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3e05ccd4-5acd-4962-a83e-60bedb138262" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2dc474b0-247d-468e-968c-50fd8e9a71f2", - "elapsed-time" : "665", + "client-request-id" : "3e05ccd4-5acd-4962-a83e-60bedb138262", + "elapsed-time" : "472", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "2dc474b0-247d-468e-968c-50fd8e9a71f2", + "request-id" : "3e05ccd4-5acd-4962-a83e-60bedb138262", "StatusCode" : "204", - "x-ms-client-request-id" : "2dc474b0-247d-468e-968c-50fd8e9a71f2", - "Date" : "Fri, 02 Apr 2021 22:38:31 GMT" + "x-ms-client-request-id" : "3e05ccd4-5acd-4962-a83e-60bedb138262", + "Date" : "Thu, 27 May 2021 21:17:04 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers853295d04e", "azs-java-live-blob75473f8b0", "indexer54559dca706c07e", "indexer0381237068a53a4" ] + "variables" : [ "indexforindexers859222fb36", "azs-java-live-blob181606da2", "indexer439743b17cd895f", "indexer15771bcfab85488" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerDisabled.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerDisabled.json index 2fbb9c5063f3..48d5385533db 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerDisabled.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerDisabled.json @@ -1,182 +1,182 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "18b03e6c-7723-4f23-bbac-3ff65121d03a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c7be342c-6bf4-4767-a8f0-cc93025f17d4", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "18b03e6c-7723-4f23-bbac-3ff65121d03a", + "request-id" : "c7be342c-6bf4-4767-a8f0-cc93025f17d4", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:30 GMT", + "Date" : "Thu, 27 May 2021 21:18:05 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282DEB5599\"", - "client-request-id" : "18b03e6c-7723-4f23-bbac-3ff65121d03a", - "elapsed-time" : "1034", + "ETag" : "W/\"0x8D92154EADBB258\"", + "client-request-id" : "c7be342c-6bf4-4767-a8f0-cc93025f17d4", + "elapsed-time" : "1457", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282DEB5599\\\"\",\"name\":\"indexforindexers68006fb8c5\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "18b03e6c-7723-4f23-bbac-3ff65121d03a", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154EADBB258\\\"\",\"name\":\"indexforindexers8336798d0b\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "c7be342c-6bf4-4767-a8f0-cc93025f17d4", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers68006fb8c5')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers8336798d0b')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob22463d367')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob78824d88b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e4a5c9a1-e020-4cd0-b3bc-f780157913f6", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "854a9c34-18b2-43ff-bf51-eaa591799647", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e4a5c9a1-e020-4cd0-b3bc-f780157913f6", + "request-id" : "854a9c34-18b2-43ff-bf51-eaa591799647", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:30 GMT", + "Date" : "Thu, 27 May 2021 21:18:05 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282DFCE4DD\"", - "client-request-id" : "e4a5c9a1-e020-4cd0-b3bc-f780157913f6", - "elapsed-time" : "68", + "ETag" : "W/\"0x8D92154EAE43F62\"", + "client-request-id" : "854a9c34-18b2-43ff-bf51-eaa591799647", + "elapsed-time" : "27", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282DFCE4DD\\\"\",\"name\":\"azs-java-live-blob22463d367\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "e4a5c9a1-e020-4cd0-b3bc-f780157913f6", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154EAE43F62\\\"\",\"name\":\"azs-java-live-blob78824d88b\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "854a9c34-18b2-43ff-bf51-eaa591799647", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob22463d367')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob78824d88b')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f0203fe4-4082-4717-83b6-232e1df53a82", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f3dd09f6-9129-4907-aca1-c23400e82512", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f0203fe4-4082-4717-83b6-232e1df53a82", + "request-id" : "f3dd09f6-9129-4907-aca1-c23400e82512", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:30 GMT", + "Date" : "Thu, 27 May 2021 21:18:05 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282E0B6650\"", - "client-request-id" : "f0203fe4-4082-4717-83b6-232e1df53a82", - "elapsed-time" : "67", + "ETag" : "W/\"0x8D92154EAEC7E42\"", + "client-request-id" : "f3dd09f6-9129-4907-aca1-c23400e82512", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282E0B6650\\\"\",\"name\":\"indexer09757112652a279\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob22463d367\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers68006fb8c5\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:30.4294787Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "f0203fe4-4082-4717-83b6-232e1df53a82", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154EAEC7E42\\\"\",\"name\":\"indexer817755a7080325e\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob78824d88b\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers8336798d0b\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:18:05.1707274Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "f3dd09f6-9129-4907-aca1-c23400e82512", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer09757112652a279')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer817755a7080325e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer09757112652a279')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer817755a7080325e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "59f1c126-50f9-4810-ae50-6876736b4fb4", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c9a07ceb-e606-4690-a884-f17fe068142f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "464", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "59f1c126-50f9-4810-ae50-6876736b4fb4", + "request-id" : "c9a07ceb-e606-4690-a884-f17fe068142f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:30 GMT", + "Date" : "Thu, 27 May 2021 21:18:05 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282E2D9A3F\"", - "client-request-id" : "59f1c126-50f9-4810-ae50-6876736b4fb4", - "elapsed-time" : "306", + "ETag" : "W/\"0x8D92154EB07370D\"", + "client-request-id" : "c9a07ceb-e606-4690-a884-f17fe068142f", + "elapsed-time" : "275", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "477", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282E2D9A3F\\\"\",\"name\":\"indexer09757112652a279\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob22463d367\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers68006fb8c5\",\"disabled\":false,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:30.5337391Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "59f1c126-50f9-4810-ae50-6876736b4fb4", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154EB07370D\\\"\",\"name\":\"indexer817755a7080325e\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob78824d88b\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers8336798d0b\",\"disabled\":false,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:18:05.2356974Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "c9a07ceb-e606-4690-a884-f17fe068142f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob22463d367')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob78824d88b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "20637dda-9931-4123-a32e-68b1b5c9612c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bbc655f5-d555-4c3b-9c13-398a37819b8d" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "20637dda-9931-4123-a32e-68b1b5c9612c", - "elapsed-time" : "54", + "client-request-id" : "bbc655f5-d555-4c3b-9c13-398a37819b8d", + "elapsed-time" : "17", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "20637dda-9931-4123-a32e-68b1b5c9612c", + "request-id" : "bbc655f5-d555-4c3b-9c13-398a37819b8d", "StatusCode" : "204", - "x-ms-client-request-id" : "20637dda-9931-4123-a32e-68b1b5c9612c", - "Date" : "Fri, 02 Apr 2021 22:39:30 GMT" + "x-ms-client-request-id" : "bbc655f5-d555-4c3b-9c13-398a37819b8d", + "Date" : "Thu, 27 May 2021 21:18:05 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer09757112652a279')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer817755a7080325e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e01b1df-9748-47d6-a8b8-4bf2cd29ce5a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2b86013b-4936-467c-a6e5-18ad128e2f13" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4e01b1df-9748-47d6-a8b8-4bf2cd29ce5a", - "elapsed-time" : "83", + "client-request-id" : "2b86013b-4936-467c-a6e5-18ad128e2f13", + "elapsed-time" : "35", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "4e01b1df-9748-47d6-a8b8-4bf2cd29ce5a", + "request-id" : "2b86013b-4936-467c-a6e5-18ad128e2f13", "StatusCode" : "204", - "x-ms-client-request-id" : "4e01b1df-9748-47d6-a8b8-4bf2cd29ce5a", - "Date" : "Fri, 02 Apr 2021 22:39:30 GMT" + "x-ms-client-request-id" : "2b86013b-4936-467c-a6e5-18ad128e2f13", + "Date" : "Thu, 27 May 2021 21:18:05 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers68006fb8c5')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers8336798d0b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "dc4fb942-19e6-49c8-8bd3-17bb68f15c41" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1e6e44ba-33d7-41c6-8bda-8ca94898a33f" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "dc4fb942-19e6-49c8-8bd3-17bb68f15c41", - "elapsed-time" : "703", + "client-request-id" : "1e6e44ba-33d7-41c6-8bda-8ca94898a33f", + "elapsed-time" : "500", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "dc4fb942-19e6-49c8-8bd3-17bb68f15c41", + "request-id" : "1e6e44ba-33d7-41c6-8bda-8ca94898a33f", "StatusCode" : "204", - "x-ms-client-request-id" : "dc4fb942-19e6-49c8-8bd3-17bb68f15c41", - "Date" : "Fri, 02 Apr 2021 22:39:31 GMT" + "x-ms-client-request-id" : "1e6e44ba-33d7-41c6-8bda-8ca94898a33f", + "Date" : "Thu, 27 May 2021 21:18:06 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers68006fb8c5", "azs-java-live-blob22463d367", "indexer09757112652a279", "indexer062018234e4a781" ] + "variables" : [ "indexforindexers8336798d0b", "azs-java-live-blob78824d88b", "indexer817755a7080325e", "indexer89161cf4d789214" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerFieldMapping.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerFieldMapping.json index cc174b1123d8..97993aaf99aa 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerFieldMapping.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerFieldMapping.json @@ -1,182 +1,182 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8caf83f0-dd31-4f2f-8f66-d54958a4cd35", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4148069f-24aa-4313-8d94-8596dbaeae8d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8caf83f0-dd31-4f2f-8f66-d54958a4cd35", + "request-id" : "4148069f-24aa-4313-8d94-8596dbaeae8d", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:04 GMT", + "Date" : "Thu, 27 May 2021 21:17:39 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6281E513912\"", - "client-request-id" : "8caf83f0-dd31-4f2f-8f66-d54958a4cd35", - "elapsed-time" : "1103", + "ETag" : "W/\"0x8D92154DB60EAC6\"", + "client-request-id" : "4148069f-24aa-4313-8d94-8596dbaeae8d", + "elapsed-time" : "1515", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6281E513912\\\"\",\"name\":\"indexforindexers870866912e\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "8caf83f0-dd31-4f2f-8f66-d54958a4cd35", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154DB60EAC6\\\"\",\"name\":\"indexforindexers2107804393\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "4148069f-24aa-4313-8d94-8596dbaeae8d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers870866912e')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers2107804393')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob57532bae9')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob57597b98e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a57dc7a-ee2a-42f2-bd3d-09d6aab7ad74", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6b2c7045-706e-4266-bc90-bc8cad8d659e", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3a57dc7a-ee2a-42f2-bd3d-09d6aab7ad74", + "request-id" : "6b2c7045-706e-4266-bc90-bc8cad8d659e", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:04 GMT", + "Date" : "Thu, 27 May 2021 21:17:38 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6281E5F9376\"", - "client-request-id" : "3a57dc7a-ee2a-42f2-bd3d-09d6aab7ad74", - "elapsed-time" : "63", + "ETag" : "W/\"0x8D92154DB6977D4\"", + "client-request-id" : "6b2c7045-706e-4266-bc90-bc8cad8d659e", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F6281E5F9376\\\"\",\"name\":\"azs-java-live-blob57532bae9\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "3a57dc7a-ee2a-42f2-bd3d-09d6aab7ad74", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154DB6977D4\\\"\",\"name\":\"azs-java-live-blob57597b98e\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "6b2c7045-706e-4266-bc90-bc8cad8d659e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob57532bae9')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob57597b98e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce5963dd-0eee-4905-a6eb-7b2604f67ac8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6c76d53b-1375-4563-9eb4-07b4511a7c00", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ce5963dd-0eee-4905-a6eb-7b2604f67ac8", + "request-id" : "6c76d53b-1375-4563-9eb4-07b4511a7c00", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:04 GMT", + "Date" : "Thu, 27 May 2021 21:17:39 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6281E6EB144\"", - "client-request-id" : "ce5963dd-0eee-4905-a6eb-7b2604f67ac8", - "elapsed-time" : "80", + "ETag" : "W/\"0x8D92154DB738BEE\"", + "client-request-id" : "6c76d53b-1375-4563-9eb4-07b4511a7c00", + "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6281E6EB144\\\"\",\"name\":\"indexer90537e525129170\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob57532bae9\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers870866912e\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:04.2326614Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "ce5963dd-0eee-4905-a6eb-7b2604f67ac8", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154DB738BEE\\\"\",\"name\":\"indexer67864474828a6f3\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob57597b98e\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers2107804393\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:39.2127686Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "6c76d53b-1375-4563-9eb4-07b4511a7c00", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer90537e525129170')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer67864474828a6f3')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer90537e525129170')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer67864474828a6f3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9ccb073-8382-4029-83d5-19184a074cb5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b0f05772-a35c-4760-967d-17fac5f7a542", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "545", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f9ccb073-8382-4029-83d5-19184a074cb5", + "request-id" : "b0f05772-a35c-4760-967d-17fac5f7a542", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:04 GMT", + "Date" : "Thu, 27 May 2021 21:17:38 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6281E8D622D\"", - "client-request-id" : "f9ccb073-8382-4029-83d5-19184a074cb5", - "elapsed-time" : "263", + "ETag" : "W/\"0x8D92154DB91C7AB\"", + "client-request-id" : "b0f05772-a35c-4760-967d-17fac5f7a542", + "elapsed-time" : "295", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "558", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6281E8D622D\\\"\",\"name\":\"indexer90537e525129170\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob57532bae9\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers870866912e\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:04.3343665Z\"},\"parameters\":null,\"fieldMappings\":[{\"sourceFieldName\":\"state_alpha\",\"targetFieldName\":\"state\",\"mappingFunction\":null}],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "f9ccb073-8382-4029-83d5-19184a074cb5", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154DB91C7AB\\\"\",\"name\":\"indexer67864474828a6f3\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob57597b98e\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers2107804393\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:39.2773819Z\"},\"parameters\":null,\"fieldMappings\":[{\"sourceFieldName\":\"state_alpha\",\"targetFieldName\":\"state\",\"mappingFunction\":null}],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "b0f05772-a35c-4760-967d-17fac5f7a542", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob57532bae9')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob57597b98e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ade21c8-18d8-4ffa-9e52-033a2175b816" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "997c7e2f-74ee-450e-ba0c-646ce3a12fe9" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7ade21c8-18d8-4ffa-9e52-033a2175b816", - "elapsed-time" : "61", + "client-request-id" : "997c7e2f-74ee-450e-ba0c-646ce3a12fe9", + "elapsed-time" : "17", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "7ade21c8-18d8-4ffa-9e52-033a2175b816", + "request-id" : "997c7e2f-74ee-450e-ba0c-646ce3a12fe9", "StatusCode" : "204", - "x-ms-client-request-id" : "7ade21c8-18d8-4ffa-9e52-033a2175b816", - "Date" : "Fri, 02 Apr 2021 22:39:04 GMT" + "x-ms-client-request-id" : "997c7e2f-74ee-450e-ba0c-646ce3a12fe9", + "Date" : "Thu, 27 May 2021 21:17:39 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer90537e525129170')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer67864474828a6f3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "33ef630d-4d49-4444-8a50-f7d7ba5c7603" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1ae1ab5f-7766-416e-a612-4cefeb50b6ca" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "33ef630d-4d49-4444-8a50-f7d7ba5c7603", - "elapsed-time" : "66", + "client-request-id" : "1ae1ab5f-7766-416e-a612-4cefeb50b6ca", + "elapsed-time" : "30", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "33ef630d-4d49-4444-8a50-f7d7ba5c7603", + "request-id" : "1ae1ab5f-7766-416e-a612-4cefeb50b6ca", "StatusCode" : "204", - "x-ms-client-request-id" : "33ef630d-4d49-4444-8a50-f7d7ba5c7603", - "Date" : "Fri, 02 Apr 2021 22:39:04 GMT" + "x-ms-client-request-id" : "1ae1ab5f-7766-416e-a612-4cefeb50b6ca", + "Date" : "Thu, 27 May 2021 21:17:38 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers870866912e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers2107804393')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d988a30f-6271-445b-b44a-945017e79465" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "eb349f4e-1388-4f48-bd42-57721724c919" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d988a30f-6271-445b-b44a-945017e79465", - "elapsed-time" : "756", + "client-request-id" : "eb349f4e-1388-4f48-bd42-57721724c919", + "elapsed-time" : "500", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "d988a30f-6271-445b-b44a-945017e79465", + "request-id" : "eb349f4e-1388-4f48-bd42-57721724c919", "StatusCode" : "204", - "x-ms-client-request-id" : "d988a30f-6271-445b-b44a-945017e79465", - "Date" : "Fri, 02 Apr 2021 22:39:05 GMT" + "x-ms-client-request-id" : "eb349f4e-1388-4f48-bd42-57721724c919", + "Date" : "Thu, 27 May 2021 21:17:40 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers870866912e", "azs-java-live-blob57532bae9", "indexer90537e525129170", "indexer92079a10ef375dc" ] + "variables" : [ "indexforindexers2107804393", "azs-java-live-blob57597b98e", "indexer67864474828a6f3", "indexer9242287d4e0d996" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerSchedule.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerSchedule.json index fb4230e7f18e..6adc2a0d6526 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerSchedule.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerSchedule.json @@ -1,182 +1,182 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bef1b3d6-5ad1-4b3e-a14b-07dacebd2089", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2374d0bd-af84-4e31-9878-372f8b059ace", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "bef1b3d6-5ad1-4b3e-a14b-07dacebd2089", + "request-id" : "2374d0bd-af84-4e31-9878-372f8b059ace", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:08 GMT", + "Date" : "Thu, 27 May 2021 21:17:43 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62821759A6B\"", - "client-request-id" : "bef1b3d6-5ad1-4b3e-a14b-07dacebd2089", - "elapsed-time" : "1109", + "ETag" : "W/\"0x8D92154DE2B3B36\"", + "client-request-id" : "2374d0bd-af84-4e31-9878-372f8b059ace", + "elapsed-time" : "1457", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62821759A6B\\\"\",\"name\":\"indexforindexers072624e1d2\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "bef1b3d6-5ad1-4b3e-a14b-07dacebd2089", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154DE2B3B36\\\"\",\"name\":\"indexforindexers30409c44f2\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "2374d0bd-af84-4e31-9878-372f8b059ace", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers072624e1d2')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers30409c44f2')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob34174fe17')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob6639930dc')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f089da79-daa4-4e22-8901-3866c822d54f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "938d4a01-8198-4722-972f-7ac70c68a3c3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f089da79-daa4-4e22-8901-3866c822d54f", + "request-id" : "938d4a01-8198-4722-972f-7ac70c68a3c3", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:09 GMT", + "Date" : "Thu, 27 May 2021 21:17:43 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628218AFAE7\"", - "client-request-id" : "f089da79-daa4-4e22-8901-3866c822d54f", - "elapsed-time" : "64", + "ETag" : "W/\"0x8D92154DE33EF5A\"", + "client-request-id" : "938d4a01-8198-4722-972f-7ac70c68a3c3", + "elapsed-time" : "28", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F628218AFAE7\\\"\",\"name\":\"azs-java-live-blob34174fe17\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "f089da79-daa4-4e22-8901-3866c822d54f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154DE33EF5A\\\"\",\"name\":\"azs-java-live-blob6639930dc\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "938d4a01-8198-4722-972f-7ac70c68a3c3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob34174fe17')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob6639930dc')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e770648-096f-4d14-a5ab-2c5c56c8ba86", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5111b773-f1c2-4f61-964f-45470efa3b63", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8e770648-096f-4d14-a5ab-2c5c56c8ba86", + "request-id" : "5111b773-f1c2-4f61-964f-45470efa3b63", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:08 GMT", + "Date" : "Thu, 27 May 2021 21:17:43 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62821992E31\"", - "client-request-id" : "8e770648-096f-4d14-a5ab-2c5c56c8ba86", - "elapsed-time" : "71", + "ETag" : "W/\"0x8D92154DE3F8A36\"", + "client-request-id" : "5111b773-f1c2-4f61-964f-45470efa3b63", + "elapsed-time" : "41", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62821992E31\\\"\",\"name\":\"indexer509975119bdb553\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob34174fe17\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers072624e1d2\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:09.5450938Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "8e770648-096f-4d14-a5ab-2c5c56c8ba86", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154DE3F8A36\\\"\",\"name\":\"indexer02950ec7c9cfb75\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob6639930dc\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers30409c44f2\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:43.8967072Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "5111b773-f1c2-4f61-964f-45470efa3b63", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer509975119bdb553')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer02950ec7c9cfb75')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer509975119bdb553')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer02950ec7c9cfb75')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "321184e1-f039-476c-a67c-ac420820ef8c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "98be073a-3e5e-422a-aae0-447539043843", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "465", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "321184e1-f039-476c-a67c-ac420820ef8c", + "request-id" : "98be073a-3e5e-422a-aae0-447539043843", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:09 GMT", + "Date" : "Thu, 27 May 2021 21:17:43 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62821BC4CAC\"", - "client-request-id" : "321184e1-f039-476c-a67c-ac420820ef8c", - "elapsed-time" : "295", + "ETag" : "W/\"0x8D92154DE5A6A20\"", + "client-request-id" : "98be073a-3e5e-422a-aae0-447539043843", + "elapsed-time" : "275", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "478", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62821BC4CAC\\\"\",\"name\":\"indexer509975119bdb553\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob34174fe17\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers072624e1d2\",\"disabled\":null,\"schedule\":{\"interval\":\"PT10M\",\"startTime\":\"2021-04-02T22:39:09.6436646Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "321184e1-f039-476c-a67c-ac420820ef8c", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154DE5A6A20\\\"\",\"name\":\"indexer02950ec7c9cfb75\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob6639930dc\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers30409c44f2\",\"disabled\":null,\"schedule\":{\"interval\":\"PT10M\",\"startTime\":\"2021-05-27T21:17:43.9638899Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "98be073a-3e5e-422a-aae0-447539043843", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob34174fe17')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob6639930dc')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4595712d-9d0c-4d8c-9a9d-46375eacb088" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fedc526b-85d5-4552-967d-56a98bc54cc3" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4595712d-9d0c-4d8c-9a9d-46375eacb088", - "elapsed-time" : "62", + "client-request-id" : "fedc526b-85d5-4552-967d-56a98bc54cc3", + "elapsed-time" : "17", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "4595712d-9d0c-4d8c-9a9d-46375eacb088", + "request-id" : "fedc526b-85d5-4552-967d-56a98bc54cc3", "StatusCode" : "204", - "x-ms-client-request-id" : "4595712d-9d0c-4d8c-9a9d-46375eacb088", - "Date" : "Fri, 02 Apr 2021 22:39:09 GMT" + "x-ms-client-request-id" : "fedc526b-85d5-4552-967d-56a98bc54cc3", + "Date" : "Thu, 27 May 2021 21:17:44 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer509975119bdb553')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer02950ec7c9cfb75')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6e35ca74-3082-4fd8-9e4a-df178f5f2cfb" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7f19df7d-34d2-4255-9bf1-59516770d3ab" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6e35ca74-3082-4fd8-9e4a-df178f5f2cfb", - "elapsed-time" : "67", + "client-request-id" : "7f19df7d-34d2-4255-9bf1-59516770d3ab", + "elapsed-time" : "28", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "6e35ca74-3082-4fd8-9e4a-df178f5f2cfb", + "request-id" : "7f19df7d-34d2-4255-9bf1-59516770d3ab", "StatusCode" : "204", - "x-ms-client-request-id" : "6e35ca74-3082-4fd8-9e4a-df178f5f2cfb", - "Date" : "Fri, 02 Apr 2021 22:39:09 GMT" + "x-ms-client-request-id" : "7f19df7d-34d2-4255-9bf1-59516770d3ab", + "Date" : "Thu, 27 May 2021 21:17:43 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers072624e1d2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers30409c44f2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "293206c9-e9ac-4e0a-9975-1d1e6ee19554" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "42431a65-641e-4e4a-b6e9-c85a9daba0cb" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "293206c9-e9ac-4e0a-9975-1d1e6ee19554", - "elapsed-time" : "687", + "client-request-id" : "42431a65-641e-4e4a-b6e9-c85a9daba0cb", + "elapsed-time" : "549", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "293206c9-e9ac-4e0a-9975-1d1e6ee19554", + "request-id" : "42431a65-641e-4e4a-b6e9-c85a9daba0cb", "StatusCode" : "204", - "x-ms-client-request-id" : "293206c9-e9ac-4e0a-9975-1d1e6ee19554", - "Date" : "Fri, 02 Apr 2021 22:39:10 GMT" + "x-ms-client-request-id" : "42431a65-641e-4e4a-b6e9-c85a9daba0cb", + "Date" : "Thu, 27 May 2021 21:17:44 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers072624e1d2", "azs-java-live-blob34174fe17", "indexer509975119bdb553", "indexer2920973b14cff26" ] + "variables" : [ "indexforindexers30409c44f2", "azs-java-live-blob6639930dc", "indexer02950ec7c9cfb75", "indexer5897539a87f1ffe" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerSkillset.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerSkillset.json index 93e438a0fa2a..e6fca800570a 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerSkillset.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.canUpdateIndexerSkillset.json @@ -1,232 +1,232 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5887c8fe-99e1-4b2e-9891-b5d99042fdfd", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4405aa95-70c9-44c2-9d10-71567bda5c13", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5887c8fe-99e1-4b2e-9891-b5d99042fdfd", + "request-id" : "4405aa95-70c9-44c2-9d10-71567bda5c13", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:48 GMT", + "Date" : "Thu, 27 May 2021 21:17:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62814F7524A\"", - "client-request-id" : "5887c8fe-99e1-4b2e-9891-b5d99042fdfd", - "elapsed-time" : "1060", + "ETag" : "W/\"0x8D92154D1155FE0\"", + "client-request-id" : "4405aa95-70c9-44c2-9d10-71567bda5c13", + "elapsed-time" : "1441", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62814F7524A\\\"\",\"name\":\"indexforindexers6466805077\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "5887c8fe-99e1-4b2e-9891-b5d99042fdfd", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154D1155FE0\\\"\",\"name\":\"indexforindexers5689159dfb\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "4405aa95-70c9-44c2-9d10-71567bda5c13", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers6466805077')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers5689159dfb')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob49237cd46')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob12068d000')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "32a7c18d-c47d-427a-aed8-00118d98efc3", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e83e562d-580a-43da-99c8-6ef6510224df", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "32a7c18d-c47d-427a-aed8-00118d98efc3", + "request-id" : "e83e562d-580a-43da-99c8-6ef6510224df", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:48 GMT", + "Date" : "Thu, 27 May 2021 21:17:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628150621E6\"", - "client-request-id" : "32a7c18d-c47d-427a-aed8-00118d98efc3", - "elapsed-time" : "63", + "ETag" : "W/\"0x8D92154D11F25A7\"", + "client-request-id" : "e83e562d-580a-43da-99c8-6ef6510224df", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F628150621E6\\\"\",\"name\":\"azs-java-live-blob49237cd46\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "32a7c18d-c47d-427a-aed8-00118d98efc3", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154D11F25A7\\\"\",\"name\":\"azs-java-live-blob12068d000\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "e83e562d-580a-43da-99c8-6ef6510224df", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob49237cd46')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob12068d000')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8840cc76-ad82-41ff-89e0-662d8764603b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1d3213d2-6955-4641-86e7-2546cb334e47", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8840cc76-ad82-41ff-89e0-662d8764603b", + "request-id" : "1d3213d2-6955-4641-86e7-2546cb334e47", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:48 GMT", + "Date" : "Thu, 27 May 2021 21:17:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62815153FB9\"", - "client-request-id" : "8840cc76-ad82-41ff-89e0-662d8764603b", - "elapsed-time" : "65", + "ETag" : "W/\"0x8D92154D129D5FE\"", + "client-request-id" : "1d3213d2-6955-4641-86e7-2546cb334e47", + "elapsed-time" : "38", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62815153FB9\\\"\",\"name\":\"indexer28537d596462e96\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob49237cd46\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers6466805077\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:48.5487378Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "8840cc76-ad82-41ff-89e0-662d8764603b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154D129D5FE\\\"\",\"name\":\"indexer144285fe005d3f0\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob12068d000\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers5689159dfb\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:21.9498433Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "1d3213d2-6955-4641-86e7-2546cb334e47", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer28537d596462e96')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer144285fe005d3f0')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "24c21b29-27e7-4a26-b78b-d2f600c5b70a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9609dc92-5320-41fb-81bc-9eb5917227b9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "745", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "24c21b29-27e7-4a26-b78b-d2f600c5b70a", + "request-id" : "9609dc92-5320-41fb-81bc-9eb5917227b9", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:48 GMT", + "Date" : "Thu, 27 May 2021 21:17:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6281534DB26\"", - "client-request-id" : "24c21b29-27e7-4a26-b78b-d2f600c5b70a", - "elapsed-time" : "128", + "ETag" : "W/\"0x8D92154D209B061\"", + "client-request-id" : "9609dc92-5320-41fb-81bc-9eb5917227b9", + "elapsed-time" : "1320", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "745", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6281534DB26\\\"\",\"name\":\"ocr-skillset29748defad37\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":true,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "24c21b29-27e7-4a26-b78b-d2f600c5b70a", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154D209B061\\\"\",\"name\":\"ocr-skillset3063454c1b5e\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":true,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "9609dc92-5320-41fb-81bc-9eb5917227b9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset29748defad37')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset3063454c1b5e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer28537d596462e96')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer144285fe005d3f0')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a41b3658-3f14-4cad-84e3-14991fe60014", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1a5c3d6e-da96-4fe9-a88d-9c5df98e259f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "485", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a41b3658-3f14-4cad-84e3-14991fe60014", + "request-id" : "1a5c3d6e-da96-4fe9-a88d-9c5df98e259f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:38:48 GMT", + "Date" : "Thu, 27 May 2021 21:17:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6281554C4C0\"", - "client-request-id" : "a41b3658-3f14-4cad-84e3-14991fe60014", - "elapsed-time" : "275", + "ETag" : "W/\"0x8D92154D2361FA6\"", + "client-request-id" : "1a5c3d6e-da96-4fe9-a88d-9c5df98e259f", + "elapsed-time" : "333", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "498", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6281554C4C0\\\"\",\"name\":\"indexer28537d596462e96\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob49237cd46\",\"skillsetName\":\"ocr-skillset29748defad37\",\"targetIndexName\":\"indexforindexers6466805077\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:48.8537588Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "a41b3658-3f14-4cad-84e3-14991fe60014", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154D2361FA6\\\"\",\"name\":\"indexer144285fe005d3f0\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob12068d000\",\"skillsetName\":\"ocr-skillset3063454c1b5e\",\"targetIndexName\":\"indexforindexers5689159dfb\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:23.5495837Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "1a5c3d6e-da96-4fe9-a88d-9c5df98e259f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset29748defad37')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset3063454c1b5e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "173ef945-5378-4bad-b974-9ec5cfe7831a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "425f4bb7-9312-470c-b9d5-352b390ba5ed" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "173ef945-5378-4bad-b974-9ec5cfe7831a", - "elapsed-time" : "123", + "client-request-id" : "425f4bb7-9312-470c-b9d5-352b390ba5ed", + "elapsed-time" : "26", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "173ef945-5378-4bad-b974-9ec5cfe7831a", + "request-id" : "425f4bb7-9312-470c-b9d5-352b390ba5ed", "StatusCode" : "204", - "x-ms-client-request-id" : "173ef945-5378-4bad-b974-9ec5cfe7831a", - "Date" : "Fri, 02 Apr 2021 22:38:48 GMT" + "x-ms-client-request-id" : "425f4bb7-9312-470c-b9d5-352b390ba5ed", + "Date" : "Thu, 27 May 2021 21:17:23 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob49237cd46')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob12068d000')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "687ca906-ea16-42c3-b1f8-40ebd74ebe03" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "803d93e1-39f5-42a0-8a15-53e1d4b0bec0" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "687ca906-ea16-42c3-b1f8-40ebd74ebe03", - "elapsed-time" : "47", + "client-request-id" : "803d93e1-39f5-42a0-8a15-53e1d4b0bec0", + "elapsed-time" : "17", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "687ca906-ea16-42c3-b1f8-40ebd74ebe03", + "request-id" : "803d93e1-39f5-42a0-8a15-53e1d4b0bec0", "StatusCode" : "204", - "x-ms-client-request-id" : "687ca906-ea16-42c3-b1f8-40ebd74ebe03", - "Date" : "Fri, 02 Apr 2021 22:38:49 GMT" + "x-ms-client-request-id" : "803d93e1-39f5-42a0-8a15-53e1d4b0bec0", + "Date" : "Thu, 27 May 2021 21:17:23 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer28537d596462e96')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer144285fe005d3f0')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "23547a2e-b3ae-4cd7-ab8d-1fe66f41137c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d75c7dc1-3684-40fd-838f-58650237502e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "23547a2e-b3ae-4cd7-ab8d-1fe66f41137c", - "elapsed-time" : "84", + "client-request-id" : "d75c7dc1-3684-40fd-838f-58650237502e", + "elapsed-time" : "28", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "23547a2e-b3ae-4cd7-ab8d-1fe66f41137c", + "request-id" : "d75c7dc1-3684-40fd-838f-58650237502e", "StatusCode" : "204", - "x-ms-client-request-id" : "23547a2e-b3ae-4cd7-ab8d-1fe66f41137c", - "Date" : "Fri, 02 Apr 2021 22:38:48 GMT" + "x-ms-client-request-id" : "d75c7dc1-3684-40fd-838f-58650237502e", + "Date" : "Thu, 27 May 2021 21:17:23 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers6466805077')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers5689159dfb')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b75ae0aa-f96a-492d-90cd-27b037dbc75a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "cbc7ca4a-2772-4c48-b57e-e42356b3a2e1" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b75ae0aa-f96a-492d-90cd-27b037dbc75a", - "elapsed-time" : "532", + "client-request-id" : "cbc7ca4a-2772-4c48-b57e-e42356b3a2e1", + "elapsed-time" : "542", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "b75ae0aa-f96a-492d-90cd-27b037dbc75a", + "request-id" : "cbc7ca4a-2772-4c48-b57e-e42356b3a2e1", "StatusCode" : "204", - "x-ms-client-request-id" : "b75ae0aa-f96a-492d-90cd-27b037dbc75a", - "Date" : "Fri, 02 Apr 2021 22:38:49 GMT" + "x-ms-client-request-id" : "cbc7ca4a-2772-4c48-b57e-e42356b3a2e1", + "Date" : "Thu, 27 May 2021 21:17:23 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers6466805077", "azs-java-live-blob49237cd46", "indexer28537d596462e96", "ocr-skillset29748defad37", "indexer323043e13bf8575" ] + "variables" : [ "indexforindexers5689159dfb", "azs-java-live-blob12068d000", "indexer144285fe005d3f0", "ocr-skillset3063454c1b5e", "indexer5628804f35345e4" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.createIndexerFailsWithUsefulMessageOnUserError.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.createIndexerFailsWithUsefulMessageOnUserError.json index 1ad6a82a7bf9..2a44f267747e 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.createIndexerFailsWithUsefulMessageOnUserError.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.createIndexerFailsWithUsefulMessageOnUserError.json @@ -1,82 +1,82 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d2899ee9-a22f-4599-b325-cb3e6ba15afe", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2076bdfb-aa56-43c1-a198-27bc5c516e46", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d2899ee9-a22f-4599-b325-cb3e6ba15afe", + "request-id" : "2076bdfb-aa56-43c1-a198-27bc5c516e46", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:06 GMT", + "Date" : "Thu, 27 May 2021 21:17:41 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6281FD55DB4\"", - "client-request-id" : "d2899ee9-a22f-4599-b325-cb3e6ba15afe", - "elapsed-time" : "1066", + "ETag" : "W/\"0x8D92154DCF170A1\"", + "client-request-id" : "2076bdfb-aa56-43c1-a198-27bc5c516e46", + "elapsed-time" : "1524", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6281FD55DB4\\\"\",\"name\":\"indexforindexers7431179920\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "d2899ee9-a22f-4599-b325-cb3e6ba15afe", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154DCF170A1\\\"\",\"name\":\"indexforindexers3410595980\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "2076bdfb-aa56-43c1-a198-27bc5c516e46", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers7431179920')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers3410595980')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b15af00c-aa71-43d7-877c-ca9c82e5373c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "95981228-c0da-4006-94dc-37621d75ff5f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "118", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b15af00c-aa71-43d7-877c-ca9c82e5373c", + "request-id" : "95981228-c0da-4006-94dc-37621d75ff5f", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:39:06 GMT", + "Date" : "Thu, 27 May 2021 21:17:41 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b15af00c-aa71-43d7-877c-ca9c82e5373c", - "elapsed-time" : "31", + "client-request-id" : "95981228-c0da-4006-94dc-37621d75ff5f", + "elapsed-time" : "19", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "118", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"This indexer refers to a data source 'thisdatasourcedoesnotexist' that doesn't exist\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "b15af00c-aa71-43d7-877c-ca9c82e5373c", + "x-ms-client-request-id" : "95981228-c0da-4006-94dc-37621d75ff5f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers7431179920')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers3410595980')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3ca60e9a-1efe-4762-aae5-dcbd31d0a80f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a388688b-c0db-4e4b-8ddd-c6d7e0ad403a" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3ca60e9a-1efe-4762-aae5-dcbd31d0a80f", - "elapsed-time" : "1527", + "client-request-id" : "a388688b-c0db-4e4b-8ddd-c6d7e0ad403a", + "elapsed-time" : "497", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "3ca60e9a-1efe-4762-aae5-dcbd31d0a80f", + "request-id" : "a388688b-c0db-4e4b-8ddd-c6d7e0ad403a", "StatusCode" : "204", - "x-ms-client-request-id" : "3ca60e9a-1efe-4762-aae5-dcbd31d0a80f", - "Date" : "Fri, 02 Apr 2021 22:39:07 GMT" + "x-ms-client-request-id" : "a388688b-c0db-4e4b-8ddd-c6d7e0ad403a", + "Date" : "Thu, 27 May 2021 21:17:41 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers7431179920", "indexer2200470be40218b" ] + "variables" : [ "indexforindexers3410595980", "indexer31817123b1a93ce" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.createIndexerReturnsCorrectDefinition.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.createIndexerReturnsCorrectDefinition.json index 6dee4b368ce9..e96d68e667b3 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.createIndexerReturnsCorrectDefinition.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.createIndexerReturnsCorrectDefinition.json @@ -1,154 +1,154 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "19ac4e2b-9685-432c-b447-1e50e7e0dfd1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "74f18361-0c33-4757-9016-cc873a4b0b1c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "19ac4e2b-9685-432c-b447-1e50e7e0dfd1", + "request-id" : "74f18361-0c33-4757-9016-cc873a4b0b1c", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:19 GMT", + "Date" : "Thu, 27 May 2021 21:16:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628038F9F4E\"", - "client-request-id" : "19ac4e2b-9685-432c-b447-1e50e7e0dfd1", - "elapsed-time" : "1083", + "ETag" : "W/\"0x8D92154BF9AE8B9\"", + "client-request-id" : "74f18361-0c33-4757-9016-cc873a4b0b1c", + "elapsed-time" : "1459", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F628038F9F4E\\\"\",\"name\":\"indexforindexers38467c6d01\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "19ac4e2b-9685-432c-b447-1e50e7e0dfd1", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154BF9AE8B9\\\"\",\"name\":\"indexforindexers217269fc23\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "74f18361-0c33-4757-9016-cc873a4b0b1c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers38467c6d01')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers217269fc23')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob4738497bb')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob0580865c3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b4999d7-395f-4815-8915-a6c2256daf17", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "54018c8d-49b2-4aec-8492-b75165956e59", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6b4999d7-395f-4815-8915-a6c2256daf17", + "request-id" : "54018c8d-49b2-4aec-8492-b75165956e59", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:19 GMT", + "Date" : "Thu, 27 May 2021 21:16:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628039DAB84\"", - "client-request-id" : "6b4999d7-395f-4815-8915-a6c2256daf17", - "elapsed-time" : "63", + "ETag" : "W/\"0x8D92154BFA4D596\"", + "client-request-id" : "54018c8d-49b2-4aec-8492-b75165956e59", + "elapsed-time" : "27", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F628039DAB84\\\"\",\"name\":\"azs-java-live-blob4738497bb\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "6b4999d7-395f-4815-8915-a6c2256daf17", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154BFA4D596\\\"\",\"name\":\"azs-java-live-blob0580865c3\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "54018c8d-49b2-4aec-8492-b75165956e59", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob4738497bb')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob0580865c3')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a7ea44d6-f858-4eb7-914e-32b946603195", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bfd96dd0-823c-49b9-b5fc-d2f66ac26e0f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "566", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a7ea44d6-f858-4eb7-914e-32b946603195", + "request-id" : "bfd96dd0-823c-49b9-b5fc-d2f66ac26e0f", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:19 GMT", + "Date" : "Thu, 27 May 2021 21:16:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62803AFB001\"", - "client-request-id" : "a7ea44d6-f858-4eb7-914e-32b946603195", - "elapsed-time" : "74", + "ETag" : "W/\"0x8D92154BFD4C7F1\"", + "client-request-id" : "bfd96dd0-823c-49b9-b5fc-d2f66ac26e0f", + "elapsed-time" : "260", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "579", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62803AFB001\\\"\",\"name\":\"indexer134617e4d36808c\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob4738497bb\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers38467c6d01\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:19.3590948Z\"},\"parameters\":{\"batchSize\":50,\"maxFailedItems\":10,\"maxFailedItemsPerBatch\":10,\"base64EncodeKeys\":null,\"configuration\":{}},\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "a7ea44d6-f858-4eb7-914e-32b946603195", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154BFD4C7F1\\\"\",\"name\":\"indexer227653b1fa72a50\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob0580865c3\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers217269fc23\",\"disabled\":true,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:16:52.8688184Z\"},\"parameters\":{\"batchSize\":50,\"maxFailedItems\":10,\"maxFailedItemsPerBatch\":10,\"base64EncodeKeys\":null,\"configuration\":{}},\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "bfd96dd0-823c-49b9-b5fc-d2f66ac26e0f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer134617e4d36808c')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer227653b1fa72a50')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob4738497bb')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob0580865c3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6bf57829-86eb-4c1a-885f-ccdfcf68c1ef" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9647f157-cab4-426c-8af9-ea4658071a92" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6bf57829-86eb-4c1a-885f-ccdfcf68c1ef", - "elapsed-time" : "55", + "client-request-id" : "9647f157-cab4-426c-8af9-ea4658071a92", + "elapsed-time" : "16", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "6bf57829-86eb-4c1a-885f-ccdfcf68c1ef", + "request-id" : "9647f157-cab4-426c-8af9-ea4658071a92", "StatusCode" : "204", - "x-ms-client-request-id" : "6bf57829-86eb-4c1a-885f-ccdfcf68c1ef", - "Date" : "Fri, 02 Apr 2021 22:38:19 GMT" + "x-ms-client-request-id" : "9647f157-cab4-426c-8af9-ea4658071a92", + "Date" : "Thu, 27 May 2021 21:16:52 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer134617e4d36808c')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer227653b1fa72a50')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "28175c19-9a09-4de9-bc46-01108a427525" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bb88f46d-2f60-4c36-af0a-4be43b618746" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "28175c19-9a09-4de9-bc46-01108a427525", - "elapsed-time" : "66", + "client-request-id" : "bb88f46d-2f60-4c36-af0a-4be43b618746", + "elapsed-time" : "23", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "28175c19-9a09-4de9-bc46-01108a427525", + "request-id" : "bb88f46d-2f60-4c36-af0a-4be43b618746", "StatusCode" : "204", - "x-ms-client-request-id" : "28175c19-9a09-4de9-bc46-01108a427525", - "Date" : "Fri, 02 Apr 2021 22:38:19 GMT" + "x-ms-client-request-id" : "bb88f46d-2f60-4c36-af0a-4be43b618746", + "Date" : "Thu, 27 May 2021 21:16:52 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers38467c6d01')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers217269fc23')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ce39704-05df-4957-987c-2702d6eaf851" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "04d888fb-1c31-4d22-a405-926bf051af7a" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8ce39704-05df-4957-987c-2702d6eaf851", - "elapsed-time" : "1069", + "client-request-id" : "04d888fb-1c31-4d22-a405-926bf051af7a", + "elapsed-time" : "540", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "8ce39704-05df-4957-987c-2702d6eaf851", + "request-id" : "04d888fb-1c31-4d22-a405-926bf051af7a", "StatusCode" : "204", - "x-ms-client-request-id" : "8ce39704-05df-4957-987c-2702d6eaf851", - "Date" : "Fri, 02 Apr 2021 22:38:20 GMT" + "x-ms-client-request-id" : "04d888fb-1c31-4d22-a405-926bf051af7a", + "Date" : "Thu, 27 May 2021 21:16:52 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers38467c6d01", "azs-java-live-blob4738497bb", "indexer134617e4d36808c" ] + "variables" : [ "indexforindexers217269fc23", "azs-java-live-blob0580865c3", "indexer227653b1fa72a50" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.createOrUpdateIndexerIfNotExistsSucceedsOnNoResource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.createOrUpdateIndexerIfNotExistsSucceedsOnNoResource.json index 0bc2bb62a877..bf377f1f3989 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.createOrUpdateIndexerIfNotExistsSucceedsOnNoResource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.createOrUpdateIndexerIfNotExistsSucceedsOnNoResource.json @@ -1,154 +1,154 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "26f32306-3def-45e3-aa8d-e6018c4cbcfe", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "80e3b371-575d-4519-972e-eb3af5723033", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "26f32306-3def-45e3-aa8d-e6018c4cbcfe", + "request-id" : "80e3b371-575d-4519-972e-eb3af5723033", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:43 GMT", + "Date" : "Thu, 27 May 2021 21:17:16 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62811EFCCBF\"", - "client-request-id" : "26f32306-3def-45e3-aa8d-e6018c4cbcfe", - "elapsed-time" : "1090", + "ETag" : "W/\"0x8D92154CDE13DDD\"", + "client-request-id" : "80e3b371-575d-4519-972e-eb3af5723033", + "elapsed-time" : "1604", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62811EFCCBF\\\"\",\"name\":\"indexforindexers06315b7686\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "26f32306-3def-45e3-aa8d-e6018c4cbcfe", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154CDE13DDD\\\"\",\"name\":\"indexforindexers233474d7ae\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "80e3b371-575d-4519-972e-eb3af5723033", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers06315b7686')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers233474d7ae')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob804556289')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob96777e67e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7de097c6-a42b-4e05-8cc2-54ebc3c7b962", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7e1663e2-1c18-49ad-91ec-08b4f1b759fd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7de097c6-a42b-4e05-8cc2-54ebc3c7b962", + "request-id" : "7e1663e2-1c18-49ad-91ec-08b4f1b759fd", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:43 GMT", + "Date" : "Thu, 27 May 2021 21:17:16 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62811FD63AE\"", - "client-request-id" : "7de097c6-a42b-4e05-8cc2-54ebc3c7b962", - "elapsed-time" : "67", + "ETag" : "W/\"0x8D92154CDE97CB9\"", + "client-request-id" : "7e1663e2-1c18-49ad-91ec-08b4f1b759fd", + "elapsed-time" : "27", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F62811FD63AE\\\"\",\"name\":\"azs-java-live-blob804556289\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "7de097c6-a42b-4e05-8cc2-54ebc3c7b962", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154CDE97CB9\\\"\",\"name\":\"azs-java-live-blob96777e67e\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "7e1663e2-1c18-49ad-91ec-08b4f1b759fd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob804556289')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob96777e67e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer6056656f8a8c6dd')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer2053265b0589b16')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "476a7bb2-70d6-4666-9ef1-ba9bfc15748d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0d6a993e-f78a-4b21-a4f1-7c1c0a81d99c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "476a7bb2-70d6-4666-9ef1-ba9bfc15748d", + "request-id" : "0d6a993e-f78a-4b21-a4f1-7c1c0a81d99c", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:43 GMT", + "Date" : "Thu, 27 May 2021 21:17:16 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628121D7466\"", - "client-request-id" : "476a7bb2-70d6-4666-9ef1-ba9bfc15748d", - "elapsed-time" : "306", + "ETag" : "W/\"0x8D92154CE06A6FB\"", + "client-request-id" : "0d6a993e-f78a-4b21-a4f1-7c1c0a81d99c", + "elapsed-time" : "346", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F628121D7466\\\"\",\"name\":\"indexer6056656f8a8c6dd\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob804556289\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers06315b7686\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:43.4579138Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "476a7bb2-70d6-4666-9ef1-ba9bfc15748d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154CE06A6FB\\\"\",\"name\":\"indexer2053265b0589b16\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob96777e67e\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers233474d7ae\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:16.5562854Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "0d6a993e-f78a-4b21-a4f1-7c1c0a81d99c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer6056656f8a8c6dd')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer2053265b0589b16')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob804556289')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob96777e67e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "361d8621-be60-4e93-8f65-5f808d9947a3" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a161780c-8fb9-41b6-b403-907d373f92a0" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "361d8621-be60-4e93-8f65-5f808d9947a3", - "elapsed-time" : "57", + "client-request-id" : "a161780c-8fb9-41b6-b403-907d373f92a0", + "elapsed-time" : "15", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "361d8621-be60-4e93-8f65-5f808d9947a3", + "request-id" : "a161780c-8fb9-41b6-b403-907d373f92a0", "StatusCode" : "204", - "x-ms-client-request-id" : "361d8621-be60-4e93-8f65-5f808d9947a3", - "Date" : "Fri, 02 Apr 2021 22:38:43 GMT" + "x-ms-client-request-id" : "a161780c-8fb9-41b6-b403-907d373f92a0", + "Date" : "Thu, 27 May 2021 21:17:16 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer6056656f8a8c6dd')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer2053265b0589b16')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d766edf3-f31d-4256-aeb8-888d3a401fed" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8bdf26e1-c857-4bba-9bbf-62ffbad23404" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d766edf3-f31d-4256-aeb8-888d3a401fed", - "elapsed-time" : "84", + "client-request-id" : "8bdf26e1-c857-4bba-9bbf-62ffbad23404", + "elapsed-time" : "29", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "d766edf3-f31d-4256-aeb8-888d3a401fed", + "request-id" : "8bdf26e1-c857-4bba-9bbf-62ffbad23404", "StatusCode" : "204", - "x-ms-client-request-id" : "d766edf3-f31d-4256-aeb8-888d3a401fed", - "Date" : "Fri, 02 Apr 2021 22:38:43 GMT" + "x-ms-client-request-id" : "8bdf26e1-c857-4bba-9bbf-62ffbad23404", + "Date" : "Thu, 27 May 2021 21:17:16 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers06315b7686')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers233474d7ae')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cda04153-085e-4b9e-a66f-dc3638b17b2c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1a7ffc53-39a3-4b8f-b6f1-d77d685ef085" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "cda04153-085e-4b9e-a66f-dc3638b17b2c", - "elapsed-time" : "801", + "client-request-id" : "1a7ffc53-39a3-4b8f-b6f1-d77d685ef085", + "elapsed-time" : "512", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "cda04153-085e-4b9e-a66f-dc3638b17b2c", + "request-id" : "1a7ffc53-39a3-4b8f-b6f1-d77d685ef085", "StatusCode" : "204", - "x-ms-client-request-id" : "cda04153-085e-4b9e-a66f-dc3638b17b2c", - "Date" : "Fri, 02 Apr 2021 22:38:44 GMT" + "x-ms-client-request-id" : "1a7ffc53-39a3-4b8f-b6f1-d77d685ef085", + "Date" : "Thu, 27 May 2021 21:17:17 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers06315b7686", "azs-java-live-blob804556289", "indexer6056656f8a8c6dd" ] + "variables" : [ "indexforindexers233474d7ae", "azs-java-live-blob96777e67e", "indexer2053265b0589b16" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.deleteIndexerIfExistsWorksOnlyWhenResourceExists.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.deleteIndexerIfExistsWorksOnlyWhenResourceExists.json index 979f5b1c171a..14b739219a01 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.deleteIndexerIfExistsWorksOnlyWhenResourceExists.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.deleteIndexerIfExistsWorksOnlyWhenResourceExists.json @@ -1,181 +1,181 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b8476d37-5812-4536-935f-f0780ab437aa", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "58d6543c-37bf-4fa2-a7e1-b42f7eac50e8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b8476d37-5812-4536-935f-f0780ab437aa", + "request-id" : "58d6543c-37bf-4fa2-a7e1-b42f7eac50e8", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:31 GMT", + "Date" : "Thu, 27 May 2021 21:17:05 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6280B789EFC\"", - "client-request-id" : "b8476d37-5812-4536-935f-f0780ab437aa", - "elapsed-time" : "1078", + "ETag" : "W/\"0x8D92154C77EEE57\"", + "client-request-id" : "58d6543c-37bf-4fa2-a7e1-b42f7eac50e8", + "elapsed-time" : "1481", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6280B789EFC\\\"\",\"name\":\"indexforindexers79112e71d0\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "b8476d37-5812-4536-935f-f0780ab437aa", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154C77EEE57\\\"\",\"name\":\"indexforindexers863360832c\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "58d6543c-37bf-4fa2-a7e1-b42f7eac50e8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers79112e71d0')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers863360832c')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob3420210f2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob2733673f1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e9ca078-d0d9-47f2-a9b3-f459d70c8154", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "957b4566-4dd9-4c18-9620-845f21de6e75", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7e9ca078-d0d9-47f2-a9b3-f459d70c8154", + "request-id" : "957b4566-4dd9-4c18-9620-845f21de6e75", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:32 GMT", + "Date" : "Thu, 27 May 2021 21:17:05 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6280B86D242\"", - "client-request-id" : "7e9ca078-d0d9-47f2-a9b3-f459d70c8154", - "elapsed-time" : "64", + "ETag" : "W/\"0x8D92154C787F0A8\"", + "client-request-id" : "957b4566-4dd9-4c18-9620-845f21de6e75", + "elapsed-time" : "28", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F6280B86D242\\\"\",\"name\":\"azs-java-live-blob3420210f2\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "7e9ca078-d0d9-47f2-a9b3-f459d70c8154", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154C787F0A8\\\"\",\"name\":\"azs-java-live-blob2733673f1\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "957b4566-4dd9-4c18-9620-845f21de6e75", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob3420210f2')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob2733673f1')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer4905605e7279b16')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer88845e81e3c6d6c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "115b3a54-07b4-42e3-b444-8550665ee40b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4560a0a7-b38f-428f-9e9e-d3c58ed97624", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "462", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "115b3a54-07b4-42e3-b444-8550665ee40b", + "request-id" : "4560a0a7-b38f-428f-9e9e-d3c58ed97624", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:32 GMT", + "Date" : "Thu, 27 May 2021 21:17:05 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6280BA7F497\"", - "client-request-id" : "115b3a54-07b4-42e3-b444-8550665ee40b", - "elapsed-time" : "279", + "ETag" : "W/\"0x8D92154C7A2A97D\"", + "client-request-id" : "4560a0a7-b38f-428f-9e9e-d3c58ed97624", + "elapsed-time" : "266", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6280BA7F497\\\"\",\"name\":\"indexer4905605e7279b16\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob3420210f2\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers79112e71d0\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:32.6157655Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "115b3a54-07b4-42e3-b444-8550665ee40b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154C7A2A97D\\\"\",\"name\":\"indexer88845e81e3c6d6c\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob2733673f1\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers863360832c\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:05.854309Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "4560a0a7-b38f-428f-9e9e-d3c58ed97624", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer4905605e7279b16')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer88845e81e3c6d6c')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer4905605e7279b16')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer88845e81e3c6d6c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "71e5e4a8-8e7c-44c9-965f-fd6809d0eacc" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7deda8bd-8e3a-4f1f-aa91-3bb18e02d70e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "71e5e4a8-8e7c-44c9-965f-fd6809d0eacc", - "elapsed-time" : "88", + "client-request-id" : "7deda8bd-8e3a-4f1f-aa91-3bb18e02d70e", + "elapsed-time" : "29", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "71e5e4a8-8e7c-44c9-965f-fd6809d0eacc", + "request-id" : "7deda8bd-8e3a-4f1f-aa91-3bb18e02d70e", "StatusCode" : "204", - "x-ms-client-request-id" : "71e5e4a8-8e7c-44c9-965f-fd6809d0eacc", - "Date" : "Fri, 02 Apr 2021 22:38:32 GMT" + "x-ms-client-request-id" : "7deda8bd-8e3a-4f1f-aa91-3bb18e02d70e", + "Date" : "Thu, 27 May 2021 21:17:05 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer4905605e7279b16')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer88845e81e3c6d6c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "39567e1a-3526-49f8-9ec1-e8a80e1bb071" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fdd6f66e-2972-4560-991c-1dd84d345992" }, "Response" : { + "content-length" : "160", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "39567e1a-3526-49f8-9ec1-e8a80e1bb071", + "request-id" : "fdd6f66e-2972-4560-991c-1dd84d345992", "StatusCode" : "412", - "Date" : "Fri, 02 Apr 2021 22:38:32 GMT", + "Date" : "Thu, 27 May 2021 21:17:05 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "39567e1a-3526-49f8-9ec1-e8a80e1bb071", - "elapsed-time" : "18", + "client-request-id" : "fdd6f66e-2972-4560-991c-1dd84d345992", + "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "39567e1a-3526-49f8-9ec1-e8a80e1bb071", + "x-ms-client-request-id" : "fdd6f66e-2972-4560-991c-1dd84d345992", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob3420210f2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob2733673f1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d691e574-2d68-4839-9e26-12940672225a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "68e9aedc-f296-4593-9a70-24d794c3e4e1" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d691e574-2d68-4839-9e26-12940672225a", - "elapsed-time" : "59", + "client-request-id" : "68e9aedc-f296-4593-9a70-24d794c3e4e1", + "elapsed-time" : "17", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "d691e574-2d68-4839-9e26-12940672225a", + "request-id" : "68e9aedc-f296-4593-9a70-24d794c3e4e1", "StatusCode" : "204", - "x-ms-client-request-id" : "d691e574-2d68-4839-9e26-12940672225a", - "Date" : "Fri, 02 Apr 2021 22:38:32 GMT" + "x-ms-client-request-id" : "68e9aedc-f296-4593-9a70-24d794c3e4e1", + "Date" : "Thu, 27 May 2021 21:17:05 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers79112e71d0')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers863360832c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "22fb3f0b-f24a-4e78-9d95-883f24137d5a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "913e0e66-1507-4262-ba20-8523223bc0e6" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "22fb3f0b-f24a-4e78-9d95-883f24137d5a", - "elapsed-time" : "816", + "client-request-id" : "913e0e66-1507-4262-ba20-8523223bc0e6", + "elapsed-time" : "494", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "22fb3f0b-f24a-4e78-9d95-883f24137d5a", + "request-id" : "913e0e66-1507-4262-ba20-8523223bc0e6", "StatusCode" : "204", - "x-ms-client-request-id" : "22fb3f0b-f24a-4e78-9d95-883f24137d5a", - "Date" : "Fri, 02 Apr 2021 22:38:33 GMT" + "x-ms-client-request-id" : "913e0e66-1507-4262-ba20-8523223bc0e6", + "Date" : "Thu, 27 May 2021 21:17:05 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers79112e71d0", "azs-java-live-blob3420210f2", "indexer4905605e7279b16" ] + "variables" : [ "indexforindexers863360832c", "azs-java-live-blob2733673f1", "indexer88845e81e3c6d6c" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.deleteIndexerIfNotChangedWorksOnlyOnCurrentResource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.deleteIndexerIfNotChangedWorksOnlyOnCurrentResource.json index cbd590fe829b..9b57a1f8c026 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.deleteIndexerIfNotChangedWorksOnlyOnCurrentResource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.deleteIndexerIfNotChangedWorksOnlyOnCurrentResource.json @@ -1,209 +1,209 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e24f1e41-511f-4ab3-826d-2b48b398d3cb", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "df74ceef-0d63-4ebf-922d-1ea184949880", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e24f1e41-511f-4ab3-826d-2b48b398d3cb", + "request-id" : "df74ceef-0d63-4ebf-922d-1ea184949880", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:27 GMT", + "Date" : "Thu, 27 May 2021 21:18:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282C61B211\"", - "client-request-id" : "e24f1e41-511f-4ab3-826d-2b48b398d3cb", - "elapsed-time" : "1058", + "ETag" : "W/\"0x8D92154E93D2024\"", + "client-request-id" : "df74ceef-0d63-4ebf-922d-1ea184949880", + "elapsed-time" : "1451", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282C61B211\\\"\",\"name\":\"indexforindexers50617a62c6\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "e24f1e41-511f-4ab3-826d-2b48b398d3cb", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154E93D2024\\\"\",\"name\":\"indexforindexers396283b828\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "df74ceef-0d63-4ebf-922d-1ea184949880", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers50617a62c6')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers396283b828')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob09179a76d')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob48017d684')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8fca33e6-b1ca-46c2-80cc-ad19e824712a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0d3c5f2d-b328-46d7-9c22-c8f7b8a05ee7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8fca33e6-b1ca-46c2-80cc-ad19e824712a", + "request-id" : "0d3c5f2d-b328-46d7-9c22-c8f7b8a05ee7", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:27 GMT", + "Date" : "Thu, 27 May 2021 21:18:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282C738F7A\"", - "client-request-id" : "8fca33e6-b1ca-46c2-80cc-ad19e824712a", - "elapsed-time" : "65", + "ETag" : "W/\"0x8D92154E945D44C\"", + "client-request-id" : "0d3c5f2d-b328-46d7-9c22-c8f7b8a05ee7", + "elapsed-time" : "28", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282C738F7A\\\"\",\"name\":\"azs-java-live-blob09179a76d\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "8fca33e6-b1ca-46c2-80cc-ad19e824712a", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154E945D44C\\\"\",\"name\":\"azs-java-live-blob48017d684\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "0d3c5f2d-b328-46d7-9c22-c8f7b8a05ee7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob09179a76d')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob48017d684')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer36800f83292636e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer5604909908a5cd7')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "071affe4-9fa8-4fdd-a601-4046d281eab0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b251835d-4506-4a01-a21b-8c5818fd722c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "071affe4-9fa8-4fdd-a601-4046d281eab0", + "request-id" : "b251835d-4506-4a01-a21b-8c5818fd722c", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:27 GMT", + "Date" : "Thu, 27 May 2021 21:18:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282C8FF606\"", - "client-request-id" : "071affe4-9fa8-4fdd-a601-4046d281eab0", - "elapsed-time" : "258", + "ETag" : "W/\"0x8D92154E9628947\"", + "client-request-id" : "b251835d-4506-4a01-a21b-8c5818fd722c", + "elapsed-time" : "278", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282C8FF606\\\"\",\"name\":\"indexer36800f83292636e\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob09179a76d\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers50617a62c6\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:27.8577755Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "071affe4-9fa8-4fdd-a601-4046d281eab0", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154E9628947\\\"\",\"name\":\"indexer5604909908a5cd7\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob48017d684\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers396283b828\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:18:02.4654088Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "b251835d-4506-4a01-a21b-8c5818fd722c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer36800f83292636e')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer5604909908a5cd7')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer36800f83292636e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer5604909908a5cd7')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f89609fb-2dc5-4a86-81ab-997ff39ba10e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "73f70e22-62e3-46df-980d-b850edbf16ae", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f89609fb-2dc5-4a86-81ab-997ff39ba10e", + "request-id" : "73f70e22-62e3-46df-980d-b850edbf16ae", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:27 GMT", + "Date" : "Thu, 27 May 2021 21:18:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282CC05D42\"", - "client-request-id" : "f89609fb-2dc5-4a86-81ab-997ff39ba10e", - "elapsed-time" : "209", + "ETag" : "W/\"0x8D92154E9911BD4\"", + "client-request-id" : "73f70e22-62e3-46df-980d-b850edbf16ae", + "elapsed-time" : "183", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282CC05D42\\\"\",\"name\":\"indexer36800f83292636e\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob09179a76d\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers50617a62c6\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:27.8577755Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "f89609fb-2dc5-4a86-81ab-997ff39ba10e", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154E9911BD4\\\"\",\"name\":\"indexer5604909908a5cd7\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob48017d684\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers396283b828\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:18:02.4654088Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "73f70e22-62e3-46df-980d-b850edbf16ae", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer36800f83292636e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer5604909908a5cd7')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "55cbc396-6145-4b68-b2fd-e3f2327acd0b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b76393d3-9771-4487-b10c-ec83a6fdd71f" }, "Response" : { + "content-length" : "160", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "55cbc396-6145-4b68-b2fd-e3f2327acd0b", + "request-id" : "b76393d3-9771-4487-b10c-ec83a6fdd71f", "StatusCode" : "412", - "Date" : "Fri, 02 Apr 2021 22:39:27 GMT", + "Date" : "Thu, 27 May 2021 21:18:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "55cbc396-6145-4b68-b2fd-e3f2327acd0b", - "elapsed-time" : "10", + "client-request-id" : "b76393d3-9771-4487-b10c-ec83a6fdd71f", + "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "55cbc396-6145-4b68-b2fd-e3f2327acd0b", + "x-ms-client-request-id" : "b76393d3-9771-4487-b10c-ec83a6fdd71f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer36800f83292636e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer5604909908a5cd7')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2cc80acf-812a-4521-aa12-5dc2722b68a8" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4d8c2972-0116-435d-ad5c-9cdf29fdebdf" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2cc80acf-812a-4521-aa12-5dc2722b68a8", - "elapsed-time" : "86", + "client-request-id" : "4d8c2972-0116-435d-ad5c-9cdf29fdebdf", + "elapsed-time" : "31", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "2cc80acf-812a-4521-aa12-5dc2722b68a8", + "request-id" : "4d8c2972-0116-435d-ad5c-9cdf29fdebdf", "StatusCode" : "204", - "x-ms-client-request-id" : "2cc80acf-812a-4521-aa12-5dc2722b68a8", - "Date" : "Fri, 02 Apr 2021 22:39:27 GMT" + "x-ms-client-request-id" : "4d8c2972-0116-435d-ad5c-9cdf29fdebdf", + "Date" : "Thu, 27 May 2021 21:18:02 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob09179a76d')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob48017d684')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "430230c1-1e8b-4ac3-8477-500b451226af" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "90707b61-afcf-4484-ac04-4f6029e479ae" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "430230c1-1e8b-4ac3-8477-500b451226af", - "elapsed-time" : "50", + "client-request-id" : "90707b61-afcf-4484-ac04-4f6029e479ae", + "elapsed-time" : "30", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "430230c1-1e8b-4ac3-8477-500b451226af", + "request-id" : "90707b61-afcf-4484-ac04-4f6029e479ae", "StatusCode" : "204", - "x-ms-client-request-id" : "430230c1-1e8b-4ac3-8477-500b451226af", - "Date" : "Fri, 02 Apr 2021 22:39:27 GMT" + "x-ms-client-request-id" : "90707b61-afcf-4484-ac04-4f6029e479ae", + "Date" : "Thu, 27 May 2021 21:18:03 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers50617a62c6')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers396283b828')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5ecac61e-597b-469e-b371-12a2a0aad0d5" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fe79233c-67fa-487b-802b-29c4c49bf266" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5ecac61e-597b-469e-b371-12a2a0aad0d5", - "elapsed-time" : "615", + "client-request-id" : "fe79233c-67fa-487b-802b-29c4c49bf266", + "elapsed-time" : "486", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "5ecac61e-597b-469e-b371-12a2a0aad0d5", + "request-id" : "fe79233c-67fa-487b-802b-29c4c49bf266", "StatusCode" : "204", - "x-ms-client-request-id" : "5ecac61e-597b-469e-b371-12a2a0aad0d5", - "Date" : "Fri, 02 Apr 2021 22:39:29 GMT" + "x-ms-client-request-id" : "fe79233c-67fa-487b-802b-29c4c49bf266", + "Date" : "Thu, 27 May 2021 21:18:03 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers50617a62c6", "azs-java-live-blob09179a76d", "indexer36800f83292636e" ] + "variables" : [ "indexforindexers396283b828", "azs-java-live-blob48017d684", "indexer5604909908a5cd7" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.deleteIndexerIsIdempotent.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.deleteIndexerIsIdempotent.json index ba46dfc21d3e..a3c2e2e40ebf 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.deleteIndexerIsIdempotent.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.deleteIndexerIsIdempotent.json @@ -1,208 +1,208 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "84296985-407a-4227-829a-0d4f4b1816e2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c1efc672-dcea-44df-80aa-2875367db1ef", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "84296985-407a-4227-829a-0d4f4b1816e2", + "request-id" : "c1efc672-dcea-44df-80aa-2875367db1ef", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:15 GMT", + "Date" : "Thu, 27 May 2021 21:16:49 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62802073474\"", - "client-request-id" : "84296985-407a-4227-829a-0d4f4b1816e2", - "elapsed-time" : "1094", + "ETag" : "W/\"0x8D92154BDC86BD7\"", + "client-request-id" : "c1efc672-dcea-44df-80aa-2875367db1ef", + "elapsed-time" : "1467", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62802073474\\\"\",\"name\":\"indexforindexers15281f7b3a\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "84296985-407a-4227-829a-0d4f4b1816e2", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154BDC86BD7\\\"\",\"name\":\"indexforindexers0432599714\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "c1efc672-dcea-44df-80aa-2875367db1ef", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers15281f7b3a')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers0432599714')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob739291bb9')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob1257704a1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ce96eac2-3e3c-4abe-9a53-e7b125b7d9be", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ad339db8-10d5-4857-a22a-9c180aa70711", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ce96eac2-3e3c-4abe-9a53-e7b125b7d9be", + "request-id" : "ad339db8-10d5-4857-a22a-9c180aa70711", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:15 GMT", + "Date" : "Thu, 27 May 2021 21:16:49 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628021392A8\"", - "client-request-id" : "ce96eac2-3e3c-4abe-9a53-e7b125b7d9be", - "elapsed-time" : "43", + "ETag" : "W/\"0x8D92154BDD1953D\"", + "client-request-id" : "ad339db8-10d5-4857-a22a-9c180aa70711", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F628021392A8\\\"\",\"name\":\"azs-java-live-blob739291bb9\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "ce96eac2-3e3c-4abe-9a53-e7b125b7d9be", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154BDD1953D\\\"\",\"name\":\"azs-java-live-blob1257704a1\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "ad339db8-10d5-4857-a22a-9c180aa70711", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob739291bb9')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob1257704a1')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer4011433b4912b99')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer8189308ad952b4c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "27e0138b-0518-4a2d-bc70-4bf8da73a21a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b8597a5e-de57-4059-9528-16ddfc99f923" }, "Response" : { + "content-length" : "108", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "27e0138b-0518-4a2d-bc70-4bf8da73a21a", + "request-id" : "b8597a5e-de57-4059-9528-16ddfc99f923", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:38:16 GMT", + "Date" : "Thu, 27 May 2021 21:16:49 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "27e0138b-0518-4a2d-bc70-4bf8da73a21a", - "elapsed-time" : "15", + "client-request-id" : "b8597a5e-de57-4059-9528-16ddfc99f923", + "elapsed-time" : "9", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "108", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"Indexer 'indexer4011433b4912b99' was not found in service 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"Indexer 'indexer8189308ad952b4c' was not found in service 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "27e0138b-0518-4a2d-bc70-4bf8da73a21a", + "x-ms-client-request-id" : "b8597a5e-de57-4059-9528-16ddfc99f923", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2279084c-bd6e-42b3-8b49-0b2359e5f055", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "90b56340-a28c-48dc-8991-a06b794469b4", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "462", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2279084c-bd6e-42b3-8b49-0b2359e5f055", + "request-id" : "90b56340-a28c-48dc-8991-a06b794469b4", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:17 GMT", + "Date" : "Thu, 27 May 2021 21:16:49 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628024AD8E4\"", - "client-request-id" : "2279084c-bd6e-42b3-8b49-0b2359e5f055", - "elapsed-time" : "458", + "ETag" : "W/\"0x8D92154BE3831F1\"", + "client-request-id" : "90b56340-a28c-48dc-8991-a06b794469b4", + "elapsed-time" : "702", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F628024AD8E4\\\"\",\"name\":\"indexer4011433b4912b99\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob739291bb9\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers15281f7b3a\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:16.8163953Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "2279084c-bd6e-42b3-8b49-0b2359e5f055", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154BE3831F1\\\"\",\"name\":\"indexer8189308ad952b4c\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob1257704a1\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers0432599714\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:16:49.894529Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "90b56340-a28c-48dc-8991-a06b794469b4", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer4011433b4912b99')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer8189308ad952b4c')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer4011433b4912b99')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer8189308ad952b4c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e34c8ba1-654f-4dc4-82d5-34e66ae686fc" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d76eff8f-254f-4b08-a79e-0b07726b4260" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e34c8ba1-654f-4dc4-82d5-34e66ae686fc", - "elapsed-time" : "70", + "client-request-id" : "d76eff8f-254f-4b08-a79e-0b07726b4260", + "elapsed-time" : "38", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "e34c8ba1-654f-4dc4-82d5-34e66ae686fc", + "request-id" : "d76eff8f-254f-4b08-a79e-0b07726b4260", "StatusCode" : "204", - "x-ms-client-request-id" : "e34c8ba1-654f-4dc4-82d5-34e66ae686fc", - "Date" : "Fri, 02 Apr 2021 22:38:16 GMT" + "x-ms-client-request-id" : "d76eff8f-254f-4b08-a79e-0b07726b4260", + "Date" : "Thu, 27 May 2021 21:16:49 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer4011433b4912b99')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer8189308ad952b4c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1d5354d-3b71-4aa4-8583-e3f5a645efbd" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "dc4169f8-f943-4d6f-96af-0bb29b59c41b" }, "Response" : { + "content-length" : "108", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f1d5354d-3b71-4aa4-8583-e3f5a645efbd", + "request-id" : "dc4169f8-f943-4d6f-96af-0bb29b59c41b", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:38:17 GMT", + "Date" : "Thu, 27 May 2021 21:16:49 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f1d5354d-3b71-4aa4-8583-e3f5a645efbd", - "elapsed-time" : "5", + "client-request-id" : "dc4169f8-f943-4d6f-96af-0bb29b59c41b", + "elapsed-time" : "9", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "108", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"Indexer 'indexer4011433b4912b99' was not found in service 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"Indexer 'indexer8189308ad952b4c' was not found in service 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "f1d5354d-3b71-4aa4-8583-e3f5a645efbd", + "x-ms-client-request-id" : "dc4169f8-f943-4d6f-96af-0bb29b59c41b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob739291bb9')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob1257704a1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4d7001af-923c-4991-b51d-6da3e1885ffe" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bd509edf-3795-4f0c-a793-ded6f2727ae0" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4d7001af-923c-4991-b51d-6da3e1885ffe", - "elapsed-time" : "64", + "client-request-id" : "bd509edf-3795-4f0c-a793-ded6f2727ae0", + "elapsed-time" : "18", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "4d7001af-923c-4991-b51d-6da3e1885ffe", + "request-id" : "bd509edf-3795-4f0c-a793-ded6f2727ae0", "StatusCode" : "204", - "x-ms-client-request-id" : "4d7001af-923c-4991-b51d-6da3e1885ffe", - "Date" : "Fri, 02 Apr 2021 22:38:16 GMT" + "x-ms-client-request-id" : "bd509edf-3795-4f0c-a793-ded6f2727ae0", + "Date" : "Thu, 27 May 2021 21:16:50 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers15281f7b3a')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers0432599714')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1b9caf9e-d934-4f68-aebb-23166e811a6d" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ff1a9e65-6254-4203-8977-6cf59d5ef9b1" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1b9caf9e-d934-4f68-aebb-23166e811a6d", - "elapsed-time" : "581", + "client-request-id" : "ff1a9e65-6254-4203-8977-6cf59d5ef9b1", + "elapsed-time" : "483", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "1b9caf9e-d934-4f68-aebb-23166e811a6d", + "request-id" : "ff1a9e65-6254-4203-8977-6cf59d5ef9b1", "StatusCode" : "204", - "x-ms-client-request-id" : "1b9caf9e-d934-4f68-aebb-23166e811a6d", - "Date" : "Fri, 02 Apr 2021 22:38:17 GMT" + "x-ms-client-request-id" : "ff1a9e65-6254-4203-8977-6cf59d5ef9b1", + "Date" : "Thu, 27 May 2021 21:16:51 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers15281f7b3a", "azs-java-live-blob739291bb9", "indexer4011433b4912b99" ] + "variables" : [ "indexforindexers0432599714", "azs-java-live-blob1257704a1", "indexer8189308ad952b4c" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.getIndexerThrowsOnNotFound.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.getIndexerThrowsOnNotFound.json index a495f2d87598..29abe86c19d4 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.getIndexerThrowsOnNotFound.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.getIndexerThrowsOnNotFound.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexers('thisindexerdoesnotexist')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('thisindexerdoesnotexist')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "07955e9e-1035-40bb-b090-adcf8676f0dc" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "58e6b4ea-771e-4ef9-8a27-88d75d0875f5" }, "Response" : { + "content-length" : "109", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "07955e9e-1035-40bb-b090-adcf8676f0dc", + "request-id" : "58e6b4ea-771e-4ef9-8a27-88d75d0875f5", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:38:34 GMT", + "Date" : "Thu, 27 May 2021 21:17:05 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "07955e9e-1035-40bb-b090-adcf8676f0dc", - "elapsed-time" : "25", + "client-request-id" : "58e6b4ea-771e-4ef9-8a27-88d75d0875f5", + "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "109", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"Indexer 'thisindexerdoesnotexist' was not found in service 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "07955e9e-1035-40bb-b090-adcf8676f0dc", + "x-ms-client-request-id" : "58e6b4ea-771e-4ef9-8a27-88d75d0875f5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.updateIndexerIfExistsSucceedsOnExistingResource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.updateIndexerIfExistsSucceedsOnExistingResource.json index 273282e10248..e6644d1dd87e 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.updateIndexerIfExistsSucceedsOnExistingResource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.updateIndexerIfExistsSucceedsOnExistingResource.json @@ -1,182 +1,182 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "dbfd8f6e-db07-4352-a29d-27bad36d781f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f3aa8264-c6dd-49da-a785-81f7610b77bf", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "dbfd8f6e-db07-4352-a29d-27bad36d781f", + "request-id" : "f3aa8264-c6dd-49da-a785-81f7610b77bf", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:11 GMT", + "Date" : "Thu, 27 May 2021 21:17:46 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62822F7C2E4\"", - "client-request-id" : "dbfd8f6e-db07-4352-a29d-27bad36d781f", - "elapsed-time" : "1064", + "ETag" : "W/\"0x8D92154DFBAFDA5\"", + "client-request-id" : "f3aa8264-c6dd-49da-a785-81f7610b77bf", + "elapsed-time" : "1499", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62822F7C2E4\\\"\",\"name\":\"indexforindexers61849ac13f\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "dbfd8f6e-db07-4352-a29d-27bad36d781f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154DFBAFDA5\\\"\",\"name\":\"indexforindexers4006736c68\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "f3aa8264-c6dd-49da-a785-81f7610b77bf", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers61849ac13f')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers4006736c68')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob83676d1af')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob944765162')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "766caaa4-9776-47cd-bdc4-e96e5d3198dd", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "01748017-f922-4c60-a155-b3ea507f9552", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "766caaa4-9776-47cd-bdc4-e96e5d3198dd", + "request-id" : "01748017-f922-4c60-a155-b3ea507f9552", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:11 GMT", + "Date" : "Thu, 27 May 2021 21:17:46 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282305CF15\"", - "client-request-id" : "766caaa4-9776-47cd-bdc4-e96e5d3198dd", - "elapsed-time" : "65", + "ETag" : "W/\"0x8D92154DFC38AAF\"", + "client-request-id" : "01748017-f922-4c60-a155-b3ea507f9552", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282305CF15\\\"\",\"name\":\"azs-java-live-blob83676d1af\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "766caaa4-9776-47cd-bdc4-e96e5d3198dd", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154DFC38AAF\\\"\",\"name\":\"azs-java-live-blob944765162\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "01748017-f922-4c60-a155-b3ea507f9552", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob83676d1af')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob944765162')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer016389ac3e5f62c')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer64770cb6f5b8d66')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8330f83b-d27b-401c-b394-3a2110d5df3d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "095452ce-e55b-464d-aaa9-fcb532d8a92b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8330f83b-d27b-401c-b394-3a2110d5df3d", + "request-id" : "095452ce-e55b-464d-aaa9-fcb532d8a92b", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:11 GMT", + "Date" : "Thu, 27 May 2021 21:17:46 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6282322F915\"", - "client-request-id" : "8330f83b-d27b-401c-b394-3a2110d5df3d", - "elapsed-time" : "276", + "ETag" : "W/\"0x8D92154DFDFA34C\"", + "client-request-id" : "095452ce-e55b-464d-aaa9-fcb532d8a92b", + "elapsed-time" : "282", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F6282322F915\\\"\",\"name\":\"indexer016389ac3e5f62c\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob83676d1af\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers61849ac13f\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:12.0327221Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "8330f83b-d27b-401c-b394-3a2110d5df3d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154DFDFA34C\\\"\",\"name\":\"indexer64770cb6f5b8d66\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob944765162\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers4006736c68\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:46.5085983Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "095452ce-e55b-464d-aaa9-fcb532d8a92b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer016389ac3e5f62c')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer64770cb6f5b8d66')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer016389ac3e5f62c')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer64770cb6f5b8d66')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6db26c3-3137-4748-ac72-95c60aa18a44", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f9b34693-822a-4c58-b97b-06be70110598", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "481", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a6db26c3-3137-4748-ac72-95c60aa18a44", + "request-id" : "f9b34693-822a-4c58-b97b-06be70110598", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:11 GMT", + "Date" : "Thu, 27 May 2021 21:17:46 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62823566E15\"", - "client-request-id" : "a6db26c3-3137-4748-ac72-95c60aa18a44", - "elapsed-time" : "221", + "ETag" : "W/\"0x8D92154E01191D6\"", + "client-request-id" : "f9b34693-822a-4c58-b97b-06be70110598", + "elapsed-time" : "200", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "494", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62823566E15\\\"\",\"name\":\"indexer016389ac3e5f62c\",\"description\":\"ABrandNewDescription\",\"dataSourceName\":\"azs-java-live-blob83676d1af\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers61849ac13f\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:39:12.0327221Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "a6db26c3-3137-4748-ac72-95c60aa18a44", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154E01191D6\\\"\",\"name\":\"indexer64770cb6f5b8d66\",\"description\":\"ABrandNewDescription\",\"dataSourceName\":\"azs-java-live-blob944765162\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers4006736c68\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:46.5085983Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "f9b34693-822a-4c58-b97b-06be70110598", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob83676d1af')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob944765162')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "329b5238-e8b0-45de-b704-27348d93890c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "57edb361-746b-4fde-b4a0-ce7d9affcd7e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "329b5238-e8b0-45de-b704-27348d93890c", - "elapsed-time" : "47", + "client-request-id" : "57edb361-746b-4fde-b4a0-ce7d9affcd7e", + "elapsed-time" : "35", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "329b5238-e8b0-45de-b704-27348d93890c", + "request-id" : "57edb361-746b-4fde-b4a0-ce7d9affcd7e", "StatusCode" : "204", - "x-ms-client-request-id" : "329b5238-e8b0-45de-b704-27348d93890c", - "Date" : "Fri, 02 Apr 2021 22:39:12 GMT" + "x-ms-client-request-id" : "57edb361-746b-4fde-b4a0-ce7d9affcd7e", + "Date" : "Thu, 27 May 2021 21:17:46 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer016389ac3e5f62c')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer64770cb6f5b8d66')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e1c3358b-b099-4115-9c69-0ce34461b603" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bd540fa4-ec41-4dbc-b7f0-328aff6b3811" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e1c3358b-b099-4115-9c69-0ce34461b603", - "elapsed-time" : "80", + "client-request-id" : "bd540fa4-ec41-4dbc-b7f0-328aff6b3811", + "elapsed-time" : "32", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "e1c3358b-b099-4115-9c69-0ce34461b603", + "request-id" : "bd540fa4-ec41-4dbc-b7f0-328aff6b3811", "StatusCode" : "204", - "x-ms-client-request-id" : "e1c3358b-b099-4115-9c69-0ce34461b603", - "Date" : "Fri, 02 Apr 2021 22:39:11 GMT" + "x-ms-client-request-id" : "bd540fa4-ec41-4dbc-b7f0-328aff6b3811", + "Date" : "Thu, 27 May 2021 21:17:46 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers61849ac13f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers4006736c68')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9374916-229f-44ac-86ea-db8b5684c63c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ff141c12-7210-4c65-8e40-d2e1e027e66b" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f9374916-229f-44ac-86ea-db8b5684c63c", - "elapsed-time" : "626", + "client-request-id" : "ff141c12-7210-4c65-8e40-d2e1e027e66b", + "elapsed-time" : "513", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "f9374916-229f-44ac-86ea-db8b5684c63c", + "request-id" : "ff141c12-7210-4c65-8e40-d2e1e027e66b", "StatusCode" : "204", - "x-ms-client-request-id" : "f9374916-229f-44ac-86ea-db8b5684c63c", - "Date" : "Fri, 02 Apr 2021 22:39:12 GMT" + "x-ms-client-request-id" : "ff141c12-7210-4c65-8e40-d2e1e027e66b", + "Date" : "Thu, 27 May 2021 21:17:47 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers61849ac13f", "azs-java-live-blob83676d1af", "indexer016389ac3e5f62c" ] + "variables" : [ "indexforindexers4006736c68", "azs-java-live-blob944765162", "indexer64770cb6f5b8d66" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.updateIndexerIfNotChangedFailsWhenResourceChanged.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.updateIndexerIfNotChangedFailsWhenResourceChanged.json index 030518bc10e0..83a896a01957 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.updateIndexerIfNotChangedFailsWhenResourceChanged.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.updateIndexerIfNotChangedFailsWhenResourceChanged.json @@ -1,210 +1,210 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8db324b-492e-4926-95e1-8c218833c373", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "34f70b27-ee69-4d41-85bc-6086caab5d38", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a8db324b-492e-4926-95e1-8c218833c373", + "request-id" : "34f70b27-ee69-4d41-85bc-6086caab5d38", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:50 GMT", + "Date" : "Thu, 27 May 2021 21:17:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628168FC5B5\"", - "client-request-id" : "a8db324b-492e-4926-95e1-8c218833c373", - "elapsed-time" : "1062", + "ETag" : "W/\"0x8D92154D39F195E\"", + "client-request-id" : "34f70b27-ee69-4d41-85bc-6086caab5d38", + "elapsed-time" : "1491", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F628168FC5B5\\\"\",\"name\":\"indexforindexers3489947437\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "a8db324b-492e-4926-95e1-8c218833c373", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154D39F195E\\\"\",\"name\":\"indexforindexers525678a841\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "34f70b27-ee69-4d41-85bc-6086caab5d38", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers3489947437')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers525678a841')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob81757f3f2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob39196a14d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3203797c-7cee-41dd-b3c7-0a85b370fdc8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e3411cb4-b2e7-41c4-9561-101c320e66b7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3203797c-7cee-41dd-b3c7-0a85b370fdc8", + "request-id" : "e3411cb4-b2e7-41c4-9561-101c320e66b7", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:51 GMT", + "Date" : "Thu, 27 May 2021 21:17:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628169E9556\"", - "client-request-id" : "3203797c-7cee-41dd-b3c7-0a85b370fdc8", - "elapsed-time" : "66", + "ETag" : "W/\"0x8D92154D3A890FC\"", + "client-request-id" : "e3411cb4-b2e7-41c4-9561-101c320e66b7", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F628169E9556\\\"\",\"name\":\"azs-java-live-blob81757f3f2\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "3203797c-7cee-41dd-b3c7-0a85b370fdc8", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154D3A890FC\\\"\",\"name\":\"azs-java-live-blob39196a14d\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "e3411cb4-b2e7-41c4-9561-101c320e66b7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob81757f3f2')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob39196a14d')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer81899530b89b0b1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer29698e94c71184c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "015fc148-60d2-4719-9c54-7e9f837663c3", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c435a8d9-a5a5-4c13-a3ec-66b61ebb3b95", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "015fc148-60d2-4719-9c54-7e9f837663c3", + "request-id" : "c435a8d9-a5a5-4c13-a3ec-66b61ebb3b95", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:51 GMT", + "Date" : "Thu, 27 May 2021 21:17:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62816CCD954\"", - "client-request-id" : "015fc148-60d2-4719-9c54-7e9f837663c3", - "elapsed-time" : "403", + "ETag" : "W/\"0x8D92154D3C322BB\"", + "client-request-id" : "c435a8d9-a5a5-4c13-a3ec-66b61ebb3b95", + "elapsed-time" : "323", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62816CCD954\\\"\",\"name\":\"indexer81899530b89b0b1\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob81757f3f2\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers3489947437\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:51.2243246Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "015fc148-60d2-4719-9c54-7e9f837663c3", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154D3C322BB\\\"\",\"name\":\"indexer29698e94c71184c\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob39196a14d\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers525678a841\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:26.2007095Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "c435a8d9-a5a5-4c13-a3ec-66b61ebb3b95", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer81899530b89b0b1')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer29698e94c71184c')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer81899530b89b0b1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer29698e94c71184c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c824590-08c3-48f7-bc54-be0ff9ebc119", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8cd383e4-c8ac-4ed0-a13e-2f9b40e7b04f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "481", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6c824590-08c3-48f7-bc54-be0ff9ebc119", + "request-id" : "8cd383e4-c8ac-4ed0-a13e-2f9b40e7b04f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:38:51 GMT", + "Date" : "Thu, 27 May 2021 21:17:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62816FCA431\"", - "client-request-id" : "6c824590-08c3-48f7-bc54-be0ff9ebc119", - "elapsed-time" : "168", + "ETag" : "W/\"0x8D92154D3FCB3BC\"", + "client-request-id" : "8cd383e4-c8ac-4ed0-a13e-2f9b40e7b04f", + "elapsed-time" : "187", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "494", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62816FCA431\\\"\",\"name\":\"indexer81899530b89b0b1\",\"description\":\"ABrandNewDescription\",\"dataSourceName\":\"azs-java-live-blob81757f3f2\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers3489947437\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:51.2243246Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "6c824590-08c3-48f7-bc54-be0ff9ebc119", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154D3FCB3BC\\\"\",\"name\":\"indexer29698e94c71184c\",\"description\":\"ABrandNewDescription\",\"dataSourceName\":\"azs-java-live-blob39196a14d\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers525678a841\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:26.2007095Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "8cd383e4-c8ac-4ed0-a13e-2f9b40e7b04f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer81899530b89b0b1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer29698e94c71184c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a12179e-1747-446b-835c-966f7440820b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0a6c9943-e2ce-43ff-a8b0-2d449038ff11", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "160", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0a12179e-1747-446b-835c-966f7440820b", + "request-id" : "0a6c9943-e2ce-43ff-a8b0-2d449038ff11", "StatusCode" : "412", - "Date" : "Fri, 02 Apr 2021 22:38:51 GMT", + "Date" : "Thu, 27 May 2021 21:17:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0a12179e-1747-446b-835c-966f7440820b", - "elapsed-time" : "13", + "client-request-id" : "0a6c9943-e2ce-43ff-a8b0-2d449038ff11", + "elapsed-time" : "7", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "0a12179e-1747-446b-835c-966f7440820b", + "x-ms-client-request-id" : "0a6c9943-e2ce-43ff-a8b0-2d449038ff11", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob81757f3f2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob39196a14d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a2686c55-601b-45c4-8dfc-b27fcdbf06d7" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4c888790-8c28-4cc6-a414-9bb94781d8a2" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a2686c55-601b-45c4-8dfc-b27fcdbf06d7", - "elapsed-time" : "41", + "client-request-id" : "4c888790-8c28-4cc6-a414-9bb94781d8a2", + "elapsed-time" : "16", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "a2686c55-601b-45c4-8dfc-b27fcdbf06d7", + "request-id" : "4c888790-8c28-4cc6-a414-9bb94781d8a2", "StatusCode" : "204", - "x-ms-client-request-id" : "a2686c55-601b-45c4-8dfc-b27fcdbf06d7", - "Date" : "Fri, 02 Apr 2021 22:38:51 GMT" + "x-ms-client-request-id" : "4c888790-8c28-4cc6-a414-9bb94781d8a2", + "Date" : "Thu, 27 May 2021 21:17:26 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer81899530b89b0b1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer29698e94c71184c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d1281019-de2c-43c0-9fec-69393fb18e6c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ef05005a-f903-4012-80a1-03e92e60f539" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d1281019-de2c-43c0-9fec-69393fb18e6c", - "elapsed-time" : "77", + "client-request-id" : "ef05005a-f903-4012-80a1-03e92e60f539", + "elapsed-time" : "29", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "d1281019-de2c-43c0-9fec-69393fb18e6c", + "request-id" : "ef05005a-f903-4012-80a1-03e92e60f539", "StatusCode" : "204", - "x-ms-client-request-id" : "d1281019-de2c-43c0-9fec-69393fb18e6c", - "Date" : "Fri, 02 Apr 2021 22:38:51 GMT" + "x-ms-client-request-id" : "ef05005a-f903-4012-80a1-03e92e60f539", + "Date" : "Thu, 27 May 2021 21:17:26 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers3489947437')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers525678a841')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f34cc5d1-9499-4da5-bf51-69059e89568f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6c6b6796-dd0f-4d07-b52a-b0c66a8c4fa6" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f34cc5d1-9499-4da5-bf51-69059e89568f", - "elapsed-time" : "524", + "client-request-id" : "6c6b6796-dd0f-4d07-b52a-b0c66a8c4fa6", + "elapsed-time" : "504", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "f34cc5d1-9499-4da5-bf51-69059e89568f", + "request-id" : "6c6b6796-dd0f-4d07-b52a-b0c66a8c4fa6", "StatusCode" : "204", - "x-ms-client-request-id" : "f34cc5d1-9499-4da5-bf51-69059e89568f", - "Date" : "Fri, 02 Apr 2021 22:38:52 GMT" + "x-ms-client-request-id" : "6c6b6796-dd0f-4d07-b52a-b0c66a8c4fa6", + "Date" : "Thu, 27 May 2021 21:17:27 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers3489947437", "azs-java-live-blob81757f3f2", "indexer81899530b89b0b1" ] + "variables" : [ "indexforindexers525678a841", "azs-java-live-blob39196a14d", "indexer29698e94c71184c" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.updateIndexerIfNotChangedSucceedsWhenResourceUnchanged.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.updateIndexerIfNotChangedSucceedsWhenResourceUnchanged.json index 15f21964091c..415f86fb44ac 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.updateIndexerIfNotChangedSucceedsWhenResourceUnchanged.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexersManagementSyncTests.updateIndexerIfNotChangedSucceedsWhenResourceUnchanged.json @@ -1,182 +1,182 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "97bf4aba-833c-4ff7-b834-846c31755009", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ebaa44a9-8ee0-4209-961a-d3fae04fd5d6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1084", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "97bf4aba-833c-4ff7-b834-846c31755009", + "request-id" : "ebaa44a9-8ee0-4209-961a-d3fae04fd5d6", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:45 GMT", + "Date" : "Thu, 27 May 2021 21:17:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6281370201D\"", - "client-request-id" : "97bf4aba-833c-4ff7-b834-846c31755009", - "elapsed-time" : "1068", + "ETag" : "W/\"0x8D92154CF79B46B\"", + "client-request-id" : "ebaa44a9-8ee0-4209-961a-d3fae04fd5d6", + "elapsed-time" : "1588", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1155", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6281370201D\\\"\",\"name\":\"indexforindexers577557e27c\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "97bf4aba-833c-4ff7-b834-846c31755009", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154CF79B46B\\\"\",\"name\":\"indexforindexers0634677a04\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"county_name\",\"type\":\"Edm.String\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"state\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"feature_id\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "ebaa44a9-8ee0-4209-961a-d3fae04fd5d6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers577557e27c')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('indexforindexers0634677a04')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob054518828')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob613354e75')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "84d488f4-a6df-4ba0-ae9a-655c2c9d28a7", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "db5083c5-55bb-4453-a82e-9c69aeddc862", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "559", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "84d488f4-a6df-4ba0-ae9a-655c2c9d28a7", + "request-id" : "db5083c5-55bb-4453-a82e-9c69aeddc862", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:45 GMT", + "Date" : "Thu, 27 May 2021 21:17:19 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6281382C0FF\"", - "client-request-id" : "84d488f4-a6df-4ba0-ae9a-655c2c9d28a7", - "elapsed-time" : "80", + "ETag" : "W/\"0x8D92154CF837A32\"", + "client-request-id" : "db5083c5-55bb-4453-a82e-9c69aeddc862", + "elapsed-time" : "28", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "559", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D8F6281382C0FF\\\"\",\"name\":\"azs-java-live-blob054518828\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", - "x-ms-client-request-id" : "84d488f4-a6df-4ba0-ae9a-655c2c9d28a7", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#datasources/$entity\",\"@odata.etag\":\"\\\"0x8D92154CF837A32\\\"\",\"name\":\"azs-java-live-blob613354e75\",\"description\":\"real live blob\",\"type\":\"azureblob\",\"subtype\":null,\"credentials\":{\"connectionString\":null},\"container\":{\"name\":\"searchcontainer\",\"query\":\"/\"},\"dataChangeDetectionPolicy\":null,\"dataDeletionDetectionPolicy\":{\"@odata.type\":\"#Microsoft.Azure.Search.SoftDeleteColumnDeletionDetectionPolicy\",\"softDeleteColumnName\":\"fieldName\",\"softDeleteMarkerValue\":\"someValue\"},\"encryptionKey\":null}", + "x-ms-client-request-id" : "db5083c5-55bb-4453-a82e-9c69aeddc862", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob054518828')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/datasources('azs-java-live-blob613354e75')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer96011d6a2365408')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer027606d3182bd6a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f26b2bcc-7adc-48a6-82ef-b4a071c25a30", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1ecedd05-c986-40a5-844a-19269eb17a16", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "463", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f26b2bcc-7adc-48a6-82ef-b4a071c25a30", + "request-id" : "1ecedd05-c986-40a5-844a-19269eb17a16", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:38:45 GMT", + "Date" : "Thu, 27 May 2021 21:17:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62813A198FC\"", - "client-request-id" : "f26b2bcc-7adc-48a6-82ef-b4a071c25a30", - "elapsed-time" : "312", + "ETag" : "W/\"0x8D92154CFA00813\"", + "client-request-id" : "1ecedd05-c986-40a5-844a-19269eb17a16", + "elapsed-time" : "278", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "476", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62813A198FC\\\"\",\"name\":\"indexer96011d6a2365408\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob054518828\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers577557e27c\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:46.0047223Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "f26b2bcc-7adc-48a6-82ef-b4a071c25a30", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154CFA00813\\\"\",\"name\":\"indexer027606d3182bd6a\",\"description\":null,\"dataSourceName\":\"azs-java-live-blob613354e75\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers0634677a04\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:19.2503346Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "1ecedd05-c986-40a5-844a-19269eb17a16", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer96011d6a2365408')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexers('indexer027606d3182bd6a')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer96011d6a2365408')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer027606d3182bd6a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e27530d-e2cf-46cf-b427-9d34cafceafe", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3475a0d4-2cff-4e11-8707-40a165b86c65", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "481", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0e27530d-e2cf-46cf-b427-9d34cafceafe", + "request-id" : "3475a0d4-2cff-4e11-8707-40a165b86c65", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:38:45 GMT", + "Date" : "Thu, 27 May 2021 21:17:19 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62813D471A1\"", - "client-request-id" : "0e27530d-e2cf-46cf-b427-9d34cafceafe", - "elapsed-time" : "184", + "ETag" : "W/\"0x8D92154CFD30841\"", + "client-request-id" : "3475a0d4-2cff-4e11-8707-40a165b86c65", + "elapsed-time" : "207", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "494", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D8F62813D471A1\\\"\",\"name\":\"indexer96011d6a2365408\",\"description\":\"ABrandNewDescription\",\"dataSourceName\":\"azs-java-live-blob054518828\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers577557e27c\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-04-02T22:38:46.0047223Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"cache\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "0e27530d-e2cf-46cf-b427-9d34cafceafe", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexers/$entity\",\"@odata.etag\":\"\\\"0x8D92154CFD30841\\\"\",\"name\":\"indexer027606d3182bd6a\",\"description\":\"ABrandNewDescription\",\"dataSourceName\":\"azs-java-live-blob613354e75\",\"skillsetName\":null,\"targetIndexName\":\"indexforindexers0634677a04\",\"disabled\":null,\"schedule\":{\"interval\":\"P1D\",\"startTime\":\"2021-05-27T21:17:19.2503346Z\"},\"parameters\":null,\"fieldMappings\":[],\"outputFieldMappings\":[],\"encryptionKey\":null}", + "x-ms-client-request-id" : "3475a0d4-2cff-4e11-8707-40a165b86c65", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob054518828')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/datasources('azs-java-live-blob613354e75')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1641ead4-641a-4909-8fbf-ea75c9db73c9" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ae52984d-a628-4f18-b4f9-bd801502880e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1641ead4-641a-4909-8fbf-ea75c9db73c9", - "elapsed-time" : "53", + "client-request-id" : "ae52984d-a628-4f18-b4f9-bd801502880e", + "elapsed-time" : "15", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "1641ead4-641a-4909-8fbf-ea75c9db73c9", + "request-id" : "ae52984d-a628-4f18-b4f9-bd801502880e", "StatusCode" : "204", - "x-ms-client-request-id" : "1641ead4-641a-4909-8fbf-ea75c9db73c9", - "Date" : "Fri, 02 Apr 2021 22:38:46 GMT" + "x-ms-client-request-id" : "ae52984d-a628-4f18-b4f9-bd801502880e", + "Date" : "Thu, 27 May 2021 21:17:19 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexers('indexer96011d6a2365408')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexers('indexer027606d3182bd6a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e61f4b13-d64b-4293-a59a-6a800634a769" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "87466619-8645-4116-88c6-217edcaef50a" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e61f4b13-d64b-4293-a59a-6a800634a769", - "elapsed-time" : "69", + "client-request-id" : "87466619-8645-4116-88c6-217edcaef50a", + "elapsed-time" : "28", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "e61f4b13-d64b-4293-a59a-6a800634a769", + "request-id" : "87466619-8645-4116-88c6-217edcaef50a", "StatusCode" : "204", - "x-ms-client-request-id" : "e61f4b13-d64b-4293-a59a-6a800634a769", - "Date" : "Fri, 02 Apr 2021 22:38:45 GMT" + "x-ms-client-request-id" : "87466619-8645-4116-88c6-217edcaef50a", + "Date" : "Thu, 27 May 2021 21:17:19 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers577557e27c')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('indexforindexers0634677a04')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0ad6f2d6-82a6-4158-a7d4-7ac517958cd5" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "39314c66-5327-42b3-9a6f-1c2595b957bb" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0ad6f2d6-82a6-4158-a7d4-7ac517958cd5", - "elapsed-time" : "604", + "client-request-id" : "39314c66-5327-42b3-9a6f-1c2595b957bb", + "elapsed-time" : "498", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "0ad6f2d6-82a6-4158-a7d4-7ac517958cd5", + "request-id" : "39314c66-5327-42b3-9a6f-1c2595b957bb", "StatusCode" : "204", - "x-ms-client-request-id" : "0ad6f2d6-82a6-4158-a7d4-7ac517958cd5", - "Date" : "Fri, 02 Apr 2021 22:38:46 GMT" + "x-ms-client-request-id" : "39314c66-5327-42b3-9a6f-1c2595b957bb", + "Date" : "Thu, 27 May 2021 21:17:19 GMT" }, "Exception" : null } ], - "variables" : [ "indexforindexers577557e27c", "azs-java-live-blob054518828", "indexer96011d6a2365408" ] + "variables" : [ "indexforindexers0634677a04", "azs-java-live-blob613354e75", "indexer027606d3182bd6a" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canDeleteBatchByKeys.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canDeleteBatchByKeys.json index 7ca4fa6c1a85..e7fda46693df 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canDeleteBatchByKeys.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canDeleteBatchByKeys.json @@ -1,160 +1,160 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscandeletebatchbykeys7a23884097536a431978480')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscandeletebatchbykeys43f32709c7808d4cd977432')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c7c83455-d73c-4280-9d69-588369d00feb", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "01a5dd1c-d1e2-4e43-9306-2a8eca82c649", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6490", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c7c83455-d73c-4280-9d69-588369d00feb", + "request-id" : "01a5dd1c-d1e2-4e43-9306-2a8eca82c649", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:28:46 GMT", + "Date" : "Thu, 27 May 2021 21:07:13 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626AE297250\"", - "client-request-id" : "c7c83455-d73c-4280-9d69-588369d00feb", - "elapsed-time" : "1083", + "ETag" : "W/\"0x8D9215366BD945B\"", + "client-request-id" : "01a5dd1c-d1e2-4e43-9306-2a8eca82c649", + "elapsed-time" : "1525", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6939", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626AE297250\\\"\",\"name\":\"hotelscandeletebatchbykeys7a23884097536a431978480\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "c7c83455-d73c-4280-9d69-588369d00feb", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215366BD945B\\\"\",\"name\":\"hotelscandeletebatchbykeys43f32709c7808d4cd977432\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "01a5dd1c-d1e2-4e43-9306-2a8eca82c649", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscandeletebatchbykeys7a23884097536a431978480')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscandeletebatchbykeys43f32709c7808d4cd977432')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscandeletebatchbykeys7a23884097536a431978480')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscandeletebatchbykeys43f32709c7808d4cd977432')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1085c730-4ef1-45f3-832a-a8d3c1662730", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5da9e7eb-8846-4f0c-b13c-415a6e1d7560", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "137", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1085c730-4ef1-45f3-832a-a8d3c1662730", + "request-id" : "5da9e7eb-8846-4f0c-b13c-415a6e1d7560", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:46 GMT", + "Date" : "Thu, 27 May 2021 21:07:13 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1085c730-4ef1-45f3-832a-a8d3c1662730", - "elapsed-time" : "110", + "client-request-id" : "5da9e7eb-8846-4f0c-b13c-415a6e1d7560", + "elapsed-time" : "101", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "137", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "1085c730-4ef1-45f3-832a-a8d3c1662730", + "x-ms-client-request-id" : "5da9e7eb-8846-4f0c-b13c-415a6e1d7560", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscandeletebatchbykeys7a23884097536a431978480')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscandeletebatchbykeys43f32709c7808d4cd977432')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "630777d6-0dc5-4ff5-a816-2b898c3b4a68" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ed2cc192-ec06-4411-8a85-42a50eb05880" }, "Response" : { + "content-length" : "4", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "630777d6-0dc5-4ff5-a816-2b898c3b4a68", + "request-id" : "ed2cc192-ec06-4411-8a85-42a50eb05880", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:49 GMT", + "Date" : "Thu, 27 May 2021 21:07:16 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "630777d6-0dc5-4ff5-a816-2b898c3b4a68", - "elapsed-time" : "6", + "client-request-id" : "ed2cc192-ec06-4411-8a85-42a50eb05880", + "elapsed-time" : "4", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "4", "Body" : "2", - "x-ms-client-request-id" : "630777d6-0dc5-4ff5-a816-2b898c3b4a68", + "x-ms-client-request-id" : "ed2cc192-ec06-4411-8a85-42a50eb05880", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "text/plain" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscandeletebatchbykeys7a23884097536a431978480')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscandeletebatchbykeys43f32709c7808d4cd977432')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "61752e59-49b9-4f5f-a1a4-7dac57c55346", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a039cd86-ecee-4942-b3fb-86ffc30fc621", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "137", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "61752e59-49b9-4f5f-a1a4-7dac57c55346", + "request-id" : "a039cd86-ecee-4942-b3fb-86ffc30fc621", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:49 GMT", + "Date" : "Thu, 27 May 2021 21:07:16 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "61752e59-49b9-4f5f-a1a4-7dac57c55346", - "elapsed-time" : "42", + "client-request-id" : "a039cd86-ecee-4942-b3fb-86ffc30fc621", + "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "137", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":200},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":200}]}", - "x-ms-client-request-id" : "61752e59-49b9-4f5f-a1a4-7dac57c55346", + "x-ms-client-request-id" : "a039cd86-ecee-4942-b3fb-86ffc30fc621", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscandeletebatchbykeys7a23884097536a431978480')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscandeletebatchbykeys43f32709c7808d4cd977432')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4175b6f7-5ccf-4b27-a4cf-58c6a654b2e5" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "18c389aa-5f4e-46d1-bce6-2f2c2e482c16" }, "Response" : { + "content-length" : "4", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4175b6f7-5ccf-4b27-a4cf-58c6a654b2e5", + "request-id" : "18c389aa-5f4e-46d1-bce6-2f2c2e482c16", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:52 GMT", + "Date" : "Thu, 27 May 2021 21:07:20 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4175b6f7-5ccf-4b27-a4cf-58c6a654b2e5", - "elapsed-time" : "5", + "client-request-id" : "18c389aa-5f4e-46d1-bce6-2f2c2e482c16", + "elapsed-time" : "4", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "4", "Body" : "0", - "x-ms-client-request-id" : "4175b6f7-5ccf-4b27-a4cf-58c6a654b2e5", + "x-ms-client-request-id" : "18c389aa-5f4e-46d1-bce6-2f2c2e482c16", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "text/plain" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscandeletebatchbykeys7a23884097536a431978480')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscandeletebatchbykeys43f32709c7808d4cd977432')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2e028068-dce1-42c4-8787-273eef751b2b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "33b98534-2720-43cd-83dc-5aa7e40e99f3" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2e028068-dce1-42c4-8787-273eef751b2b", - "elapsed-time" : "538", + "client-request-id" : "33b98534-2720-43cd-83dc-5aa7e40e99f3", + "elapsed-time" : "509", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "2e028068-dce1-42c4-8787-273eef751b2b", + "request-id" : "33b98534-2720-43cd-83dc-5aa7e40e99f3", "StatusCode" : "204", - "x-ms-client-request-id" : "2e028068-dce1-42c4-8787-273eef751b2b", - "Date" : "Fri, 02 Apr 2021 22:28:52 GMT" + "x-ms-client-request-id" : "33b98534-2720-43cd-83dc-5aa7e40e99f3", + "Date" : "Thu, 27 May 2021 21:07:20 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscandeletebatchbykeys7a23884097536a431978480" ] + "variables" : [ "hotelscandeletebatchbykeys43f32709c7808d4cd977432" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexAndAccessResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexAndAccessResponse.json index dde844c32d1f..456b29e4c03f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexAndAccessResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexAndAccessResponse.json @@ -1,241 +1,241 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse4971356040066ef21110')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse612811099d779a3c114a')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c1d40c2-3157-4c18-9fc3-683432108033", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "64ac395f-a2af-4bac-88b4-72ff4f5288b0", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6492", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9c1d40c2-3157-4c18-9fc3-683432108033", + "request-id" : "64ac395f-a2af-4bac-88b4-72ff4f5288b0", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:29:21 GMT", + "Date" : "Thu, 27 May 2021 21:07:48 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626C31F092B\"", - "client-request-id" : "9c1d40c2-3157-4c18-9fc3-683432108033", - "elapsed-time" : "1106", + "ETag" : "W/\"0x8D921537B9519FB\"", + "client-request-id" : "64ac395f-a2af-4bac-88b4-72ff4f5288b0", + "elapsed-time" : "1456", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6941", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626C31F092B\\\"\",\"name\":\"hotelscanindexandaccessresponse4971356040066ef21110\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "9c1d40c2-3157-4c18-9fc3-683432108033", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921537B9519FB\\\"\",\"name\":\"hotelscanindexandaccessresponse612811099d779a3c114a\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "64ac395f-a2af-4bac-88b4-72ff4f5288b0", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanindexandaccessresponse4971356040066ef21110')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanindexandaccessresponse612811099d779a3c114a')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse4971356040066ef21110')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse612811099d779a3c114a')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e7b52e1a-8dc9-47d8-85ab-eea8d59f9cbe", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "48071b43-310b-4028-85d7-d7f43185282b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "137", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e7b52e1a-8dc9-47d8-85ab-eea8d59f9cbe", + "request-id" : "48071b43-310b-4028-85d7-d7f43185282b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:21 GMT", + "Date" : "Thu, 27 May 2021 21:07:48 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e7b52e1a-8dc9-47d8-85ab-eea8d59f9cbe", - "elapsed-time" : "108", + "client-request-id" : "48071b43-310b-4028-85d7-d7f43185282b", + "elapsed-time" : "111", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "137", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "e7b52e1a-8dc9-47d8-85ab-eea8d59f9cbe", + "x-ms-client-request-id" : "48071b43-310b-4028-85d7-d7f43185282b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse4971356040066ef21110')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse612811099d779a3c114a')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "43a62320-1114-43c0-8241-e67103041c20", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b9e3f3e9-1db0-435a-a35b-dbe9ea5c88b8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "43a62320-1114-43c0-8241-e67103041c20", + "request-id" : "b9e3f3e9-1db0-435a-a35b-dbe9ea5c88b8", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:24 GMT", + "Date" : "Thu, 27 May 2021 21:07:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "43a62320-1114-43c0-8241-e67103041c20", - "elapsed-time" : "44", + "client-request-id" : "b9e3f3e9-1db0-435a-a35b-dbe9ea5c88b8", + "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":200}]}", - "x-ms-client-request-id" : "43a62320-1114-43c0-8241-e67103041c20", + "x-ms-client-request-id" : "b9e3f3e9-1db0-435a-a35b-dbe9ea5c88b8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse4971356040066ef21110')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse612811099d779a3c114a')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "63201ab4-d7dc-466f-bf48-b9b6f05689bc", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6584329f-68d0-478b-bf6f-ef9a35cea77d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "137", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "63201ab4-d7dc-466f-bf48-b9b6f05689bc", + "request-id" : "6584329f-68d0-478b-bf6f-ef9a35cea77d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:27 GMT", + "Date" : "Thu, 27 May 2021 21:07:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "63201ab4-d7dc-466f-bf48-b9b6f05689bc", - "elapsed-time" : "38", + "client-request-id" : "6584329f-68d0-478b-bf6f-ef9a35cea77d", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "137", "Body" : "{\"value\":[{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "63201ab4-d7dc-466f-bf48-b9b6f05689bc", + "x-ms-client-request-id" : "6584329f-68d0-478b-bf6f-ef9a35cea77d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse4971356040066ef21110')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse612811099d779a3c114a')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "660e1135-251e-4986-9c03-ddae92e08508", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "95d883a5-068a-4257-8a3d-7b153c462c01", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "660e1135-251e-4986-9c03-ddae92e08508", + "request-id" : "95d883a5-068a-4257-8a3d-7b153c462c01", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:30 GMT", + "Date" : "Thu, 27 May 2021 21:07:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "660e1135-251e-4986-9c03-ddae92e08508", + "client-request-id" : "95d883a5-068a-4257-8a3d-7b153c462c01", "elapsed-time" : "38", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":200}]}", - "x-ms-client-request-id" : "660e1135-251e-4986-9c03-ddae92e08508", + "x-ms-client-request-id" : "95d883a5-068a-4257-8a3d-7b153c462c01", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse4971356040066ef21110')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse612811099d779a3c114a')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "029000ee-06ff-4a27-8939-ec011db3e136", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e3592008-251d-43fe-93fb-79dd3457ba62", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "263", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "029000ee-06ff-4a27-8939-ec011db3e136", + "request-id" : "e3592008-251d-43fe-93fb-79dd3457ba62", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:34 GMT", + "Date" : "Thu, 27 May 2021 21:08:01 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "029000ee-06ff-4a27-8939-ec011db3e136", - "elapsed-time" : "41", + "client-request-id" : "e3592008-251d-43fe-93fb-79dd3457ba62", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "263", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":200},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":200},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":200},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "029000ee-06ff-4a27-8939-ec011db3e136", + "x-ms-client-request-id" : "e3592008-251d-43fe-93fb-79dd3457ba62", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse4971356040066ef21110')//docs('3')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse612811099d779a3c114a')/docs('3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "78255a89-eb79-4c15-a012-c9a673ae0bd4" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "53b33efb-d15f-4e98-b2fa-f09f94956088" }, "Response" : { + "content-length" : "223", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "78255a89-eb79-4c15-a012-c9a673ae0bd4", + "request-id" : "53b33efb-d15f-4e98-b2fa-f09f94956088", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:36 GMT", + "Date" : "Thu, 27 May 2021 21:08:04 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "78255a89-eb79-4c15-a012-c9a673ae0bd4", - "elapsed-time" : "8", + "client-request-id" : "53b33efb-d15f-4e98-b2fa-f09f94956088", + "elapsed-time" : "9", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "223", "Body" : "{\"HotelId\":\"3\",\"HotelName\":null,\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":4,\"Location\":null,\"Address\":null,\"Rooms\":[]}", - "x-ms-client-request-id" : "78255a89-eb79-4c15-a012-c9a673ae0bd4", + "x-ms-client-request-id" : "53b33efb-d15f-4e98-b2fa-f09f94956088", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse4971356040066ef21110')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse612811099d779a3c114a')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8b13029-9784-4392-8f4e-392c55da1f0d" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "95e8e792-1f47-4069-bd28-5b0489c19497" }, "Response" : { + "content-length" : "4", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d8b13029-9784-4392-8f4e-392c55da1f0d", + "request-id" : "95e8e792-1f47-4069-bd28-5b0489c19497", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:36 GMT", + "Date" : "Thu, 27 May 2021 21:08:04 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d8b13029-9784-4392-8f4e-392c55da1f0d", - "elapsed-time" : "4", + "client-request-id" : "95e8e792-1f47-4069-bd28-5b0489c19497", + "elapsed-time" : "3", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "4", "Body" : "4", - "x-ms-client-request-id" : "d8b13029-9784-4392-8f4e-392c55da1f0d", + "x-ms-client-request-id" : "95e8e792-1f47-4069-bd28-5b0489c19497", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "text/plain" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse4971356040066ef21110')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexandaccessresponse612811099d779a3c114a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e63adb00-f971-4e60-95e1-42ec27ddc74b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "52bd70f1-7cd0-450a-ae4f-08dbbbefbd9c" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e63adb00-f971-4e60-95e1-42ec27ddc74b", - "elapsed-time" : "561", + "client-request-id" : "52bd70f1-7cd0-450a-ae4f-08dbbbefbd9c", + "elapsed-time" : "548", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "e63adb00-f971-4e60-95e1-42ec27ddc74b", + "request-id" : "52bd70f1-7cd0-450a-ae4f-08dbbbefbd9c", "StatusCode" : "204", - "x-ms-client-request-id" : "e63adb00-f971-4e60-95e1-42ec27ddc74b", - "Date" : "Fri, 02 Apr 2021 22:29:37 GMT" + "x-ms-client-request-id" : "52bd70f1-7cd0-450a-ae4f-08dbbbefbd9c", + "Date" : "Thu, 27 May 2021 21:08:04 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanindexandaccessresponse4971356040066ef21110" ] + "variables" : [ "hotelscanindexandaccessresponse612811099d779a3c114a" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexDynamicDocumentsNotThrow.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexDynamicDocumentsNotThrow.json index 22d5d819e380..34d68813506f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexDynamicDocumentsNotThrow.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexDynamicDocumentsNotThrow.json @@ -1,159 +1,159 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsnotthrow53f69712180d1431e')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsnotthrowf19610365f44c3789')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5a1f62c0-2078-4673-85f4-f5fa490d1450", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b7d21872-4373-4f73-b3a0-861461c1d1fa", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6496", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5a1f62c0-2078-4673-85f4-f5fa490d1450", + "request-id" : "b7d21872-4373-4f73-b3a0-861461c1d1fa", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:30:04 GMT", + "Date" : "Thu, 27 May 2021 21:08:34 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626DC9FADCF\"", - "client-request-id" : "5a1f62c0-2078-4673-85f4-f5fa490d1450", - "elapsed-time" : "1052", + "ETag" : "W/\"0x8D92153968C0D9D\"", + "client-request-id" : "b7d21872-4373-4f73-b3a0-861461c1d1fa", + "elapsed-time" : "1513", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6945", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626DC9FADCF\\\"\",\"name\":\"hotelscanindexdynamicdocumentsnotthrow53f69712180d1431e\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "5a1f62c0-2078-4673-85f4-f5fa490d1450", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153968C0D9D\\\"\",\"name\":\"hotelscanindexdynamicdocumentsnotthrowf19610365f44c3789\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "b7d21872-4373-4f73-b3a0-861461c1d1fa", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanindexdynamicdocumentsnotthrow53f69712180d1431e')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanindexdynamicdocumentsnotthrowf19610365f44c3789')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsnotthrow53f69712180d1431e')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsnotthrowf19610365f44c3789')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "56087822-2993-4409-9b0d-2b69bdd6dd90", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "55c0805b-e391-41fa-b64c-352b548a6d4c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "366", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "56087822-2993-4409-9b0d-2b69bdd6dd90", + "request-id" : "55c0805b-e391-41fa-b64c-352b548a6d4c", "StatusCode" : "207", - "Date" : "Fri, 02 Apr 2021 22:30:04 GMT", + "Date" : "Thu, 27 May 2021 21:08:34 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "56087822-2993-4409-9b0d-2b69bdd6dd90", - "elapsed-time" : "149", + "client-request-id" : "55c0805b-e391-41fa-b64c-352b548a6d4c", + "elapsed-time" : "126", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "366", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"randomId\",\"status\":true,\"errorMessage\":null,\"statusCode\":200},{\"key\":\"nonExistingHotel\",\"status\":false,\"errorMessage\":\"Document not found.\",\"statusCode\":404},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "56087822-2993-4409-9b0d-2b69bdd6dd90", + "x-ms-client-request-id" : "55c0805b-e391-41fa-b64c-352b548a6d4c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsnotthrow53f69712180d1431e')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsnotthrowf19610365f44c3789')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6813e0ce-7649-4dc8-a6d4-aff6146f48cc" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "afaad406-a3c9-41bd-9a0f-45a6831e7503" }, "Response" : { + "content-length" : "1038", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6813e0ce-7649-4dc8-a6d4-aff6146f48cc", + "request-id" : "afaad406-a3c9-41bd-9a0f-45a6831e7503", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:04 GMT", + "Date" : "Thu, 27 May 2021 21:08:34 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6813e0ce-7649-4dc8-a6d4-aff6146f48cc", - "elapsed-time" : "27", + "client-request-id" : "afaad406-a3c9-41bd-9a0f-45a6831e7503", + "elapsed-time" : "25", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1038", "Body" : "{\"HotelId\":\"1\",\"HotelName\":\"Fancy Stay Hotel\",\"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.\",\"Description_fr\":null,\"Category\":\"Luxury\",\"Tags\":[\"pool\",\"view\",\"wifi\",\"concierge\"],\"ParkingIncluded\":true,\"SmokingAllowed\":true,\"LastRenovationDate\":\"2019-01-30T00:00:00Z\",\"Rating\":5,\"Location\":null,\"Address\":{\"StreetAddress\":\"One Microsoft way\",\"City\":\"Redmond\",\"StateProvince\":\"Washington\",\"PostalCode\":\"98052\",\"Country\":\"US\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed\",\"Description_fr\":null,\"Type\":\"Budget Room\",\"BaseRate\":149.99,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":true,\"Tags\":[\"vcr/dvd\",\"great view\"]},{\"Description\":\"Budget Room, 1 King Bed\",\"Description_fr\":null,\"Type\":\"Budget Room\",\"BaseRate\":249.99,\"BedOptions\":\"1 King Bed\",\"SleepsCount\":2,\"SmokingAllowed\":true,\"Tags\":[\"vcr/dvd\",\"seaside view\"]}]}", - "x-ms-client-request-id" : "6813e0ce-7649-4dc8-a6d4-aff6146f48cc", + "x-ms-client-request-id" : "afaad406-a3c9-41bd-9a0f-45a6831e7503", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsnotthrow53f69712180d1431e')//docs('2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsnotthrowf19610365f44c3789')/docs('2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "99b166ad-1a51-4914-9194-fd8147d67dbd" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ba2e176e-50bc-47a6-a81a-315b2dfcbbe8" }, "Response" : { + "content-length" : "1038", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "99b166ad-1a51-4914-9194-fd8147d67dbd", + "request-id" : "ba2e176e-50bc-47a6-a81a-315b2dfcbbe8", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:04 GMT", + "Date" : "Thu, 27 May 2021 21:08:34 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "99b166ad-1a51-4914-9194-fd8147d67dbd", - "elapsed-time" : "7", + "client-request-id" : "ba2e176e-50bc-47a6-a81a-315b2dfcbbe8", + "elapsed-time" : "20", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1038", "Body" : "{\"HotelId\":\"2\",\"HotelName\":\"Fancy Stay Hotel\",\"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.\",\"Description_fr\":null,\"Category\":\"Luxury\",\"Tags\":[\"pool\",\"view\",\"wifi\",\"concierge\"],\"ParkingIncluded\":true,\"SmokingAllowed\":true,\"LastRenovationDate\":\"2019-01-30T00:00:00Z\",\"Rating\":5,\"Location\":null,\"Address\":{\"StreetAddress\":\"One Microsoft way\",\"City\":\"Redmond\",\"StateProvince\":\"Washington\",\"PostalCode\":\"98052\",\"Country\":\"US\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed\",\"Description_fr\":null,\"Type\":\"Budget Room\",\"BaseRate\":149.99,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":true,\"Tags\":[\"vcr/dvd\",\"great view\"]},{\"Description\":\"Budget Room, 1 King Bed\",\"Description_fr\":null,\"Type\":\"Budget Room\",\"BaseRate\":249.99,\"BedOptions\":\"1 King Bed\",\"SleepsCount\":2,\"SmokingAllowed\":true,\"Tags\":[\"vcr/dvd\",\"seaside view\"]}]}", - "x-ms-client-request-id" : "99b166ad-1a51-4914-9194-fd8147d67dbd", + "x-ms-client-request-id" : "ba2e176e-50bc-47a6-a81a-315b2dfcbbe8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsnotthrow53f69712180d1431e')//docs('3')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsnotthrowf19610365f44c3789')/docs('3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a4972f0-4d72-4a83-af4e-26d079801e3e" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0f3787e9-0e29-489e-86b4-59d43092c6c3" }, "Response" : { + "content-length" : "1038", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3a4972f0-4d72-4a83-af4e-26d079801e3e", + "request-id" : "0f3787e9-0e29-489e-86b4-59d43092c6c3", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:04 GMT", + "Date" : "Thu, 27 May 2021 21:08:34 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3a4972f0-4d72-4a83-af4e-26d079801e3e", - "elapsed-time" : "5", + "client-request-id" : "0f3787e9-0e29-489e-86b4-59d43092c6c3", + "elapsed-time" : "18", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1038", "Body" : "{\"HotelId\":\"3\",\"HotelName\":\"Fancy Stay Hotel\",\"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.\",\"Description_fr\":null,\"Category\":\"Luxury\",\"Tags\":[\"pool\",\"view\",\"wifi\",\"concierge\"],\"ParkingIncluded\":true,\"SmokingAllowed\":true,\"LastRenovationDate\":\"2019-01-30T00:00:00Z\",\"Rating\":5,\"Location\":null,\"Address\":{\"StreetAddress\":\"One Microsoft way\",\"City\":\"Redmond\",\"StateProvince\":\"Washington\",\"PostalCode\":\"98052\",\"Country\":\"US\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed\",\"Description_fr\":null,\"Type\":\"Budget Room\",\"BaseRate\":149.99,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":true,\"Tags\":[\"vcr/dvd\",\"great view\"]},{\"Description\":\"Budget Room, 1 King Bed\",\"Description_fr\":null,\"Type\":\"Budget Room\",\"BaseRate\":249.99,\"BedOptions\":\"1 King Bed\",\"SleepsCount\":2,\"SmokingAllowed\":true,\"Tags\":[\"vcr/dvd\",\"seaside view\"]}]}", - "x-ms-client-request-id" : "3a4972f0-4d72-4a83-af4e-26d079801e3e", + "x-ms-client-request-id" : "0f3787e9-0e29-489e-86b4-59d43092c6c3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsnotthrow53f69712180d1431e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsnotthrowf19610365f44c3789')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0d5316ff-50c5-4d18-ad17-b9bdc26ee005" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "77f67426-d17d-466a-ac55-835e55fcc345" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0d5316ff-50c5-4d18-ad17-b9bdc26ee005", - "elapsed-time" : "1225", + "client-request-id" : "77f67426-d17d-466a-ac55-835e55fcc345", + "elapsed-time" : "529", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "0d5316ff-50c5-4d18-ad17-b9bdc26ee005", + "request-id" : "77f67426-d17d-466a-ac55-835e55fcc345", "StatusCode" : "204", - "x-ms-client-request-id" : "0d5316ff-50c5-4d18-ad17-b9bdc26ee005", - "Date" : "Fri, 02 Apr 2021 22:30:05 GMT" + "x-ms-client-request-id" : "77f67426-d17d-466a-ac55-835e55fcc345", + "Date" : "Thu, 27 May 2021 21:08:34 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanindexdynamicdocumentsnotthrow53f69712180d1431e" ] + "variables" : [ "hotelscanindexdynamicdocumentsnotthrowf19610365f44c3789" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexDynamicDocumentsThrowOnError.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexDynamicDocumentsThrowOnError.json index b19a34cbb926..2dc5d0a3390b 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexDynamicDocumentsThrowOnError.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexDynamicDocumentsThrowOnError.json @@ -1,159 +1,159 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsthrowonerror49e302707fed558')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsthrowonerror673648775461a23')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "60e8bd9d-7a6b-4c00-8a11-aa1baf540445", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4066269e-4fbc-4245-a854-0d91f0385cc7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6498", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "60e8bd9d-7a6b-4c00-8a11-aa1baf540445", + "request-id" : "4066269e-4fbc-4245-a854-0d91f0385cc7", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:29:38 GMT", + "Date" : "Thu, 27 May 2021 21:08:06 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626CD6A09CF\"", - "client-request-id" : "60e8bd9d-7a6b-4c00-8a11-aa1baf540445", - "elapsed-time" : "1115", + "ETag" : "W/\"0x8D921538620C68F\"", + "client-request-id" : "4066269e-4fbc-4245-a854-0d91f0385cc7", + "elapsed-time" : "1526", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6947", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626CD6A09CF\\\"\",\"name\":\"hotelscanindexdynamicdocumentsthrowonerror49e302707fed558\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "60e8bd9d-7a6b-4c00-8a11-aa1baf540445", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921538620C68F\\\"\",\"name\":\"hotelscanindexdynamicdocumentsthrowonerror673648775461a23\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "4066269e-4fbc-4245-a854-0d91f0385cc7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanindexdynamicdocumentsthrowonerror49e302707fed558')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanindexdynamicdocumentsthrowonerror673648775461a23')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsthrowonerror49e302707fed558')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsthrowonerror673648775461a23')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "eb8b75ea-fa8f-4f21-8072-31cb92b555e0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1f7a7a23-953a-4d89-95c1-8ab7bf8c83d9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "366", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "eb8b75ea-fa8f-4f21-8072-31cb92b555e0", + "request-id" : "1f7a7a23-953a-4d89-95c1-8ab7bf8c83d9", "StatusCode" : "207", - "Date" : "Fri, 02 Apr 2021 22:29:38 GMT", + "Date" : "Thu, 27 May 2021 21:08:06 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "eb8b75ea-fa8f-4f21-8072-31cb92b555e0", - "elapsed-time" : "119", + "client-request-id" : "1f7a7a23-953a-4d89-95c1-8ab7bf8c83d9", + "elapsed-time" : "109", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "366", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"randomId\",\"status\":true,\"errorMessage\":null,\"statusCode\":200},{\"key\":\"nonExistingHotel\",\"status\":false,\"errorMessage\":\"Document not found.\",\"statusCode\":404},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "eb8b75ea-fa8f-4f21-8072-31cb92b555e0", + "x-ms-client-request-id" : "1f7a7a23-953a-4d89-95c1-8ab7bf8c83d9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsthrowonerror49e302707fed558')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsthrowonerror673648775461a23')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "554248c8-80b4-498d-b6a0-2eecaad00b38" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fa0c229b-4041-4cb8-a6c1-fce3f19f3302" }, "Response" : { + "content-length" : "1038", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "554248c8-80b4-498d-b6a0-2eecaad00b38", + "request-id" : "fa0c229b-4041-4cb8-a6c1-fce3f19f3302", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:38 GMT", + "Date" : "Thu, 27 May 2021 21:08:06 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "554248c8-80b4-498d-b6a0-2eecaad00b38", - "elapsed-time" : "33", + "client-request-id" : "fa0c229b-4041-4cb8-a6c1-fce3f19f3302", + "elapsed-time" : "24", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1038", "Body" : "{\"HotelId\":\"1\",\"HotelName\":\"Fancy Stay Hotel\",\"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.\",\"Description_fr\":null,\"Category\":\"Luxury\",\"Tags\":[\"pool\",\"view\",\"wifi\",\"concierge\"],\"ParkingIncluded\":true,\"SmokingAllowed\":true,\"LastRenovationDate\":\"2019-01-30T00:00:00Z\",\"Rating\":5,\"Location\":null,\"Address\":{\"StreetAddress\":\"One Microsoft way\",\"City\":\"Redmond\",\"StateProvince\":\"Washington\",\"PostalCode\":\"98052\",\"Country\":\"US\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed\",\"Description_fr\":null,\"Type\":\"Budget Room\",\"BaseRate\":149.99,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":true,\"Tags\":[\"vcr/dvd\",\"great view\"]},{\"Description\":\"Budget Room, 1 King Bed\",\"Description_fr\":null,\"Type\":\"Budget Room\",\"BaseRate\":249.99,\"BedOptions\":\"1 King Bed\",\"SleepsCount\":2,\"SmokingAllowed\":true,\"Tags\":[\"vcr/dvd\",\"seaside view\"]}]}", - "x-ms-client-request-id" : "554248c8-80b4-498d-b6a0-2eecaad00b38", + "x-ms-client-request-id" : "fa0c229b-4041-4cb8-a6c1-fce3f19f3302", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsthrowonerror49e302707fed558')//docs('2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsthrowonerror673648775461a23')/docs('2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1972f901-3bcc-4f4e-8598-e6f286b7c16f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c62ebc3e-320e-4b50-9a69-bdef8a4b8a58" }, "Response" : { + "content-length" : "1038", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1972f901-3bcc-4f4e-8598-e6f286b7c16f", + "request-id" : "c62ebc3e-320e-4b50-9a69-bdef8a4b8a58", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:38 GMT", + "Date" : "Thu, 27 May 2021 21:08:06 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1972f901-3bcc-4f4e-8598-e6f286b7c16f", - "elapsed-time" : "13", + "client-request-id" : "c62ebc3e-320e-4b50-9a69-bdef8a4b8a58", + "elapsed-time" : "19", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1038", "Body" : "{\"HotelId\":\"2\",\"HotelName\":\"Fancy Stay Hotel\",\"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.\",\"Description_fr\":null,\"Category\":\"Luxury\",\"Tags\":[\"pool\",\"view\",\"wifi\",\"concierge\"],\"ParkingIncluded\":true,\"SmokingAllowed\":true,\"LastRenovationDate\":\"2019-01-30T00:00:00Z\",\"Rating\":5,\"Location\":null,\"Address\":{\"StreetAddress\":\"One Microsoft way\",\"City\":\"Redmond\",\"StateProvince\":\"Washington\",\"PostalCode\":\"98052\",\"Country\":\"US\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed\",\"Description_fr\":null,\"Type\":\"Budget Room\",\"BaseRate\":149.99,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":true,\"Tags\":[\"vcr/dvd\",\"great view\"]},{\"Description\":\"Budget Room, 1 King Bed\",\"Description_fr\":null,\"Type\":\"Budget Room\",\"BaseRate\":249.99,\"BedOptions\":\"1 King Bed\",\"SleepsCount\":2,\"SmokingAllowed\":true,\"Tags\":[\"vcr/dvd\",\"seaside view\"]}]}", - "x-ms-client-request-id" : "1972f901-3bcc-4f4e-8598-e6f286b7c16f", + "x-ms-client-request-id" : "c62ebc3e-320e-4b50-9a69-bdef8a4b8a58", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsthrowonerror49e302707fed558')//docs('3')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsthrowonerror673648775461a23')/docs('3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e73dedb4-21c4-471f-b52a-4478bf589ea0" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "55c67756-3a62-4dbc-bc16-d90de5a88c75" }, "Response" : { + "content-length" : "1038", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e73dedb4-21c4-471f-b52a-4478bf589ea0", + "request-id" : "55c67756-3a62-4dbc-bc16-d90de5a88c75", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:38 GMT", + "Date" : "Thu, 27 May 2021 21:08:06 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e73dedb4-21c4-471f-b52a-4478bf589ea0", - "elapsed-time" : "5", + "client-request-id" : "55c67756-3a62-4dbc-bc16-d90de5a88c75", + "elapsed-time" : "21", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1038", "Body" : "{\"HotelId\":\"3\",\"HotelName\":\"Fancy Stay Hotel\",\"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.\",\"Description_fr\":null,\"Category\":\"Luxury\",\"Tags\":[\"pool\",\"view\",\"wifi\",\"concierge\"],\"ParkingIncluded\":true,\"SmokingAllowed\":true,\"LastRenovationDate\":\"2019-01-30T00:00:00Z\",\"Rating\":5,\"Location\":null,\"Address\":{\"StreetAddress\":\"One Microsoft way\",\"City\":\"Redmond\",\"StateProvince\":\"Washington\",\"PostalCode\":\"98052\",\"Country\":\"US\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed\",\"Description_fr\":null,\"Type\":\"Budget Room\",\"BaseRate\":149.99,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":true,\"Tags\":[\"vcr/dvd\",\"great view\"]},{\"Description\":\"Budget Room, 1 King Bed\",\"Description_fr\":null,\"Type\":\"Budget Room\",\"BaseRate\":249.99,\"BedOptions\":\"1 King Bed\",\"SleepsCount\":2,\"SmokingAllowed\":true,\"Tags\":[\"vcr/dvd\",\"seaside view\"]}]}", - "x-ms-client-request-id" : "e73dedb4-21c4-471f-b52a-4478bf589ea0", + "x-ms-client-request-id" : "55c67756-3a62-4dbc-bc16-d90de5a88c75", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsthrowonerror49e302707fed558')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexdynamicdocumentsthrowonerror673648775461a23')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "93e136ec-77e7-4261-bc17-ac5e45d44b8a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d4eac392-ccb6-4081-ae38-867fec8bb44d" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "93e136ec-77e7-4261-bc17-ac5e45d44b8a", - "elapsed-time" : "1104", + "client-request-id" : "d4eac392-ccb6-4081-ae38-867fec8bb44d", + "elapsed-time" : "525", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "93e136ec-77e7-4261-bc17-ac5e45d44b8a", + "request-id" : "d4eac392-ccb6-4081-ae38-867fec8bb44d", "StatusCode" : "204", - "x-ms-client-request-id" : "93e136ec-77e7-4261-bc17-ac5e45d44b8a", - "Date" : "Fri, 02 Apr 2021 22:29:39 GMT" + "x-ms-client-request-id" : "d4eac392-ccb6-4081-ae38-867fec8bb44d", + "Date" : "Thu, 27 May 2021 21:08:06 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanindexdynamicdocumentsthrowonerror49e302707fed558" ] + "variables" : [ "hotelscanindexdynamicdocumentsthrowonerror673648775461a23" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexStaticallyTypedDocuments.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexStaticallyTypedDocuments.json index d016d2dc74ee..9d582cfe9d35 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexStaticallyTypedDocuments.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexStaticallyTypedDocuments.json @@ -1,159 +1,159 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexstaticallytypeddocumentsf5119478f49581d1f')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexstaticallytypeddocuments4c526725087119140')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "975c4402-1c78-4401-829d-ec074778b723", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "579db037-ecc6-49bb-83a2-7223a5189059", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6496", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "975c4402-1c78-4401-829d-ec074778b723", + "request-id" : "579db037-ecc6-49bb-83a2-7223a5189059", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:29:13 GMT", + "Date" : "Thu, 27 May 2021 21:07:42 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626BE6A4C5A\"", - "client-request-id" : "975c4402-1c78-4401-829d-ec074778b723", - "elapsed-time" : "1149", + "ETag" : "W/\"0x8D92153778CDF8C\"", + "client-request-id" : "579db037-ecc6-49bb-83a2-7223a5189059", + "elapsed-time" : "1499", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6945", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626BE6A4C5A\\\"\",\"name\":\"hotelscanindexstaticallytypeddocumentsf5119478f49581d1f\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "975c4402-1c78-4401-829d-ec074778b723", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153778CDF8C\\\"\",\"name\":\"hotelscanindexstaticallytypeddocuments4c526725087119140\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "579db037-ecc6-49bb-83a2-7223a5189059", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanindexstaticallytypeddocumentsf5119478f49581d1f')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanindexstaticallytypeddocuments4c526725087119140')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexstaticallytypeddocumentsf5119478f49581d1f')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexstaticallytypeddocuments4c526725087119140')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "27c833b0-c3d8-4e1d-83ed-17d58492780e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "31f05b17-6830-4c88-9c28-d3c55d31e449", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "366", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "27c833b0-c3d8-4e1d-83ed-17d58492780e", + "request-id" : "31f05b17-6830-4c88-9c28-d3c55d31e449", "StatusCode" : "207", - "Date" : "Fri, 02 Apr 2021 22:29:13 GMT", + "Date" : "Thu, 27 May 2021 21:07:42 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "27c833b0-c3d8-4e1d-83ed-17d58492780e", - "elapsed-time" : "172", + "client-request-id" : "31f05b17-6830-4c88-9c28-d3c55d31e449", + "elapsed-time" : "143", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "366", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"randomId\",\"status\":true,\"errorMessage\":null,\"statusCode\":200},{\"key\":\"nonExistingHotel\",\"status\":false,\"errorMessage\":\"Document not found.\",\"statusCode\":404},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "27c833b0-c3d8-4e1d-83ed-17d58492780e", + "x-ms-client-request-id" : "31f05b17-6830-4c88-9c28-d3c55d31e449", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexstaticallytypeddocumentsf5119478f49581d1f')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexstaticallytypeddocuments4c526725087119140')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "111907b1-09fd-4582-a8ec-87b9ca333350" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5a04c088-58c3-44e7-b788-c32b4272dd59" }, "Response" : { + "content-length" : "1065", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "111907b1-09fd-4582-a8ec-87b9ca333350", + "request-id" : "5a04c088-58c3-44e7-b788-c32b4272dd59", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:13 GMT", + "Date" : "Thu, 27 May 2021 21:07:42 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "111907b1-09fd-4582-a8ec-87b9ca333350", - "elapsed-time" : "24", + "client-request-id" : "5a04c088-58c3-44e7-b788-c32b4272dd59", + "elapsed-time" : "27", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1065", "Body" : "{\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"1 Microsoft Way\",\"City\":\"Redmond\",\"StateProvince\":\"Washington\",\"PostalCode\":\"98052\",\"Country\":\"United States\"},\"Rooms\":[]}", - "x-ms-client-request-id" : "111907b1-09fd-4582-a8ec-87b9ca333350", + "x-ms-client-request-id" : "5a04c088-58c3-44e7-b788-c32b4272dd59", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexstaticallytypeddocumentsf5119478f49581d1f')//docs('2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexstaticallytypeddocuments4c526725087119140')/docs('2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0105c9c0-8175-43f0-901b-67c9e8f851e9" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "80893c0d-2026-405b-9f5f-2701590ffb2b" }, "Response" : { + "content-length" : "1065", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0105c9c0-8175-43f0-901b-67c9e8f851e9", + "request-id" : "80893c0d-2026-405b-9f5f-2701590ffb2b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:13 GMT", + "Date" : "Thu, 27 May 2021 21:07:42 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0105c9c0-8175-43f0-901b-67c9e8f851e9", - "elapsed-time" : "5", + "client-request-id" : "80893c0d-2026-405b-9f5f-2701590ffb2b", + "elapsed-time" : "23", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1065", "Body" : "{\"HotelId\":\"2\",\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"1 Microsoft Way\",\"City\":\"Redmond\",\"StateProvince\":\"Washington\",\"PostalCode\":\"98052\",\"Country\":\"United States\"},\"Rooms\":[]}", - "x-ms-client-request-id" : "0105c9c0-8175-43f0-901b-67c9e8f851e9", + "x-ms-client-request-id" : "80893c0d-2026-405b-9f5f-2701590ffb2b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexstaticallytypeddocumentsf5119478f49581d1f')//docs('3')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexstaticallytypeddocuments4c526725087119140')/docs('3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "524648d6-84d2-43e3-9b5e-1d4094626061" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4067536a-d143-42ea-9ff0-e5067fac1cb1" }, "Response" : { + "content-length" : "1065", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "524648d6-84d2-43e3-9b5e-1d4094626061", + "request-id" : "4067536a-d143-42ea-9ff0-e5067fac1cb1", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:13 GMT", + "Date" : "Thu, 27 May 2021 21:07:42 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "524648d6-84d2-43e3-9b5e-1d4094626061", - "elapsed-time" : "5", + "client-request-id" : "4067536a-d143-42ea-9ff0-e5067fac1cb1", + "elapsed-time" : "19", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1065", "Body" : "{\"HotelId\":\"3\",\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"1 Microsoft Way\",\"City\":\"Redmond\",\"StateProvince\":\"Washington\",\"PostalCode\":\"98052\",\"Country\":\"United States\"},\"Rooms\":[]}", - "x-ms-client-request-id" : "524648d6-84d2-43e3-9b5e-1d4094626061", + "x-ms-client-request-id" : "4067536a-d143-42ea-9ff0-e5067fac1cb1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexstaticallytypeddocumentsf5119478f49581d1f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanindexstaticallytypeddocuments4c526725087119140')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4fd4ac34-f77a-47de-9bd0-e8a8761c0c74" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "02825de3-72f1-4a69-9cff-d92e3618d238" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4fd4ac34-f77a-47de-9bd0-e8a8761c0c74", - "elapsed-time" : "1070", + "client-request-id" : "02825de3-72f1-4a69-9cff-d92e3618d238", + "elapsed-time" : "497", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "4fd4ac34-f77a-47de-9bd0-e8a8761c0c74", + "request-id" : "02825de3-72f1-4a69-9cff-d92e3618d238", "StatusCode" : "204", - "x-ms-client-request-id" : "4fd4ac34-f77a-47de-9bd0-e8a8761c0c74", - "Date" : "Fri, 02 Apr 2021 22:29:14 GMT" + "x-ms-client-request-id" : "02825de3-72f1-4a69-9cff-d92e3618d238", + "Date" : "Thu, 27 May 2021 21:07:42 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanindexstaticallytypeddocumentsf5119478f49581d1f" ] + "variables" : [ "hotelscanindexstaticallytypeddocuments4c526725087119140" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexWithPascalCaseFields.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexWithPascalCaseFields.json index 3f00eed06354..4b6e04a3b012 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexWithPascalCaseFields.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canIndexWithPascalCaseFields.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('bookscanindexwithpascalcasefields381888401271c395ebd')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('bookscanindexwithpascalcasefieldsdb90556500703d8e3c3')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "63158b80-919a-45de-bbb2-dbcc07b6f23c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ba084241-1454-4926-b752-7c3768bc4cad", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1674", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "63158b80-919a-45de-bbb2-dbcc07b6f23c", + "request-id" : "ba084241-1454-4926-b752-7c3768bc4cad", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:28:38 GMT", + "Date" : "Thu, 27 May 2021 21:07:06 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626A9A2D261\"", - "client-request-id" : "63158b80-919a-45de-bbb2-dbcc07b6f23c", - "elapsed-time" : "1063", + "ETag" : "W/\"0x8D92153623FED78\"", + "client-request-id" : "ba084241-1454-4926-b752-7c3768bc4cad", + "elapsed-time" : "1884", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1781", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626A9A2D261\\\"\",\"name\":\"bookscanindexwithpascalcasefields381888401271c395ebd\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"ISBN\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Title\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Author\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"FirstName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"PublishDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Title\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "63158b80-919a-45de-bbb2-dbcc07b6f23c", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153623FED78\\\"\",\"name\":\"bookscanindexwithpascalcasefieldsdb90556500703d8e3c3\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"ISBN\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Title\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Author\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"FirstName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}]},{\"name\":\"PublishDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"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\":[\"Title\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "ba084241-1454-4926-b752-7c3768bc4cad", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('bookscanindexwithpascalcasefields381888401271c395ebd')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('bookscanindexwithpascalcasefieldsdb90556500703d8e3c3')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('bookscanindexwithpascalcasefields381888401271c395ebd')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('bookscanindexwithpascalcasefieldsdb90556500703d8e3c3')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "84553f93-64c4-499c-a948-3311eba9a8cf", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a953a93d-4ce0-4ec1-948d-a85838724d7e", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "76", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "84553f93-64c4-499c-a948-3311eba9a8cf", + "request-id" : "a953a93d-4ce0-4ec1-948d-a85838724d7e", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:38 GMT", + "Date" : "Thu, 27 May 2021 21:07:06 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "84553f93-64c4-499c-a948-3311eba9a8cf", - "elapsed-time" : "135", + "client-request-id" : "a953a93d-4ce0-4ec1-948d-a85838724d7e", + "elapsed-time" : "112", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "76", "Body" : "{\"value\":[{\"key\":\"123\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "84553f93-64c4-499c-a948-3311eba9a8cf", + "x-ms-client-request-id" : "a953a93d-4ce0-4ec1-948d-a85838724d7e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('bookscanindexwithpascalcasefields381888401271c395ebd')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('bookscanindexwithpascalcasefieldsdb90556500703d8e3c3')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "704331c6-75a8-4d1f-8b88-880182af517b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ecda9001-a58e-4ee5-b21a-5929b65617ce" }, "Response" : { + "content-length" : "4", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "704331c6-75a8-4d1f-8b88-880182af517b", + "request-id" : "ecda9001-a58e-4ee5-b21a-5929b65617ce", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:42 GMT", + "Date" : "Thu, 27 May 2021 21:07:09 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "704331c6-75a8-4d1f-8b88-880182af517b", - "elapsed-time" : "17", + "client-request-id" : "ecda9001-a58e-4ee5-b21a-5929b65617ce", + "elapsed-time" : "20", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "4", "Body" : "1", - "x-ms-client-request-id" : "704331c6-75a8-4d1f-8b88-880182af517b", + "x-ms-client-request-id" : "ecda9001-a58e-4ee5-b21a-5929b65617ce", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "text/plain" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('bookscanindexwithpascalcasefields381888401271c395ebd')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('bookscanindexwithpascalcasefieldsdb90556500703d8e3c3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf5f8320-7662-45be-8ea4-10c676094696" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bf691ade-decc-470b-ac65-0f12e432d765" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "bf5f8320-7662-45be-8ea4-10c676094696", - "elapsed-time" : "554", + "client-request-id" : "bf691ade-decc-470b-ac65-0f12e432d765", + "elapsed-time" : "511", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "bf5f8320-7662-45be-8ea4-10c676094696", + "request-id" : "bf691ade-decc-470b-ac65-0f12e432d765", "StatusCode" : "204", - "x-ms-client-request-id" : "bf5f8320-7662-45be-8ea4-10c676094696", - "Date" : "Fri, 02 Apr 2021 22:28:42 GMT" + "x-ms-client-request-id" : "bf691ade-decc-470b-ac65-0f12e432d765", + "Date" : "Thu, 27 May 2021 21:07:09 GMT" }, "Exception" : null } ], - "variables" : [ "bookscanindexwithpascalcasefields381888401271c395ebd" ] + "variables" : [ "bookscanindexwithpascalcasefieldsdb90556500703d8e3c3" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canMergeDynamicDocuments.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canMergeDynamicDocuments.json index 6148eaf791bf..dc178c6069dd 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canMergeDynamicDocuments.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canMergeDynamicDocuments.json @@ -1,187 +1,187 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergedynamicdocuments663477483de3ab5807e84')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergedynamicdocuments49c9036920f2951c620c4')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7f8a5c01-a6f7-4423-a68b-8e4d1ff042a2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "431b6373-34d4-47c0-bdc1-5240e31d533e", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6492", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7f8a5c01-a6f7-4423-a68b-8e4d1ff042a2", + "request-id" : "431b6373-34d4-47c0-bdc1-5240e31d533e", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:30:09 GMT", + "Date" : "Thu, 27 May 2021 21:08:39 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626DFC9DC7D\"", - "client-request-id" : "7f8a5c01-a6f7-4423-a68b-8e4d1ff042a2", - "elapsed-time" : "1129", + "ETag" : "W/\"0x8D921539983DEF2\"", + "client-request-id" : "431b6373-34d4-47c0-bdc1-5240e31d533e", + "elapsed-time" : "1731", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6941", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626DFC9DC7D\\\"\",\"name\":\"hotelscanmergedynamicdocuments663477483de3ab5807e84\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "7f8a5c01-a6f7-4423-a68b-8e4d1ff042a2", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921539983DEF2\\\"\",\"name\":\"hotelscanmergedynamicdocuments49c9036920f2951c620c4\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "431b6373-34d4-47c0-bdc1-5240e31d533e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanmergedynamicdocuments663477483de3ab5807e84')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanmergedynamicdocuments49c9036920f2951c620c4')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergedynamicdocuments663477483de3ab5807e84')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergedynamicdocuments49c9036920f2951c620c4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "806cfb10-08fd-4f59-91b5-07f4245aed07", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3dde8dc2-5081-438f-b942-48410d5f737f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "806cfb10-08fd-4f59-91b5-07f4245aed07", + "request-id" : "3dde8dc2-5081-438f-b942-48410d5f737f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:09 GMT", + "Date" : "Thu, 27 May 2021 21:08:39 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "806cfb10-08fd-4f59-91b5-07f4245aed07", - "elapsed-time" : "103", + "client-request-id" : "3dde8dc2-5081-438f-b942-48410d5f737f", + "elapsed-time" : "105", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "806cfb10-08fd-4f59-91b5-07f4245aed07", + "x-ms-client-request-id" : "3dde8dc2-5081-438f-b942-48410d5f737f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergedynamicdocuments663477483de3ab5807e84')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergedynamicdocuments49c9036920f2951c620c4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ba33ed48-48e0-4bb0-8af1-bed223e39314", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "aac134f8-2f09-409c-98b6-7fc312a59cbd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ba33ed48-48e0-4bb0-8af1-bed223e39314", + "request-id" : "aac134f8-2f09-409c-98b6-7fc312a59cbd", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:12 GMT", + "Date" : "Thu, 27 May 2021 21:08:42 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ba33ed48-48e0-4bb0-8af1-bed223e39314", - "elapsed-time" : "44", + "client-request-id" : "aac134f8-2f09-409c-98b6-7fc312a59cbd", + "elapsed-time" : "42", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":200}]}", - "x-ms-client-request-id" : "ba33ed48-48e0-4bb0-8af1-bed223e39314", + "x-ms-client-request-id" : "aac134f8-2f09-409c-98b6-7fc312a59cbd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergedynamicdocuments663477483de3ab5807e84')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergedynamicdocuments49c9036920f2951c620c4')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6f912957-15af-45c2-afea-03366f42ae92" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "23885285-99f3-44d5-a881-780a6d87b1d2" }, "Response" : { + "content-length" : "1299", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6f912957-15af-45c2-afea-03366f42ae92", + "request-id" : "23885285-99f3-44d5-a881-780a6d87b1d2", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:15 GMT", + "Date" : "Thu, 27 May 2021 21:08:45 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6f912957-15af-45c2-afea-03366f42ae92", - "elapsed-time" : "17", + "client-request-id" : "23885285-99f3-44d5-a881-780a6d87b1d2", + "elapsed-time" : "16", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1299", "Body" : "{\"HotelId\":\"1\",\"HotelName\":\"Secret Point Motel\",\"Description\":\"The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.\",\"Description_fr\":\"L'h\\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'autres lieux d'int\\u00e9r\\u00eat qui font de New York l'une des villes les plus attractives et cosmopolites de l'Am\\u00e9rique.\",\"Category\":\"Economy\",\"Tags\":[\"pool\",\"air conditioning\"],\"ParkingIncluded\":true,\"SmokingAllowed\":true,\"LastRenovationDate\":\"2010-06-27T00:00:00Z\",\"Rating\":3,\"Location\":{\"type\":\"Point\",\"coordinates\":[-73.965403,40.760586],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"677 5th Ave\",\"City\":\"New York\",\"StateProvince\":\"NY\",\"PostalCode\":\"10022\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":null,\"Description_fr\":null,\"Type\":\"Budget Room\",\"BaseRate\":10.5,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":true,\"Tags\":[\"vcr/dvd\",\"balcony\"]}]}", - "x-ms-client-request-id" : "6f912957-15af-45c2-afea-03366f42ae92", + "x-ms-client-request-id" : "23885285-99f3-44d5-a881-780a6d87b1d2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergedynamicdocuments663477483de3ab5807e84')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergedynamicdocuments49c9036920f2951c620c4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "710f7e1e-d216-4c71-92c7-d575bca36af0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e3ea7c2d-67b7-426f-834c-8ac16dc5c9da", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "710f7e1e-d216-4c71-92c7-d575bca36af0", + "request-id" : "e3ea7c2d-67b7-426f-834c-8ac16dc5c9da", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:15 GMT", + "Date" : "Thu, 27 May 2021 21:08:45 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "710f7e1e-d216-4c71-92c7-d575bca36af0", - "elapsed-time" : "34", + "client-request-id" : "e3ea7c2d-67b7-426f-834c-8ac16dc5c9da", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":200}]}", - "x-ms-client-request-id" : "710f7e1e-d216-4c71-92c7-d575bca36af0", + "x-ms-client-request-id" : "e3ea7c2d-67b7-426f-834c-8ac16dc5c9da", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergedynamicdocuments663477483de3ab5807e84')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergedynamicdocuments49c9036920f2951c620c4')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "00b370b7-2152-4212-83de-34ec810c2d0a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "047a414d-a196-4a22-9ca0-cf7efd560193" }, "Response" : { + "content-length" : "1667", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "00b370b7-2152-4212-83de-34ec810c2d0a", + "request-id" : "047a414d-a196-4a22-9ca0-cf7efd560193", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:19 GMT", + "Date" : "Thu, 27 May 2021 21:08:47 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "00b370b7-2152-4212-83de-34ec810c2d0a", - "elapsed-time" : "6", + "client-request-id" : "047a414d-a196-4a22-9ca0-cf7efd560193", + "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1667", "Body" : "{\"HotelId\":\"1\",\"HotelName\":\"Secret Point Motel\",\"Description\":\"The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.\",\"Description_fr\":\"L'h\\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'autres lieux d'int\\u00e9r\\u00eat qui font de New York l'une des villes les plus attractives et cosmopolites de l'Am\\u00e9rique.\",\"Category\":\"Boutique\",\"Tags\":[\"pool\",\"air conditioning\",\"concierge\"],\"ParkingIncluded\":false,\"SmokingAllowed\":true,\"LastRenovationDate\":\"2010-06-27T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-73.965403,40.760586],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"677 5th Ave\",\"City\":\"New York\",\"StateProvince\":\"NY\",\"PostalCode\":\"10022\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed (Cityside)\",\"Description_fr\":\"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)\",\"Description_fr\":\"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\"]}]}", - "x-ms-client-request-id" : "00b370b7-2152-4212-83de-34ec810c2d0a", + "x-ms-client-request-id" : "047a414d-a196-4a22-9ca0-cf7efd560193", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergedynamicdocuments663477483de3ab5807e84')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergedynamicdocuments49c9036920f2951c620c4')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "310a8f49-073e-41ef-8a98-627fb04c15a1" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f662d8ea-ccbe-4aab-aefd-b23b09202beb" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "310a8f49-073e-41ef-8a98-627fb04c15a1", - "elapsed-time" : "537", + "client-request-id" : "f662d8ea-ccbe-4aab-aefd-b23b09202beb", + "elapsed-time" : "498", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "310a8f49-073e-41ef-8a98-627fb04c15a1", + "request-id" : "f662d8ea-ccbe-4aab-aefd-b23b09202beb", "StatusCode" : "204", - "x-ms-client-request-id" : "310a8f49-073e-41ef-8a98-627fb04c15a1", - "Date" : "Fri, 02 Apr 2021 22:30:19 GMT" + "x-ms-client-request-id" : "f662d8ea-ccbe-4aab-aefd-b23b09202beb", + "Date" : "Thu, 27 May 2021 21:08:49 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanmergedynamicdocuments663477483de3ab5807e84" ] + "variables" : [ "hotelscanmergedynamicdocuments49c9036920f2951c620c4" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canMergeStaticallyTypedDocuments.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canMergeStaticallyTypedDocuments.json index d71bd973fb9e..dd03595e174f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canMergeStaticallyTypedDocuments.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canMergeStaticallyTypedDocuments.json @@ -1,187 +1,187 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergestaticallytypeddocumentsa633350741332559a')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergestaticallytypeddocuments7195019766a6ee6c3')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3465626-525a-462b-8dec-a4e902c2b056", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9f201a05-0380-4070-b17c-b7e3fc7cdce9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6496", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f3465626-525a-462b-8dec-a4e902c2b056", + "request-id" : "9f201a05-0380-4070-b17c-b7e3fc7cdce9", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:30:23 GMT", + "Date" : "Thu, 27 May 2021 21:08:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626E805C56E\"", - "client-request-id" : "f3465626-525a-462b-8dec-a4e902c2b056", - "elapsed-time" : "1090", + "ETag" : "W/\"0x8D92153A1BF634F\"", + "client-request-id" : "9f201a05-0380-4070-b17c-b7e3fc7cdce9", + "elapsed-time" : "1494", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6945", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626E805C56E\\\"\",\"name\":\"hotelscanmergestaticallytypeddocumentsa633350741332559a\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "f3465626-525a-462b-8dec-a4e902c2b056", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153A1BF634F\\\"\",\"name\":\"hotelscanmergestaticallytypeddocuments7195019766a6ee6c3\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "9f201a05-0380-4070-b17c-b7e3fc7cdce9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanmergestaticallytypeddocumentsa633350741332559a')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanmergestaticallytypeddocuments7195019766a6ee6c3')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergestaticallytypeddocumentsa633350741332559a')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergestaticallytypeddocuments7195019766a6ee6c3')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e3f224ea-7bf6-4f25-8473-c865be11ac2e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "69b2e44f-9dff-42d0-9120-cd86a9eda07b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e3f224ea-7bf6-4f25-8473-c865be11ac2e", + "request-id" : "69b2e44f-9dff-42d0-9120-cd86a9eda07b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:23 GMT", + "Date" : "Thu, 27 May 2021 21:08:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e3f224ea-7bf6-4f25-8473-c865be11ac2e", - "elapsed-time" : "110", + "client-request-id" : "69b2e44f-9dff-42d0-9120-cd86a9eda07b", + "elapsed-time" : "101", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "e3f224ea-7bf6-4f25-8473-c865be11ac2e", + "x-ms-client-request-id" : "69b2e44f-9dff-42d0-9120-cd86a9eda07b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergestaticallytypeddocumentsa633350741332559a')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergestaticallytypeddocuments7195019766a6ee6c3')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9ab534b-2043-4116-a7a6-8f4333b4e9a0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "92b93f0d-082b-46d5-bddf-19c31a8c6060", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b9ab534b-2043-4116-a7a6-8f4333b4e9a0", + "request-id" : "92b93f0d-082b-46d5-bddf-19c31a8c6060", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:23 GMT", + "Date" : "Thu, 27 May 2021 21:08:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b9ab534b-2043-4116-a7a6-8f4333b4e9a0", - "elapsed-time" : "57", + "client-request-id" : "92b93f0d-082b-46d5-bddf-19c31a8c6060", + "elapsed-time" : "65", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":200}]}", - "x-ms-client-request-id" : "b9ab534b-2043-4116-a7a6-8f4333b4e9a0", + "x-ms-client-request-id" : "92b93f0d-082b-46d5-bddf-19c31a8c6060", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergestaticallytypeddocumentsa633350741332559a')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergestaticallytypeddocuments7195019766a6ee6c3')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ee9b43e-12c7-470c-b9e5-b271a40f42ef" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "01d2a527-b946-4bbc-8516-c0df55ee035f" }, "Response" : { + "content-length" : "1299", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9ee9b43e-12c7-470c-b9e5-b271a40f42ef", + "request-id" : "01d2a527-b946-4bbc-8516-c0df55ee035f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:23 GMT", + "Date" : "Thu, 27 May 2021 21:08:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9ee9b43e-12c7-470c-b9e5-b271a40f42ef", - "elapsed-time" : "29", + "client-request-id" : "01d2a527-b946-4bbc-8516-c0df55ee035f", + "elapsed-time" : "26", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1299", "Body" : "{\"HotelId\":\"1\",\"HotelName\":\"Secret Point Motel\",\"Description\":\"The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.\",\"Description_fr\":\"L'h\\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'autres lieux d'int\\u00e9r\\u00eat qui font de New York l'une des villes les plus attractives et cosmopolites de l'Am\\u00e9rique.\",\"Category\":\"Economy\",\"Tags\":[\"pool\",\"air conditioning\"],\"ParkingIncluded\":true,\"SmokingAllowed\":true,\"LastRenovationDate\":\"2010-06-27T00:00:00Z\",\"Rating\":3,\"Location\":{\"type\":\"Point\",\"coordinates\":[-73.975403,40.760586],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"677 5th Ave\",\"City\":\"New York\",\"StateProvince\":\"NY\",\"PostalCode\":\"10022\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":null,\"Description_fr\":null,\"Type\":\"Budget Room\",\"BaseRate\":10.5,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":null,\"Tags\":[\"vcr/dvd\",\"balcony\"]}]}", - "x-ms-client-request-id" : "9ee9b43e-12c7-470c-b9e5-b271a40f42ef", + "x-ms-client-request-id" : "01d2a527-b946-4bbc-8516-c0df55ee035f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergestaticallytypeddocumentsa633350741332559a')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergestaticallytypeddocuments7195019766a6ee6c3')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "93b5b4a0-be8a-4c92-aa36-c0492a6857f2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "db086678-ccdd-4655-a957-ece9cdc041de", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "93b5b4a0-be8a-4c92-aa36-c0492a6857f2", + "request-id" : "db086678-ccdd-4655-a957-ece9cdc041de", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:23 GMT", + "Date" : "Thu, 27 May 2021 21:08:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "93b5b4a0-be8a-4c92-aa36-c0492a6857f2", - "elapsed-time" : "50", + "client-request-id" : "db086678-ccdd-4655-a957-ece9cdc041de", + "elapsed-time" : "47", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":200}]}", - "x-ms-client-request-id" : "93b5b4a0-be8a-4c92-aa36-c0492a6857f2", + "x-ms-client-request-id" : "db086678-ccdd-4655-a957-ece9cdc041de", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergestaticallytypeddocumentsa633350741332559a')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergestaticallytypeddocuments7195019766a6ee6c3')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "25b3753c-6f0e-433c-89d8-a96fa4ec9f7f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "753e68e3-03a9-4aff-bbef-1efde1a6e9d5" }, "Response" : { + "content-length" : "1667", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "25b3753c-6f0e-433c-89d8-a96fa4ec9f7f", + "request-id" : "753e68e3-03a9-4aff-bbef-1efde1a6e9d5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:23 GMT", + "Date" : "Thu, 27 May 2021 21:08:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "25b3753c-6f0e-433c-89d8-a96fa4ec9f7f", - "elapsed-time" : "31", + "client-request-id" : "753e68e3-03a9-4aff-bbef-1efde1a6e9d5", + "elapsed-time" : "16", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1667", "Body" : "{\"HotelId\":\"1\",\"HotelName\":\"Secret Point Motel\",\"Description\":\"The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.\",\"Description_fr\":\"L'h\\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'autres lieux d'int\\u00e9r\\u00eat qui font de New York l'une des villes les plus attractives et cosmopolites de l'Am\\u00e9rique.\",\"Category\":\"Boutique\",\"Tags\":[\"pool\",\"air conditioning\",\"concierge\"],\"ParkingIncluded\":false,\"SmokingAllowed\":true,\"LastRenovationDate\":\"2010-06-27T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-73.975403,40.760586],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"677 5th Ave\",\"City\":\"New York\",\"StateProvince\":\"NY\",\"PostalCode\":\"10022\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed (Cityside)\",\"Description_fr\":\"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)\",\"Description_fr\":\"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\"]}]}", - "x-ms-client-request-id" : "25b3753c-6f0e-433c-89d8-a96fa4ec9f7f", + "x-ms-client-request-id" : "753e68e3-03a9-4aff-bbef-1efde1a6e9d5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergestaticallytypeddocumentsa633350741332559a')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanmergestaticallytypeddocuments7195019766a6ee6c3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e2e48fbf-4c06-4048-979c-f5bbfe4cc69f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d01bfb1f-11c4-4d2c-9090-81a037cf0a45" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e2e48fbf-4c06-4048-979c-f5bbfe4cc69f", - "elapsed-time" : "1030", + "client-request-id" : "d01bfb1f-11c4-4d2c-9090-81a037cf0a45", + "elapsed-time" : "502", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "e2e48fbf-4c06-4048-979c-f5bbfe4cc69f", + "request-id" : "d01bfb1f-11c4-4d2c-9090-81a037cf0a45", "StatusCode" : "204", - "x-ms-client-request-id" : "e2e48fbf-4c06-4048-979c-f5bbfe4cc69f", - "Date" : "Fri, 02 Apr 2021 22:30:24 GMT" + "x-ms-client-request-id" : "d01bfb1f-11c4-4d2c-9090-81a037cf0a45", + "Date" : "Thu, 27 May 2021 21:08:53 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanmergestaticallytypeddocumentsa633350741332559a" ] + "variables" : [ "hotelscanmergestaticallytypeddocuments7195019766a6ee6c3" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canRoundtripBoundaryValues.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canRoundtripBoundaryValues.json index 3ff9389ea64b..84150d1ca903 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canRoundtripBoundaryValues.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canRoundtripBoundaryValues.json @@ -1,237 +1,237 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues0f900738197684e4db42')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues5f0996860d01c0166cf1')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cf4c2ea0-4b54-4a8c-a5df-e21209abfa97", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "216fe73c-df3d-4635-8c16-a74e85d108fb", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6493", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "cf4c2ea0-4b54-4a8c-a5df-e21209abfa97", + "request-id" : "216fe73c-df3d-4635-8c16-a74e85d108fb", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:29:59 GMT", + "Date" : "Thu, 27 May 2021 21:08:27 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626D9A12A7F\"", - "client-request-id" : "cf4c2ea0-4b54-4a8c-a5df-e21209abfa97", - "elapsed-time" : "1121", + "ETag" : "W/\"0x8D92153934A5493\"", + "client-request-id" : "216fe73c-df3d-4635-8c16-a74e85d108fb", + "elapsed-time" : "1465", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6942", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626D9A12A7F\\\"\",\"name\":\"hotelscanroundtripboundaryvalues0f900738197684e4db42\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "cf4c2ea0-4b54-4a8c-a5df-e21209abfa97", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153934A5493\\\"\",\"name\":\"hotelscanroundtripboundaryvalues5f0996860d01c0166cf1\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "216fe73c-df3d-4635-8c16-a74e85d108fb", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanroundtripboundaryvalues0f900738197684e4db42')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscanroundtripboundaryvalues5f0996860d01c0166cf1')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues0f900738197684e4db42')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues5f0996860d01c0166cf1')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd088933-898c-4c93-8a60-4e3dcde78f86", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9923e94e-07d2-4d80-a09f-ca84649f6395", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "389", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "cd088933-898c-4c93-8a60-4e3dcde78f86", + "request-id" : "9923e94e-07d2-4d80-a09f-ca84649f6395", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:59 GMT", + "Date" : "Thu, 27 May 2021 21:08:28 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "cd088933-898c-4c93-8a60-4e3dcde78f86", - "elapsed-time" : "138", + "client-request-id" : "9923e94e-07d2-4d80-a09f-ca84649f6395", + "elapsed-time" : "103", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "389", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"5\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"6\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "cd088933-898c-4c93-8a60-4e3dcde78f86", + "x-ms-client-request-id" : "9923e94e-07d2-4d80-a09f-ca84649f6395", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues0f900738197684e4db42')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues5f0996860d01c0166cf1')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a1394e50-9961-45de-9e21-4f6875c5b015" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a3647b86-7158-4987-a978-2c784f1e0da3" }, "Response" : { + "content-length" : "587", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a1394e50-9961-45de-9e21-4f6875c5b015", + "request-id" : "a3647b86-7158-4987-a978-2c784f1e0da3", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:02 GMT", + "Date" : "Thu, 27 May 2021 21:08:31 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a1394e50-9961-45de-9e21-4f6875c5b015", - "elapsed-time" : "9", + "client-request-id" : "a3647b86-7158-4987-a978-2c784f1e0da3", + "elapsed-time" : "13", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "587", "Body" : "{\"HotelId\":\"1\",\"HotelName\":null,\"Description\":null,\"Description_fr\":null,\"Category\":\"\",\"Tags\":[],\"ParkingIncluded\":false,\"SmokingAllowed\":null,\"LastRenovationDate\":\"1900-01-01T00:00:00Z\",\"Rating\":-2147483648,\"Location\":{\"type\":\"Point\",\"coordinates\":[-180.0,-90.0],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":null,\"City\":null,\"StateProvince\":null,\"PostalCode\":null,\"Country\":null},\"Rooms\":[{\"Description\":null,\"Description_fr\":null,\"Type\":null,\"BaseRate\":4.94065645841247E-324,\"BedOptions\":null,\"SleepsCount\":null,\"SmokingAllowed\":null,\"Tags\":[]}]}", - "x-ms-client-request-id" : "a1394e50-9961-45de-9e21-4f6875c5b015", + "x-ms-client-request-id" : "a3647b86-7158-4987-a978-2c784f1e0da3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues0f900738197684e4db42')//docs('2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues5f0996860d01c0166cf1')/docs('2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "97e302aa-e113-44e6-bb74-830e8362de32" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "28578ffd-cd77-4cd4-baff-3fea936e1a7d" }, "Response" : { + "content-length" : "600", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "97e302aa-e113-44e6-bb74-830e8362de32", + "request-id" : "28578ffd-cd77-4cd4-baff-3fea936e1a7d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:02 GMT", + "Date" : "Thu, 27 May 2021 21:08:31 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "97e302aa-e113-44e6-bb74-830e8362de32", + "client-request-id" : "28578ffd-cd77-4cd4-baff-3fea936e1a7d", "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "600", "Body" : "{\"HotelId\":\"2\",\"HotelName\":null,\"Description\":null,\"Description_fr\":null,\"Category\":\"test\",\"Tags\":[\"test\"],\"ParkingIncluded\":true,\"SmokingAllowed\":null,\"LastRenovationDate\":\"9999-12-31T23:59:59Z\",\"Rating\":2147483647,\"Location\":{\"type\":\"Point\",\"coordinates\":[180.0,90.0],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":null,\"City\":\"Maximum\",\"StateProvince\":null,\"PostalCode\":null,\"Country\":null},\"Rooms\":[{\"Description\":null,\"Description_fr\":null,\"Type\":null,\"BaseRate\":1.7976931348623157E+308,\"BedOptions\":null,\"SleepsCount\":null,\"SmokingAllowed\":null,\"Tags\":[]}]}", - "x-ms-client-request-id" : "97e302aa-e113-44e6-bb74-830e8362de32", + "x-ms-client-request-id" : "28578ffd-cd77-4cd4-baff-3fea936e1a7d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues0f900738197684e4db42')//docs('3')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues5f0996860d01c0166cf1')/docs('3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "93a0c066-8b90-457d-97aa-cd6d51ac331b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5cea0e6e-f20a-4fa5-8d1d-7749bf0cbb95" }, "Response" : { + "content-length" : "548", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "93a0c066-8b90-457d-97aa-cd6d51ac331b", + "request-id" : "5cea0e6e-f20a-4fa5-8d1d-7749bf0cbb95", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:02 GMT", + "Date" : "Thu, 27 May 2021 21:08:31 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "93a0c066-8b90-457d-97aa-cd6d51ac331b", + "client-request-id" : "5cea0e6e-f20a-4fa5-8d1d-7749bf0cbb95", "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "548", "Body" : "{\"HotelId\":\"3\",\"HotelName\":null,\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":{\"type\":\"Point\",\"coordinates\":[0.0,0.0],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":null,\"City\":\"Maximum\",\"StateProvince\":null,\"PostalCode\":null,\"Country\":null},\"Rooms\":[{\"Description\":null,\"Description_fr\":null,\"Type\":null,\"BaseRate\":\"-INF\",\"BedOptions\":null,\"SleepsCount\":null,\"SmokingAllowed\":null,\"Tags\":[]}]}", - "x-ms-client-request-id" : "93a0c066-8b90-457d-97aa-cd6d51ac331b", + "x-ms-client-request-id" : "5cea0e6e-f20a-4fa5-8d1d-7749bf0cbb95", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues0f900738197684e4db42')//docs('4')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues5f0996860d01c0166cf1')/docs('4')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7a6dcb07-70c3-4b61-9138-003806c52192" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d8d74f9d-15be-40a4-92c8-2463f0ecc7f2" }, "Response" : { + "content-length" : "366", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7a6dcb07-70c3-4b61-9138-003806c52192", + "request-id" : "d8d74f9d-15be-40a4-92c8-2463f0ecc7f2", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:02 GMT", + "Date" : "Thu, 27 May 2021 21:08:31 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7a6dcb07-70c3-4b61-9138-003806c52192", + "client-request-id" : "d8d74f9d-15be-40a4-92c8-2463f0ecc7f2", "elapsed-time" : "4", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "366", "Body" : "{\"HotelId\":\"4\",\"HotelName\":null,\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[{\"Description\":null,\"Description_fr\":null,\"Type\":null,\"BaseRate\":\"INF\",\"BedOptions\":null,\"SleepsCount\":null,\"SmokingAllowed\":null,\"Tags\":[]}]}", - "x-ms-client-request-id" : "7a6dcb07-70c3-4b61-9138-003806c52192", + "x-ms-client-request-id" : "d8d74f9d-15be-40a4-92c8-2463f0ecc7f2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues0f900738197684e4db42')//docs('5')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues5f0996860d01c0166cf1')/docs('5')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b7b1cca-4d1a-4411-8eb8-f6368b294912" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ed325499-c5b1-47ca-bcd8-66bf4b370ef1" }, "Response" : { + "content-length" : "366", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5b7b1cca-4d1a-4411-8eb8-f6368b294912", + "request-id" : "ed325499-c5b1-47ca-bcd8-66bf4b370ef1", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:02 GMT", + "Date" : "Thu, 27 May 2021 21:08:31 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5b7b1cca-4d1a-4411-8eb8-f6368b294912", - "elapsed-time" : "10", + "client-request-id" : "ed325499-c5b1-47ca-bcd8-66bf4b370ef1", + "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "366", "Body" : "{\"HotelId\":\"5\",\"HotelName\":null,\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[{\"Description\":null,\"Description_fr\":null,\"Type\":null,\"BaseRate\":\"NaN\",\"BedOptions\":null,\"SleepsCount\":null,\"SmokingAllowed\":null,\"Tags\":[]}]}", - "x-ms-client-request-id" : "5b7b1cca-4d1a-4411-8eb8-f6368b294912", + "x-ms-client-request-id" : "ed325499-c5b1-47ca-bcd8-66bf4b370ef1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues0f900738197684e4db42')//docs('6')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues5f0996860d01c0166cf1')/docs('6')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5bc316a3-52ac-4084-b2cb-43d831cb7c41" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "02f33aa1-cd07-45d1-88a3-69d2e8c1f5af" }, "Response" : { + "content-length" : "226", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5bc316a3-52ac-4084-b2cb-43d831cb7c41", + "request-id" : "02f33aa1-cd07-45d1-88a3-69d2e8c1f5af", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:02 GMT", + "Date" : "Thu, 27 May 2021 21:08:31 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5bc316a3-52ac-4084-b2cb-43d831cb7c41", + "client-request-id" : "02f33aa1-cd07-45d1-88a3-69d2e8c1f5af", "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "226", "Body" : "{\"HotelId\":\"6\",\"HotelName\":null,\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}", - "x-ms-client-request-id" : "5bc316a3-52ac-4084-b2cb-43d831cb7c41", + "x-ms-client-request-id" : "02f33aa1-cd07-45d1-88a3-69d2e8c1f5af", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues0f900738197684e4db42')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscanroundtripboundaryvalues5f0996860d01c0166cf1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "76504b77-e25f-4121-b2c1-8e0967260787" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1ec65c5d-9726-4878-810b-cae22a805f1e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "76504b77-e25f-4121-b2c1-8e0967260787", - "elapsed-time" : "530", + "client-request-id" : "1ec65c5d-9726-4878-810b-cae22a805f1e", + "elapsed-time" : "533", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "76504b77-e25f-4121-b2c1-8e0967260787", + "request-id" : "1ec65c5d-9726-4878-810b-cae22a805f1e", "StatusCode" : "204", - "x-ms-client-request-id" : "76504b77-e25f-4121-b2c1-8e0967260787", - "Date" : "Fri, 02 Apr 2021 22:30:02 GMT" + "x-ms-client-request-id" : "1ec65c5d-9726-4878-810b-cae22a805f1e", + "Date" : "Thu, 27 May 2021 21:08:31 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscanroundtripboundaryvalues0f900738197684e4db42" ] + "variables" : [ "hotelscanroundtripboundaryvalues5f0996860d01c0166cf1" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canSetExplicitNullsInStaticallyTypedDocument.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canSetExplicitNullsInStaticallyTypedDocument.json index 4a35162e33be..cd2b28946883 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canSetExplicitNullsInStaticallyTypedDocument.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canSetExplicitNullsInStaticallyTypedDocument.json @@ -1,187 +1,187 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansetexplicitnullsinstaticallytypeddocument25d20020649')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansetexplicitnullsinstaticallytypeddocumentced218304f8')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1bf78f2c-aef9-4cb6-9770-27c3f385ce9a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6030eb52-e446-4d48-957a-58835da363b1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6502", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1bf78f2c-aef9-4cb6-9770-27c3f385ce9a", + "request-id" : "6030eb52-e446-4d48-957a-58835da363b1", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:28:53 GMT", + "Date" : "Thu, 27 May 2021 21:07:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626B2F27E3D\"", - "client-request-id" : "1bf78f2c-aef9-4cb6-9770-27c3f385ce9a", - "elapsed-time" : "1115", + "ETag" : "W/\"0x8D921536BB626ED\"", + "client-request-id" : "6030eb52-e446-4d48-957a-58835da363b1", + "elapsed-time" : "1451", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6951", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626B2F27E3D\\\"\",\"name\":\"hotelscansetexplicitnullsinstaticallytypeddocument25d20020649\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "1bf78f2c-aef9-4cb6-9770-27c3f385ce9a", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921536BB626ED\\\"\",\"name\":\"hotelscansetexplicitnullsinstaticallytypeddocumentced218304f8\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "6030eb52-e446-4d48-957a-58835da363b1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscansetexplicitnullsinstaticallytypeddocument25d20020649')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscansetexplicitnullsinstaticallytypeddocumentced218304f8')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansetexplicitnullsinstaticallytypeddocument25d20020649')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansetexplicitnullsinstaticallytypeddocumentced218304f8')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a8c20ee6-9403-43c5-a663-3287dfe9fb87", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "10a08c7e-9407-42b8-bcbf-293b9b7f10da", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a8c20ee6-9403-43c5-a663-3287dfe9fb87", + "request-id" : "10a08c7e-9407-42b8-bcbf-293b9b7f10da", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:53 GMT", + "Date" : "Thu, 27 May 2021 21:07:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a8c20ee6-9403-43c5-a663-3287dfe9fb87", - "elapsed-time" : "169", + "client-request-id" : "10a08c7e-9407-42b8-bcbf-293b9b7f10da", + "elapsed-time" : "131", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "a8c20ee6-9403-43c5-a663-3287dfe9fb87", + "x-ms-client-request-id" : "10a08c7e-9407-42b8-bcbf-293b9b7f10da", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansetexplicitnullsinstaticallytypeddocument25d20020649')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansetexplicitnullsinstaticallytypeddocumentced218304f8')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5575f4a8-f359-4c0a-a450-f5f86b606670", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0ee8a432-6cb4-4d7f-8dc8-db70a5f339ce", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5575f4a8-f359-4c0a-a450-f5f86b606670", + "request-id" : "0ee8a432-6cb4-4d7f-8dc8-db70a5f339ce", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:57 GMT", + "Date" : "Thu, 27 May 2021 21:07:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5575f4a8-f359-4c0a-a450-f5f86b606670", - "elapsed-time" : "46", + "client-request-id" : "0ee8a432-6cb4-4d7f-8dc8-db70a5f339ce", + "elapsed-time" : "41", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":200}]}", - "x-ms-client-request-id" : "5575f4a8-f359-4c0a-a450-f5f86b606670", + "x-ms-client-request-id" : "0ee8a432-6cb4-4d7f-8dc8-db70a5f339ce", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansetexplicitnullsinstaticallytypeddocument25d20020649')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansetexplicitnullsinstaticallytypeddocumentced218304f8')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f4c42303-d49e-4bda-acf4-e12ca1eac15c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "960e7740-df22-40a2-bd59-81d21229d50e" }, "Response" : { + "content-length" : "1296", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f4c42303-d49e-4bda-acf4-e12ca1eac15c", + "request-id" : "960e7740-df22-40a2-bd59-81d21229d50e", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:59 GMT", + "Date" : "Thu, 27 May 2021 21:07:28 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f4c42303-d49e-4bda-acf4-e12ca1eac15c", + "client-request-id" : "960e7740-df22-40a2-bd59-81d21229d50e", "elapsed-time" : "15", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1296", "Body" : "{\"HotelId\":\"1\",\"HotelName\":\"Secret Point Motel\",\"Description\":\"The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.\",\"Description_fr\":\"L'h\\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'autres lieux d'int\\u00e9r\\u00eat qui font de New York l'une des villes les plus attractives et cosmopolites de l'Am\\u00e9rique.\",\"Category\":\"Boutique\",\"Tags\":[\"pool\",\"air conditioning\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"1970-01-18T05:00:00Z\",\"Rating\":3,\"Location\":{\"type\":\"Point\",\"coordinates\":[-73.975403,40.760586],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"677 5th Ave\",\"City\":\"New York\",\"StateProvince\":\"NY\",\"PostalCode\":\"10022\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":null,\"Description_fr\":null,\"Type\":\"Budget Room\",\"BaseRate\":10.5,\"BedOptions\":null,\"SleepsCount\":null,\"SmokingAllowed\":false,\"Tags\":[\"vcr/dvd\",\"balcony\"]}]}", - "x-ms-client-request-id" : "f4c42303-d49e-4bda-acf4-e12ca1eac15c", + "x-ms-client-request-id" : "960e7740-df22-40a2-bd59-81d21229d50e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansetexplicitnullsinstaticallytypeddocument25d20020649')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansetexplicitnullsinstaticallytypeddocumentced218304f8')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1013d52c-e2b0-4799-9648-852abff434a9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8b42d0d1-c471-473a-a012-6605a06f0487", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1013d52c-e2b0-4799-9648-852abff434a9", + "request-id" : "8b42d0d1-c471-473a-a012-6605a06f0487", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:00 GMT", + "Date" : "Thu, 27 May 2021 21:07:28 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1013d52c-e2b0-4799-9648-852abff434a9", - "elapsed-time" : "39", + "client-request-id" : "8b42d0d1-c471-473a-a012-6605a06f0487", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":200}]}", - "x-ms-client-request-id" : "1013d52c-e2b0-4799-9648-852abff434a9", + "x-ms-client-request-id" : "8b42d0d1-c471-473a-a012-6605a06f0487", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansetexplicitnullsinstaticallytypeddocument25d20020649')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansetexplicitnullsinstaticallytypeddocumentced218304f8')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0f7d9b6-e791-49d4-89ca-932b0bd3279b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5398784c-6a91-44a4-9d96-fabd3d49d5de" }, "Response" : { + "content-length" : "1668", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d0f7d9b6-e791-49d4-89ca-932b0bd3279b", + "request-id" : "5398784c-6a91-44a4-9d96-fabd3d49d5de", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:03 GMT", + "Date" : "Thu, 27 May 2021 21:07:31 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d0f7d9b6-e791-49d4-89ca-932b0bd3279b", - "elapsed-time" : "7", + "client-request-id" : "5398784c-6a91-44a4-9d96-fabd3d49d5de", + "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1668", "Body" : "{\"HotelId\":\"1\",\"HotelName\":\"Secret Point Motel\",\"Description\":\"The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.\",\"Description_fr\":\"L'h\\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'autres lieux d'int\\u00e9r\\u00eat qui font de New York l'une des villes les plus attractives et cosmopolites de l'Am\\u00e9rique.\",\"Category\":\"Boutique\",\"Tags\":[\"pool\",\"air conditioning\",\"concierge\"],\"ParkingIncluded\":false,\"SmokingAllowed\":false,\"LastRenovationDate\":\"1970-01-18T05:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-73.975403,40.760586],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"677 5th Ave\",\"City\":\"New York\",\"StateProvince\":\"NY\",\"PostalCode\":\"10022\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed (Cityside)\",\"Description_fr\":\"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)\",\"Description_fr\":\"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\"]}]}", - "x-ms-client-request-id" : "d0f7d9b6-e791-49d4-89ca-932b0bd3279b", + "x-ms-client-request-id" : "5398784c-6a91-44a4-9d96-fabd3d49d5de", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansetexplicitnullsinstaticallytypeddocument25d20020649')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansetexplicitnullsinstaticallytypeddocumentced218304f8')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "703104b1-aae6-4372-a1aa-989eaa486bae" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b71e4320-e722-4ea3-bd2d-2469ff332e9a" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "703104b1-aae6-4372-a1aa-989eaa486bae", - "elapsed-time" : "536", + "client-request-id" : "b71e4320-e722-4ea3-bd2d-2469ff332e9a", + "elapsed-time" : "548", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "703104b1-aae6-4372-a1aa-989eaa486bae", + "request-id" : "b71e4320-e722-4ea3-bd2d-2469ff332e9a", "StatusCode" : "204", - "x-ms-client-request-id" : "703104b1-aae6-4372-a1aa-989eaa486bae", - "Date" : "Fri, 02 Apr 2021 22:29:03 GMT" + "x-ms-client-request-id" : "b71e4320-e722-4ea3-bd2d-2469ff332e9a", + "Date" : "Thu, 27 May 2021 21:07:31 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscansetexplicitnullsinstaticallytypeddocument25d20020649" ] + "variables" : [ "hotelscansetexplicitnullsinstaticallytypeddocumentced218304f8" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canUseIndexWithReservedName.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canUseIndexWithReservedName.json index 433a4592591a..1a0f3ed56648 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canUseIndexWithReservedName.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.canUseIndexWithReservedName.json @@ -1,105 +1,105 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('prototype')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('prototype')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "541e4402-b6af-4661-9af5-412d9433568f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f4cab448-ed77-404b-965f-72be52da5b43", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "625", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "541e4402-b6af-4661-9af5-412d9433568f", + "request-id" : "f4cab448-ed77-404b-965f-72be52da5b43", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:29:18 GMT", + "Date" : "Thu, 27 May 2021 21:07:46 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626C17EF381\"", - "client-request-id" : "541e4402-b6af-4661-9af5-412d9433568f", - "elapsed-time" : "1120", + "ETag" : "W/\"0x8D921537A404875\"", + "client-request-id" : "f4cab448-ed77-404b-965f-72be52da5b43", + "elapsed-time" : "1469", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "660", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626C17EF381\\\"\",\"name\":\"prototype\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"ID\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "541e4402-b6af-4661-9af5-412d9433568f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921537A404875\\\"\",\"name\":\"prototype\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"ID\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "f4cab448-ed77-404b-965f-72be52da5b43", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('prototype')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('prototype')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('prototype')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('prototype')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "90747705-abab-4701-b977-6ea53d85dbc5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2bcd219a-1231-4cb0-b6cf-58aa01ed047b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "90747705-abab-4701-b977-6ea53d85dbc5", + "request-id" : "2bcd219a-1231-4cb0-b6cf-58aa01ed047b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:18 GMT", + "Date" : "Thu, 27 May 2021 21:07:46 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "90747705-abab-4701-b977-6ea53d85dbc5", - "elapsed-time" : "100", + "client-request-id" : "2bcd219a-1231-4cb0-b6cf-58aa01ed047b", + "elapsed-time" : "92", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "90747705-abab-4701-b977-6ea53d85dbc5", + "x-ms-client-request-id" : "2bcd219a-1231-4cb0-b6cf-58aa01ed047b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('prototype')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('prototype')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab4ada75-f685-45d3-89be-e5ea5788d97f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7ab819a3-a72c-4593-9347-c0a89b19a8e8" }, "Response" : { + "content-length" : "10", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ab4ada75-f685-45d3-89be-e5ea5788d97f", + "request-id" : "7ab819a3-a72c-4593-9347-c0a89b19a8e8", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:18 GMT", + "Date" : "Thu, 27 May 2021 21:07:46 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ab4ada75-f685-45d3-89be-e5ea5788d97f", - "elapsed-time" : "17", + "client-request-id" : "7ab819a3-a72c-4593-9347-c0a89b19a8e8", + "elapsed-time" : "19", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "10", "Body" : "{\"ID\":\"1\"}", - "x-ms-client-request-id" : "ab4ada75-f685-45d3-89be-e5ea5788d97f", + "x-ms-client-request-id" : "7ab819a3-a72c-4593-9347-c0a89b19a8e8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('prototype')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('prototype')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "929dc128-928c-4fd3-b433-565586a6e858" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "991d4b76-8d88-4859-bd6b-fb0f80baca9a" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "929dc128-928c-4fd3-b433-565586a6e858", - "elapsed-time" : "1338", + "client-request-id" : "991d4b76-8d88-4859-bd6b-fb0f80baca9a", + "elapsed-time" : "498", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "929dc128-928c-4fd3-b433-565586a6e858", + "request-id" : "991d4b76-8d88-4859-bd6b-fb0f80baca9a", "StatusCode" : "204", - "x-ms-client-request-id" : "929dc128-928c-4fd3-b433-565586a6e858", - "Date" : "Fri, 02 Apr 2021 22:29:20 GMT" + "x-ms-client-request-id" : "991d4b76-8d88-4859-bd6b-fb0f80baca9a", + "Date" : "Thu, 27 May 2021 21:07:46 GMT" }, "Exception" : null } ], diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.countingDocsOfNewIndexGivesZero.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.countingDocsOfNewIndexGivesZero.json index fbccf22f5206..98cd4ee66e50 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.countingDocsOfNewIndexGivesZero.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.countingDocsOfNewIndexGivesZero.json @@ -1,80 +1,80 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscountingdocsofnewindexgiveszero16391328c986dfef0')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscountingdocsofnewindexgiveszero2e802381788e252ee')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "76a581c9-658b-4bad-aa91-a9d2b44238a3", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "475ee8ba-3ffd-4af8-b06e-3c21b7c691d0", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6495", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "76a581c9-658b-4bad-aa91-a9d2b44238a3", + "request-id" : "475ee8ba-3ffd-4af8-b06e-3c21b7c691d0", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:28:43 GMT", + "Date" : "Thu, 27 May 2021 21:07:11 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626AC9AC4D2\"", - "client-request-id" : "76a581c9-658b-4bad-aa91-a9d2b44238a3", - "elapsed-time" : "1091", + "ETag" : "W/\"0x8D9215365662A41\"", + "client-request-id" : "475ee8ba-3ffd-4af8-b06e-3c21b7c691d0", + "elapsed-time" : "1451", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6944", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626AC9AC4D2\\\"\",\"name\":\"hotelscountingdocsofnewindexgiveszero16391328c986dfef0\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "76a581c9-658b-4bad-aa91-a9d2b44238a3", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215365662A41\\\"\",\"name\":\"hotelscountingdocsofnewindexgiveszero2e802381788e252ee\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "475ee8ba-3ffd-4af8-b06e-3c21b7c691d0", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscountingdocsofnewindexgiveszero16391328c986dfef0')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscountingdocsofnewindexgiveszero2e802381788e252ee')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscountingdocsofnewindexgiveszero16391328c986dfef0')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscountingdocsofnewindexgiveszero2e802381788e252ee')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a227958-969f-405d-85aa-9e44f1fe26f5" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7f7c219b-cd0f-44a7-8235-1b306a2daca3" }, "Response" : { + "content-length" : "4", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0a227958-969f-405d-85aa-9e44f1fe26f5", + "request-id" : "7f7c219b-cd0f-44a7-8235-1b306a2daca3", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:28:43 GMT", + "Date" : "Thu, 27 May 2021 21:07:11 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0a227958-969f-405d-85aa-9e44f1fe26f5", - "elapsed-time" : "78", + "client-request-id" : "7f7c219b-cd0f-44a7-8235-1b306a2daca3", + "elapsed-time" : "119", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "4", "Body" : "0", - "x-ms-client-request-id" : "0a227958-969f-405d-85aa-9e44f1fe26f5", + "x-ms-client-request-id" : "7f7c219b-cd0f-44a7-8235-1b306a2daca3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "text/plain" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscountingdocsofnewindexgiveszero16391328c986dfef0')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscountingdocsofnewindexgiveszero2e802381788e252ee')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "dce08dd6-55e2-41b6-b86c-a99addadd302" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a02340e4-aeb4-454c-8d07-4f96fdaa5f47" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "dce08dd6-55e2-41b6-b86c-a99addadd302", - "elapsed-time" : "1355", + "client-request-id" : "a02340e4-aeb4-454c-8d07-4f96fdaa5f47", + "elapsed-time" : "520", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "dce08dd6-55e2-41b6-b86c-a99addadd302", + "request-id" : "a02340e4-aeb4-454c-8d07-4f96fdaa5f47", "StatusCode" : "204", - "x-ms-client-request-id" : "dce08dd6-55e2-41b6-b86c-a99addadd302", - "Date" : "Fri, 02 Apr 2021 22:28:44 GMT" + "x-ms-client-request-id" : "a02340e4-aeb4-454c-8d07-4f96fdaa5f47", + "Date" : "Thu, 27 May 2021 21:07:11 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscountingdocsofnewindexgiveszero16391328c986dfef0" ] + "variables" : [ "hotelscountingdocsofnewindexgiveszero2e802381788e252ee" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.dynamicDocumentDateTimesRoundTripAsUtc.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.dynamicDocumentDateTimesRoundTripAsUtc.json index 768549c0b43d..baf88fbb80db 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.dynamicDocumentDateTimesRoundTripAsUtc.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.dynamicDocumentDateTimesRoundTripAsUtc.json @@ -1,133 +1,133 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('booksdynamicdocumentdatetimesroundtripasutcc7550034912b51')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('booksdynamicdocumentdatetimesroundtripasutcfe1073613e7cb8')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0adf538c-9e1b-4f3c-a3d9-54067fe5c2d8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f347e62f-5453-42c2-b1dd-c8c96addafca", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1679", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0adf538c-9e1b-4f3c-a3d9-54067fe5c2d8", + "request-id" : "f347e62f-5453-42c2-b1dd-c8c96addafca", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:29:53 GMT", + "Date" : "Thu, 27 May 2021 21:08:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626D6AC6CEF\"", - "client-request-id" : "0adf538c-9e1b-4f3c-a3d9-54067fe5c2d8", - "elapsed-time" : "1094", + "ETag" : "W/\"0x8D921539023061D\"", + "client-request-id" : "f347e62f-5453-42c2-b1dd-c8c96addafca", + "elapsed-time" : "2086", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1786", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626D6AC6CEF\\\"\",\"name\":\"booksdynamicdocumentdatetimesroundtripasutcc7550034912b51\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"ISBN\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Title\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Author\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"FirstName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"PublishDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Title\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "0adf538c-9e1b-4f3c-a3d9-54067fe5c2d8", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921539023061D\\\"\",\"name\":\"booksdynamicdocumentdatetimesroundtripasutcfe1073613e7cb8\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"ISBN\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Title\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Author\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"FirstName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}]},{\"name\":\"PublishDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"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\":[\"Title\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "f347e62f-5453-42c2-b1dd-c8c96addafca", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('booksdynamicdocumentdatetimesroundtripasutcc7550034912b51')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('booksdynamicdocumentdatetimesroundtripasutcfe1073613e7cb8')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('booksdynamicdocumentdatetimesroundtripasutcc7550034912b51')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('booksdynamicdocumentdatetimesroundtripasutcfe1073613e7cb8')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4c716d32-dc17-4121-ad43-bd9f57e473eb", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5ab6202c-c8f6-4c20-ae5a-a25bd95545e6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "137", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4c716d32-dc17-4121-ad43-bd9f57e473eb", + "request-id" : "5ab6202c-c8f6-4c20-ae5a-a25bd95545e6", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:53 GMT", + "Date" : "Thu, 27 May 2021 21:08:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4c716d32-dc17-4121-ad43-bd9f57e473eb", - "elapsed-time" : "104", + "client-request-id" : "5ab6202c-c8f6-4c20-ae5a-a25bd95545e6", + "elapsed-time" : "158", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "137", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "4c716d32-dc17-4121-ad43-bd9f57e473eb", + "x-ms-client-request-id" : "5ab6202c-c8f6-4c20-ae5a-a25bd95545e6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('booksdynamicdocumentdatetimesroundtripasutcc7550034912b51')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('booksdynamicdocumentdatetimesroundtripasutcfe1073613e7cb8')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f75d2b84-eb3b-4153-9709-17a37b343308" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "cf0e8582-e83f-41c5-bf15-29eed72af064" }, "Response" : { + "content-length" : "76", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f75d2b84-eb3b-4153-9709-17a37b343308", + "request-id" : "cf0e8582-e83f-41c5-bf15-29eed72af064", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:57 GMT", + "Date" : "Thu, 27 May 2021 21:08:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f75d2b84-eb3b-4153-9709-17a37b343308", + "client-request-id" : "cf0e8582-e83f-41c5-bf15-29eed72af064", "elapsed-time" : "8", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "76", "Body" : "{\"ISBN\":\"1\",\"Title\":null,\"PublishDate\":\"2010-01-01T00:00:00Z\",\"Author\":null}", - "x-ms-client-request-id" : "f75d2b84-eb3b-4153-9709-17a37b343308", + "x-ms-client-request-id" : "cf0e8582-e83f-41c5-bf15-29eed72af064", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('booksdynamicdocumentdatetimesroundtripasutcc7550034912b51')//docs('2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('booksdynamicdocumentdatetimesroundtripasutcfe1073613e7cb8')/docs('2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d95f0de-0005-4c10-ada1-95dd22f4d4a2" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c4f88b8a-18a1-430f-9944-0f627c1f433c" }, "Response" : { + "content-length" : "76", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5d95f0de-0005-4c10-ada1-95dd22f4d4a2", + "request-id" : "c4f88b8a-18a1-430f-9944-0f627c1f433c", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:57 GMT", + "Date" : "Thu, 27 May 2021 21:08:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5d95f0de-0005-4c10-ada1-95dd22f4d4a2", - "elapsed-time" : "8", + "client-request-id" : "c4f88b8a-18a1-430f-9944-0f627c1f433c", + "elapsed-time" : "4", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "76", "Body" : "{\"ISBN\":\"2\",\"Title\":null,\"PublishDate\":\"2010-01-01T08:00:00Z\",\"Author\":null}", - "x-ms-client-request-id" : "5d95f0de-0005-4c10-ada1-95dd22f4d4a2", + "x-ms-client-request-id" : "c4f88b8a-18a1-430f-9944-0f627c1f433c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('booksdynamicdocumentdatetimesroundtripasutcc7550034912b51')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('booksdynamicdocumentdatetimesroundtripasutcfe1073613e7cb8')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6692adec-6365-4aa1-9808-68218999e666" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fd8b33da-ffa4-4770-8cac-cdfc5579c866" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6692adec-6365-4aa1-9808-68218999e666", - "elapsed-time" : "522", + "client-request-id" : "fd8b33da-ffa4-4770-8cac-cdfc5579c866", + "elapsed-time" : "498", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "6692adec-6365-4aa1-9808-68218999e666", + "request-id" : "fd8b33da-ffa4-4770-8cac-cdfc5579c866", "StatusCode" : "204", - "x-ms-client-request-id" : "6692adec-6365-4aa1-9808-68218999e666", - "Date" : "Fri, 02 Apr 2021 22:29:57 GMT" + "x-ms-client-request-id" : "fd8b33da-ffa4-4770-8cac-cdfc5579c866", + "Date" : "Thu, 27 May 2021 21:08:26 GMT" }, "Exception" : null } ], - "variables" : [ "booksdynamicdocumentdatetimesroundtripasutcc7550034912b51" ] + "variables" : [ "booksdynamicdocumentdatetimesroundtripasutcfe1073613e7cb8" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.indexDoesNotThrowWhenAllActionsSucceed.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.indexDoesNotThrowWhenAllActionsSucceed.json index 2116ff435614..51e1524113d7 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.indexDoesNotThrowWhenAllActionsSucceed.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.indexDoesNotThrowWhenAllActionsSucceed.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexdoesnotthrowwhenallactionssucceedf839450746e8fd')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexdoesnotthrowwhenallactionssucceedcbe671359f22dc')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "93a9a562-71c8-41c2-b88c-8f02dca3a1cf", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5b9c239f-5237-4c1f-a432-115349c5603f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6499", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "93a9a562-71c8-41c2-b88c-8f02dca3a1cf", + "request-id" : "5b9c239f-5237-4c1f-a432-115349c5603f", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:29:48 GMT", + "Date" : "Thu, 27 May 2021 21:08:17 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626D3BC440A\"", - "client-request-id" : "93a9a562-71c8-41c2-b88c-8f02dca3a1cf", - "elapsed-time" : "1140", + "ETag" : "W/\"0x8D921538CA23CC1\"", + "client-request-id" : "5b9c239f-5237-4c1f-a432-115349c5603f", + "elapsed-time" : "1536", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6948", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626D3BC440A\\\"\",\"name\":\"hotelsindexdoesnotthrowwhenallactionssucceedf839450746e8fd\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "93a9a562-71c8-41c2-b88c-8f02dca3a1cf", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921538CA23CC1\\\"\",\"name\":\"hotelsindexdoesnotthrowwhenallactionssucceedcbe671359f22dc\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "5b9c239f-5237-4c1f-a432-115349c5603f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsindexdoesnotthrowwhenallactionssucceedf839450746e8fd')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsindexdoesnotthrowwhenallactionssucceedcbe671359f22dc')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexdoesnotthrowwhenallactionssucceedf839450746e8fd')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexdoesnotthrowwhenallactionssucceedcbe671359f22dc')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d135983d-2a57-4e92-acb8-cd188a4166bc", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e9a70977-e970-46de-8a65-6180e21fcf0b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d135983d-2a57-4e92-acb8-cd188a4166bc", + "request-id" : "e9a70977-e970-46de-8a65-6180e21fcf0b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:49 GMT", + "Date" : "Thu, 27 May 2021 21:08:17 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d135983d-2a57-4e92-acb8-cd188a4166bc", - "elapsed-time" : "143", + "client-request-id" : "e9a70977-e970-46de-8a65-6180e21fcf0b", + "elapsed-time" : "104", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "d135983d-2a57-4e92-acb8-cd188a4166bc", + "x-ms-client-request-id" : "e9a70977-e970-46de-8a65-6180e21fcf0b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexdoesnotthrowwhenallactionssucceedf839450746e8fd')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexdoesnotthrowwhenallactionssucceedcbe671359f22dc')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f9020619-afd7-4388-8558-a9191137b30c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fb7b1d77-388d-490a-86a4-10359727685e" }, "Response" : { + "content-length" : "4", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f9020619-afd7-4388-8558-a9191137b30c", + "request-id" : "fb7b1d77-388d-490a-86a4-10359727685e", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:52 GMT", + "Date" : "Thu, 27 May 2021 21:08:20 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f9020619-afd7-4388-8558-a9191137b30c", + "client-request-id" : "fb7b1d77-388d-490a-86a4-10359727685e", "elapsed-time" : "4", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "4", "Body" : "1", - "x-ms-client-request-id" : "f9020619-afd7-4388-8558-a9191137b30c", + "x-ms-client-request-id" : "fb7b1d77-388d-490a-86a4-10359727685e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "text/plain" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexdoesnotthrowwhenallactionssucceedf839450746e8fd')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexdoesnotthrowwhenallactionssucceedcbe671359f22dc')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "61efa95e-080e-4331-a7dc-b3a317369c72" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "551769e7-0b89-482f-9e68-8f41ff75bfea" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "61efa95e-080e-4331-a7dc-b3a317369c72", - "elapsed-time" : "548", + "client-request-id" : "551769e7-0b89-482f-9e68-8f41ff75bfea", + "elapsed-time" : "541", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "61efa95e-080e-4331-a7dc-b3a317369c72", + "request-id" : "551769e7-0b89-482f-9e68-8f41ff75bfea", "StatusCode" : "204", - "x-ms-client-request-id" : "61efa95e-080e-4331-a7dc-b3a317369c72", - "Date" : "Fri, 02 Apr 2021 22:29:52 GMT" + "x-ms-client-request-id" : "551769e7-0b89-482f-9e68-8f41ff75bfea", + "Date" : "Thu, 27 May 2021 21:08:20 GMT" }, "Exception" : null } ], - "variables" : [ "hotelsindexdoesnotthrowwhenallactionssucceedf839450746e8fd" ] + "variables" : [ "hotelsindexdoesnotthrowwhenallactionssucceedcbe671359f22dc" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.indexDoesNotThrowWhenDeletingDocumentWithExtraFields.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.indexDoesNotThrowWhenDeletingDocumentWithExtraFields.json index 492f810bfcf4..4624393059ec 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.indexDoesNotThrowWhenDeletingDocumentWithExtraFields.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.indexDoesNotThrowWhenDeletingDocumentWithExtraFields.json @@ -1,160 +1,160 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels95724600fa6e4ff224911bea423740b')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels936850eb0c660520a448499b34da8b5')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f18e1fc9-ecb7-479f-9bae-e1f120e903e5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4ba3571d-f8b7-4334-a4cc-760fdd98a8cb", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6478", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f18e1fc9-ecb7-479f-9bae-e1f120e903e5", + "request-id" : "4ba3571d-f8b7-4334-a4cc-760fdd98a8cb", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:29:41 GMT", + "Date" : "Thu, 27 May 2021 21:08:08 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626CEF422AB\"", - "client-request-id" : "f18e1fc9-ecb7-479f-9bae-e1f120e903e5", - "elapsed-time" : "1096", + "ETag" : "W/\"0x8D92153878DDF85\"", + "client-request-id" : "4ba3571d-f8b7-4334-a4cc-760fdd98a8cb", + "elapsed-time" : "1493", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6927", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626CEF422AB\\\"\",\"name\":\"hotels95724600fa6e4ff224911bea423740b\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "f18e1fc9-ecb7-479f-9bae-e1f120e903e5", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153878DDF85\\\"\",\"name\":\"hotels936850eb0c660520a448499b34da8b5\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "4ba3571d-f8b7-4334-a4cc-760fdd98a8cb", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels95724600fa6e4ff224911bea423740b')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels936850eb0c660520a448499b34da8b5')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels95724600fa6e4ff224911bea423740b')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels936850eb0c660520a448499b34da8b5')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a64d1c5-daf1-4782-9ca9-f5a775c05ad3", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "628129c8-873f-42d6-ac9a-12850703593d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3a64d1c5-daf1-4782-9ca9-f5a775c05ad3", + "request-id" : "628129c8-873f-42d6-ac9a-12850703593d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:41 GMT", + "Date" : "Thu, 27 May 2021 21:08:08 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3a64d1c5-daf1-4782-9ca9-f5a775c05ad3", - "elapsed-time" : "104", + "client-request-id" : "628129c8-873f-42d6-ac9a-12850703593d", + "elapsed-time" : "105", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "3a64d1c5-daf1-4782-9ca9-f5a775c05ad3", + "x-ms-client-request-id" : "628129c8-873f-42d6-ac9a-12850703593d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels95724600fa6e4ff224911bea423740b')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels936850eb0c660520a448499b34da8b5')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "033788d7-be3d-48ed-99dc-16ed0cd8ed52" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bf2656f9-60d8-4a02-9d51-f4a4d85f1eee" }, "Response" : { + "content-length" : "4", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "033788d7-be3d-48ed-99dc-16ed0cd8ed52", + "request-id" : "bf2656f9-60d8-4a02-9d51-f4a4d85f1eee", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:44 GMT", + "Date" : "Thu, 27 May 2021 21:08:12 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "033788d7-be3d-48ed-99dc-16ed0cd8ed52", - "elapsed-time" : "7", + "client-request-id" : "bf2656f9-60d8-4a02-9d51-f4a4d85f1eee", + "elapsed-time" : "4", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "4", "Body" : "1", - "x-ms-client-request-id" : "033788d7-be3d-48ed-99dc-16ed0cd8ed52", + "x-ms-client-request-id" : "bf2656f9-60d8-4a02-9d51-f4a4d85f1eee", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "text/plain" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels95724600fa6e4ff224911bea423740b')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels936850eb0c660520a448499b34da8b5')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6919feab-4d3b-4177-8c83-397c2d34d642", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c5cc7de9-4f90-41f8-9fef-fceb4e5acc01", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6919feab-4d3b-4177-8c83-397c2d34d642", + "request-id" : "c5cc7de9-4f90-41f8-9fef-fceb4e5acc01", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:44 GMT", + "Date" : "Thu, 27 May 2021 21:08:12 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6919feab-4d3b-4177-8c83-397c2d34d642", - "elapsed-time" : "44", + "client-request-id" : "c5cc7de9-4f90-41f8-9fef-fceb4e5acc01", + "elapsed-time" : "81", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":200}]}", - "x-ms-client-request-id" : "6919feab-4d3b-4177-8c83-397c2d34d642", + "x-ms-client-request-id" : "c5cc7de9-4f90-41f8-9fef-fceb4e5acc01", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels95724600fa6e4ff224911bea423740b')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels936850eb0c660520a448499b34da8b5')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "be453f28-2489-4f49-bec7-b14f28938e1b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c29c60f4-1880-4505-8135-3127f478609a" }, "Response" : { + "content-length" : "4", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "be453f28-2489-4f49-bec7-b14f28938e1b", + "request-id" : "c29c60f4-1880-4505-8135-3127f478609a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:47 GMT", + "Date" : "Thu, 27 May 2021 21:08:15 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "be453f28-2489-4f49-bec7-b14f28938e1b", - "elapsed-time" : "10", + "client-request-id" : "c29c60f4-1880-4505-8135-3127f478609a", + "elapsed-time" : "3", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "4", "Body" : "0", - "x-ms-client-request-id" : "be453f28-2489-4f49-bec7-b14f28938e1b", + "x-ms-client-request-id" : "c29c60f4-1880-4505-8135-3127f478609a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "text/plain" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels95724600fa6e4ff224911bea423740b')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels936850eb0c660520a448499b34da8b5')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "627616a7-9e78-47eb-80dd-55ad14e4fedb" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "270fcc49-ea66-4b4f-aea1-f6668a7ba2e4" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "627616a7-9e78-47eb-80dd-55ad14e4fedb", - "elapsed-time" : "552", + "client-request-id" : "270fcc49-ea66-4b4f-aea1-f6668a7ba2e4", + "elapsed-time" : "568", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "627616a7-9e78-47eb-80dd-55ad14e4fedb", + "request-id" : "270fcc49-ea66-4b4f-aea1-f6668a7ba2e4", "StatusCode" : "204", - "x-ms-client-request-id" : "627616a7-9e78-47eb-80dd-55ad14e4fedb", - "Date" : "Fri, 02 Apr 2021 22:29:47 GMT" + "x-ms-client-request-id" : "270fcc49-ea66-4b4f-aea1-f6668a7ba2e4", + "Date" : "Thu, 27 May 2021 21:08:15 GMT" }, "Exception" : null } ], - "variables" : [ "hotels95724600fa6e4ff224911bea423740b" ] + "variables" : [ "hotels936850eb0c660520a448499b34da8b5" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.indexDoesNotThrowWhenDeletingDynamicDocumentWithExtraFields.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.indexDoesNotThrowWhenDeletingDynamicDocumentWithExtraFields.json index 143d2ad38384..41a61fc9c727 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.indexDoesNotThrowWhenDeletingDynamicDocumentWithExtraFields.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.indexDoesNotThrowWhenDeletingDynamicDocumentWithExtraFields.json @@ -1,160 +1,160 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels55314c459e90c462e4dd1941ba99d52')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels76788d44908160475413cbfb704c4e3')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f604890f-c4a7-46f5-a1ca-f492043c4b25", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "09c62da8-6f8b-4178-a03d-9a7c2ddb87aa", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6478", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f604890f-c4a7-46f5-a1ca-f492043c4b25", + "request-id" : "09c62da8-6f8b-4178-a03d-9a7c2ddb87aa", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:29:05 GMT", + "Date" : "Thu, 27 May 2021 21:07:33 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626B9983E27\"", - "client-request-id" : "f604890f-c4a7-46f5-a1ca-f492043c4b25", - "elapsed-time" : "1090", + "ETag" : "W/\"0x8D92153728C8315\"", + "client-request-id" : "09c62da8-6f8b-4178-a03d-9a7c2ddb87aa", + "elapsed-time" : "1457", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6927", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626B9983E27\\\"\",\"name\":\"hotels55314c459e90c462e4dd1941ba99d52\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "f604890f-c4a7-46f5-a1ca-f492043c4b25", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153728C8315\\\"\",\"name\":\"hotels76788d44908160475413cbfb704c4e3\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "09c62da8-6f8b-4178-a03d-9a7c2ddb87aa", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels55314c459e90c462e4dd1941ba99d52')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels76788d44908160475413cbfb704c4e3')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels55314c459e90c462e4dd1941ba99d52')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels76788d44908160475413cbfb704c4e3')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f58f3a11-ec36-4687-90c7-dfc3c095005e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "85042210-9353-4154-a3ad-b446451fd8e5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f58f3a11-ec36-4687-90c7-dfc3c095005e", + "request-id" : "85042210-9353-4154-a3ad-b446451fd8e5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:05 GMT", + "Date" : "Thu, 27 May 2021 21:07:33 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f58f3a11-ec36-4687-90c7-dfc3c095005e", - "elapsed-time" : "124", + "client-request-id" : "85042210-9353-4154-a3ad-b446451fd8e5", + "elapsed-time" : "146", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "f58f3a11-ec36-4687-90c7-dfc3c095005e", + "x-ms-client-request-id" : "85042210-9353-4154-a3ad-b446451fd8e5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels55314c459e90c462e4dd1941ba99d52')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels76788d44908160475413cbfb704c4e3')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3bf6d076-401d-454b-a875-7ab1e4d91b43" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "80bf4a45-7e03-42fd-a407-3fc581c42b87" }, "Response" : { + "content-length" : "4", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3bf6d076-401d-454b-a875-7ab1e4d91b43", + "request-id" : "80bf4a45-7e03-42fd-a407-3fc581c42b87", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:08 GMT", + "Date" : "Thu, 27 May 2021 21:07:37 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3bf6d076-401d-454b-a875-7ab1e4d91b43", - "elapsed-time" : "5", + "client-request-id" : "80bf4a45-7e03-42fd-a407-3fc581c42b87", + "elapsed-time" : "3", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "4", "Body" : "1", - "x-ms-client-request-id" : "3bf6d076-401d-454b-a875-7ab1e4d91b43", + "x-ms-client-request-id" : "80bf4a45-7e03-42fd-a407-3fc581c42b87", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "text/plain" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels55314c459e90c462e4dd1941ba99d52')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels76788d44908160475413cbfb704c4e3')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2fbcb4f2-2083-458c-958f-838e6980dd06", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fc994038-fd15-4e98-9694-04839446d412", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2fbcb4f2-2083-458c-958f-838e6980dd06", + "request-id" : "fc994038-fd15-4e98-9694-04839446d412", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:08 GMT", + "Date" : "Thu, 27 May 2021 21:07:37 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2fbcb4f2-2083-458c-958f-838e6980dd06", - "elapsed-time" : "45", + "client-request-id" : "fc994038-fd15-4e98-9694-04839446d412", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":200}]}", - "x-ms-client-request-id" : "2fbcb4f2-2083-458c-958f-838e6980dd06", + "x-ms-client-request-id" : "fc994038-fd15-4e98-9694-04839446d412", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels55314c459e90c462e4dd1941ba99d52')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels76788d44908160475413cbfb704c4e3')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a478993b-8a7a-4389-9615-946d284370cf" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0c656c6a-909a-47ef-b313-657525a21e72" }, "Response" : { + "content-length" : "4", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a478993b-8a7a-4389-9615-946d284370cf", + "request-id" : "0c656c6a-909a-47ef-b313-657525a21e72", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:29:11 GMT", + "Date" : "Thu, 27 May 2021 21:07:40 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a478993b-8a7a-4389-9615-946d284370cf", + "client-request-id" : "0c656c6a-909a-47ef-b313-657525a21e72", "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "4", "Body" : "0", - "x-ms-client-request-id" : "a478993b-8a7a-4389-9615-946d284370cf", + "x-ms-client-request-id" : "0c656c6a-909a-47ef-b313-657525a21e72", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "text/plain" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels55314c459e90c462e4dd1941ba99d52')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels76788d44908160475413cbfb704c4e3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2dc11cd8-0a8c-4103-9243-2ec6fcc93696" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9be25012-07c7-4779-8944-49cf00695f80" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2dc11cd8-0a8c-4103-9243-2ec6fcc93696", - "elapsed-time" : "544", + "client-request-id" : "9be25012-07c7-4779-8944-49cf00695f80", + "elapsed-time" : "493", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "2dc11cd8-0a8c-4103-9243-2ec6fcc93696", + "request-id" : "9be25012-07c7-4779-8944-49cf00695f80", "StatusCode" : "204", - "x-ms-client-request-id" : "2dc11cd8-0a8c-4103-9243-2ec6fcc93696", - "Date" : "Fri, 02 Apr 2021 22:29:11 GMT" + "x-ms-client-request-id" : "9be25012-07c7-4779-8944-49cf00695f80", + "Date" : "Thu, 27 May 2021 21:07:40 GMT" }, "Exception" : null } ], - "variables" : [ "hotels55314c459e90c462e4dd1941ba99d52" ] + "variables" : [ "hotels76788d44908160475413cbfb704c4e3" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.indexWithInvalidDocumentThrowsException.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.indexWithInvalidDocumentThrowsException.json index 3040c55cd726..ee3c458b3bad 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.indexWithInvalidDocumentThrowsException.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.indexWithInvalidDocumentThrowsException.json @@ -1,82 +1,82 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexwithinvaliddocumentthrowsexception2531867838dd3')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexwithinvaliddocumentthrowsexception32081109f94f3')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "28d64fe8-472f-4bbb-b4db-894b583683e4", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "04b01d52-e8fd-4f83-95db-5adafe774b5d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6499", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "28d64fe8-472f-4bbb-b4db-894b583683e4", + "request-id" : "04b01d52-e8fd-4f83-95db-5adafe774b5d", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:29:16 GMT", + "Date" : "Thu, 27 May 2021 21:07:44 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626BFF3C8CE\"", - "client-request-id" : "28d64fe8-472f-4bbb-b4db-894b583683e4", - "elapsed-time" : "1116", + "ETag" : "W/\"0x8D9215378FE8D29\"", + "client-request-id" : "04b01d52-e8fd-4f83-95db-5adafe774b5d", + "elapsed-time" : "1515", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6948", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626BFF3C8CE\\\"\",\"name\":\"hotelsindexwithinvaliddocumentthrowsexception2531867838dd3\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "28d64fe8-472f-4bbb-b4db-894b583683e4", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215378FE8D29\\\"\",\"name\":\"hotelsindexwithinvaliddocumentthrowsexception32081109f94f3\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "04b01d52-e8fd-4f83-95db-5adafe774b5d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsindexwithinvaliddocumentthrowsexception2531867838dd3')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsindexwithinvaliddocumentthrowsexception32081109f94f3')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexwithinvaliddocumentthrowsexception2531867838dd3')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexwithinvaliddocumentthrowsexception32081109f94f3')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "074636c7-a3df-4543-9dd7-636a32b83a1c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8cec0719-b5c1-405a-9d1d-ef0ec4667e48", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "124", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "074636c7-a3df-4543-9dd7-636a32b83a1c", + "request-id" : "8cec0719-b5c1-405a-9d1d-ef0ec4667e48", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:29:16 GMT", + "Date" : "Thu, 27 May 2021 21:07:44 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "074636c7-a3df-4543-9dd7-636a32b83a1c", - "elapsed-time" : "67", + "client-request-id" : "8cec0719-b5c1-405a-9d1d-ef0ec4667e48", + "elapsed-time" : "71", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "124", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The request is invalid. Details: actions : 0: Document key cannot be missing or empty.\\r\\n\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "074636c7-a3df-4543-9dd7-636a32b83a1c", + "x-ms-client-request-id" : "8cec0719-b5c1-405a-9d1d-ef0ec4667e48", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexwithinvaliddocumentthrowsexception2531867838dd3')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexwithinvaliddocumentthrowsexception32081109f94f3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "224cf623-49d2-45db-9eb3-1ab59501109e" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4df33c81-34ff-4625-acc3-3c218d92b061" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "224cf623-49d2-45db-9eb3-1ab59501109e", - "elapsed-time" : "1337", + "client-request-id" : "4df33c81-34ff-4625-acc3-3c218d92b061", + "elapsed-time" : "495", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "224cf623-49d2-45db-9eb3-1ab59501109e", + "request-id" : "4df33c81-34ff-4625-acc3-3c218d92b061", "StatusCode" : "204", - "x-ms-client-request-id" : "224cf623-49d2-45db-9eb3-1ab59501109e", - "Date" : "Fri, 02 Apr 2021 22:29:17 GMT" + "x-ms-client-request-id" : "4df33c81-34ff-4625-acc3-3c218d92b061", + "Date" : "Thu, 27 May 2021 21:07:44 GMT" }, "Exception" : null } ], - "variables" : [ "hotelsindexwithinvaliddocumentthrowsexception2531867838dd3" ] + "variables" : [ "hotelsindexwithinvaliddocumentthrowsexception32081109f94f3" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.mergeDocumentWithoutExistingKeyThrowsIndexingException.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.mergeDocumentWithoutExistingKeyThrowsIndexingException.json index 57a5559eb3da..878b62d43930 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.mergeDocumentWithoutExistingKeyThrowsIndexingException.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.mergeDocumentWithoutExistingKeyThrowsIndexingException.json @@ -1,81 +1,81 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels9944649840e300f0641228065bdd78c')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels14143194063bde37e49a6ba20cba7ec')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "db95fe2d-102d-4e52-ae2c-565e2b6a0e4b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ae4273c1-c7cb-4c53-b5b6-db6f9aa00f07", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6478", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "db95fe2d-102d-4e52-ae2c-565e2b6a0e4b", + "request-id" : "ae4273c1-c7cb-4c53-b5b6-db6f9aa00f07", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:30:07 GMT", + "Date" : "Thu, 27 May 2021 21:08:36 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626DE3A9260\"", - "client-request-id" : "db95fe2d-102d-4e52-ae2c-565e2b6a0e4b", - "elapsed-time" : "1098", + "ETag" : "W/\"0x8D92153980C3CD1\"", + "client-request-id" : "ae4273c1-c7cb-4c53-b5b6-db6f9aa00f07", + "elapsed-time" : "1542", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6927", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626DE3A9260\\\"\",\"name\":\"hotels9944649840e300f0641228065bdd78c\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "db95fe2d-102d-4e52-ae2c-565e2b6a0e4b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153980C3CD1\\\"\",\"name\":\"hotels14143194063bde37e49a6ba20cba7ec\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "ae4273c1-c7cb-4c53-b5b6-db6f9aa00f07", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels9944649840e300f0641228065bdd78c')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels14143194063bde37e49a6ba20cba7ec')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels9944649840e300f0641228065bdd78c')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels14143194063bde37e49a6ba20cba7ec')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1332f8ff-fb9a-4370-8dd0-5c97316d56a6", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e521f7f4-c84f-4573-8263-f7e8034cc5e7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "92", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1332f8ff-fb9a-4370-8dd0-5c97316d56a6", + "request-id" : "e521f7f4-c84f-4573-8263-f7e8034cc5e7", "StatusCode" : "207", - "Date" : "Fri, 02 Apr 2021 22:30:07 GMT", + "Date" : "Thu, 27 May 2021 21:08:36 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1332f8ff-fb9a-4370-8dd0-5c97316d56a6", - "elapsed-time" : "93", + "client-request-id" : "e521f7f4-c84f-4573-8263-f7e8034cc5e7", + "elapsed-time" : "76", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "92", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":false,\"errorMessage\":\"Document not found.\",\"statusCode\":404}]}", - "x-ms-client-request-id" : "1332f8ff-fb9a-4370-8dd0-5c97316d56a6", + "x-ms-client-request-id" : "e521f7f4-c84f-4573-8263-f7e8034cc5e7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels9944649840e300f0641228065bdd78c')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels14143194063bde37e49a6ba20cba7ec')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "29086fb1-3353-4cd7-9892-ba06918f15a6" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "92b6a810-1d2b-4377-abeb-0071628ef3ed" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "29086fb1-3353-4cd7-9892-ba06918f15a6", - "elapsed-time" : "1282", + "client-request-id" : "92b6a810-1d2b-4377-abeb-0071628ef3ed", + "elapsed-time" : "542", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "29086fb1-3353-4cd7-9892-ba06918f15a6", + "request-id" : "92b6a810-1d2b-4377-abeb-0071628ef3ed", "StatusCode" : "204", - "x-ms-client-request-id" : "29086fb1-3353-4cd7-9892-ba06918f15a6", - "Date" : "Fri, 02 Apr 2021 22:30:08 GMT" + "x-ms-client-request-id" : "92b6a810-1d2b-4377-abeb-0071628ef3ed", + "Date" : "Thu, 27 May 2021 21:08:36 GMT" }, "Exception" : null } ], - "variables" : [ "hotels9944649840e300f0641228065bdd78c" ] + "variables" : [ "hotels14143194063bde37e49a6ba20cba7ec" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.staticallyTypedDateTimesRoundTripAsUtc.json b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.staticallyTypedDateTimesRoundTripAsUtc.json index f11d6d3b5b22..adb60ff49ae5 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.staticallyTypedDateTimesRoundTripAsUtc.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/IndexingSyncTests.staticallyTypedDateTimesRoundTripAsUtc.json @@ -1,133 +1,133 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('booksstaticallytypeddatetimesroundtripasutc6f863278b13c2f')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('booksstaticallytypeddatetimesroundtripasutce6e32575c95e6f')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8eb1c37-4b01-4858-a0b9-d34398daa49e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "05d3f523-47ca-46c1-bb84-7cabb9c87e74", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1679", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d8eb1c37-4b01-4858-a0b9-d34398daa49e", + "request-id" : "05d3f523-47ca-46c1-bb84-7cabb9c87e74", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:30:20 GMT", + "Date" : "Thu, 27 May 2021 21:08:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626E6636547\"", - "client-request-id" : "d8eb1c37-4b01-4858-a0b9-d34398daa49e", - "elapsed-time" : "1087", + "ETag" : "W/\"0x8D92153A05C102A\"", + "client-request-id" : "05d3f523-47ca-46c1-bb84-7cabb9c87e74", + "elapsed-time" : "1520", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1786", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626E6636547\\\"\",\"name\":\"booksstaticallytypeddatetimesroundtripasutc6f863278b13c2f\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"ISBN\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Title\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Author\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"FirstName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"PublishDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Title\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "d8eb1c37-4b01-4858-a0b9-d34398daa49e", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153A05C102A\\\"\",\"name\":\"booksstaticallytypeddatetimesroundtripasutce6e32575c95e6f\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"ISBN\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Title\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Author\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"FirstName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}]},{\"name\":\"PublishDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"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\":[\"Title\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "05d3f523-47ca-46c1-bb84-7cabb9c87e74", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('booksstaticallytypeddatetimesroundtripasutc6f863278b13c2f')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('booksstaticallytypeddatetimesroundtripasutce6e32575c95e6f')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('booksstaticallytypeddatetimesroundtripasutc6f863278b13c2f')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('booksstaticallytypeddatetimesroundtripasutce6e32575c95e6f')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ade5dfb4-ca2a-4d4c-a526-dd6b41287ed7", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a177b758-3a4d-4dcb-8201-6af3892a91d6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "137", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ade5dfb4-ca2a-4d4c-a526-dd6b41287ed7", + "request-id" : "a177b758-3a4d-4dcb-8201-6af3892a91d6", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:20 GMT", + "Date" : "Thu, 27 May 2021 21:08:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ade5dfb4-ca2a-4d4c-a526-dd6b41287ed7", - "elapsed-time" : "152", + "client-request-id" : "a177b758-3a4d-4dcb-8201-6af3892a91d6", + "elapsed-time" : "92", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "137", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "ade5dfb4-ca2a-4d4c-a526-dd6b41287ed7", + "x-ms-client-request-id" : "a177b758-3a4d-4dcb-8201-6af3892a91d6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('booksstaticallytypeddatetimesroundtripasutc6f863278b13c2f')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('booksstaticallytypeddatetimesroundtripasutce6e32575c95e6f')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b27bc895-7d96-453a-9ab8-71091fa4d0e1" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ec87f479-c224-4b40-9c04-8d8c2e2fa78d" }, "Response" : { + "content-length" : "76", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b27bc895-7d96-453a-9ab8-71091fa4d0e1", + "request-id" : "ec87f479-c224-4b40-9c04-8d8c2e2fa78d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:20 GMT", + "Date" : "Thu, 27 May 2021 21:08:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b27bc895-7d96-453a-9ab8-71091fa4d0e1", - "elapsed-time" : "22", + "client-request-id" : "ec87f479-c224-4b40-9c04-8d8c2e2fa78d", + "elapsed-time" : "10", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "76", "Body" : "{\"ISBN\":\"1\",\"Title\":null,\"PublishDate\":\"2010-01-01T00:00:00Z\",\"Author\":null}", - "x-ms-client-request-id" : "b27bc895-7d96-453a-9ab8-71091fa4d0e1", + "x-ms-client-request-id" : "ec87f479-c224-4b40-9c04-8d8c2e2fa78d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('booksstaticallytypeddatetimesroundtripasutc6f863278b13c2f')//docs('2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('booksstaticallytypeddatetimesroundtripasutce6e32575c95e6f')/docs('2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c450f91a-6370-426e-aec2-b43ddc958939" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "585398a4-9c75-4e62-b277-97d5bc4fed34" }, "Response" : { + "content-length" : "76", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c450f91a-6370-426e-aec2-b43ddc958939", + "request-id" : "585398a4-9c75-4e62-b277-97d5bc4fed34", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:20 GMT", + "Date" : "Thu, 27 May 2021 21:08:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c450f91a-6370-426e-aec2-b43ddc958939", - "elapsed-time" : "19", + "client-request-id" : "585398a4-9c75-4e62-b277-97d5bc4fed34", + "elapsed-time" : "20", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "76", "Body" : "{\"ISBN\":\"2\",\"Title\":null,\"PublishDate\":\"2010-01-01T08:00:00Z\",\"Author\":null}", - "x-ms-client-request-id" : "c450f91a-6370-426e-aec2-b43ddc958939", + "x-ms-client-request-id" : "585398a4-9c75-4e62-b277-97d5bc4fed34", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('booksstaticallytypeddatetimesroundtripasutc6f863278b13c2f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('booksstaticallytypeddatetimesroundtripasutce6e32575c95e6f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8d33cab-8acd-4624-a322-7a348dfadff6" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "90083f3d-810e-4f99-8af2-ae3b387c8dc4" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e8d33cab-8acd-4624-a322-7a348dfadff6", - "elapsed-time" : "1333", + "client-request-id" : "90083f3d-810e-4f99-8af2-ae3b387c8dc4", + "elapsed-time" : "523", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "e8d33cab-8acd-4624-a322-7a348dfadff6", + "request-id" : "90083f3d-810e-4f99-8af2-ae3b387c8dc4", "StatusCode" : "204", - "x-ms-client-request-id" : "e8d33cab-8acd-4624-a322-7a348dfadff6", - "Date" : "Fri, 02 Apr 2021 22:30:22 GMT" + "x-ms-client-request-id" : "90083f3d-810e-4f99-8af2-ae3b387c8dc4", + "Date" : "Thu, 27 May 2021 21:08:50 GMT" }, "Exception" : null } ], - "variables" : [ "booksstaticallytypeddatetimesroundtripasutc6f863278b13c2f" ] + "variables" : [ "booksstaticallytypeddatetimesroundtripasutce6e32575c95e6f" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetDocumentWithBase64EncodedKey.json b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetDocumentWithBase64EncodedKey.json index f5b3db23d41c..7496603c780a 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetDocumentWithBase64EncodedKey.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetDocumentWithBase64EncodedKey.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdocumentwithbase64encodedkey1fb06327d9984179')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdocumentwithbase64encodedkeyb8e41241c7355c06')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "27f6db77-49db-43df-a155-8e24a641161f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ea9f2b55-e91d-47fa-9448-579fde514801", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6497", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "27f6db77-49db-43df-a155-8e24a641161f", + "request-id" : "ea9f2b55-e91d-47fa-9448-579fde514801", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:30:31 GMT", + "Date" : "Thu, 27 May 2021 21:09:00 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626EC886D22\"", - "client-request-id" : "27f6db77-49db-43df-a155-8e24a641161f", - "elapsed-time" : "1087", + "ETag" : "W/\"0x8D92153A66A644E\"", + "client-request-id" : "ea9f2b55-e91d-47fa-9448-579fde514801", + "elapsed-time" : "1547", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6946", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626EC886D22\\\"\",\"name\":\"hotelscangetdocumentwithbase64encodedkey1fb06327d9984179\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "27f6db77-49db-43df-a155-8e24a641161f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153A66A644E\\\"\",\"name\":\"hotelscangetdocumentwithbase64encodedkeyb8e41241c7355c06\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "ea9f2b55-e91d-47fa-9448-579fde514801", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscangetdocumentwithbase64encodedkey1fb06327d9984179')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscangetdocumentwithbase64encodedkeyb8e41241c7355c06')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdocumentwithbase64encodedkey1fb06327d9984179')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdocumentwithbase64encodedkeyb8e41241c7355c06')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1bb667d3-a8c1-49cc-b47f-89fcd771e59f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ab89ba87-b43f-409c-b3c0-84cc03c1f209", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "81", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1bb667d3-a8c1-49cc-b47f-89fcd771e59f", + "request-id" : "ab89ba87-b43f-409c-b3c0-84cc03c1f209", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:31 GMT", + "Date" : "Thu, 27 May 2021 21:09:00 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1bb667d3-a8c1-49cc-b47f-89fcd771e59f", - "elapsed-time" : "108", + "client-request-id" : "ab89ba87-b43f-409c-b3c0-84cc03c1f209", + "elapsed-time" : "98", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "81", "Body" : "{\"value\":[{\"key\":\"AQIDBAU=\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "1bb667d3-a8c1-49cc-b47f-89fcd771e59f", + "x-ms-client-request-id" : "ab89ba87-b43f-409c-b3c0-84cc03c1f209", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdocumentwithbase64encodedkey1fb06327d9984179')//docs('AQIDBAU=')?$select=HotelId&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdocumentwithbase64encodedkeyb8e41241c7355c06')/docs('AQIDBAU=')?$select=HotelId&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ff51f10-bb3d-4d2b-afb6-bab4c43c3ba0" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d1dab622-ef13-4044-87c1-0b88864b09d9" }, "Response" : { + "content-length" : "22", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6ff51f10-bb3d-4d2b-afb6-bab4c43c3ba0", + "request-id" : "d1dab622-ef13-4044-87c1-0b88864b09d9", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:31 GMT", + "Date" : "Thu, 27 May 2021 21:09:00 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6ff51f10-bb3d-4d2b-afb6-bab4c43c3ba0", - "elapsed-time" : "18", + "client-request-id" : "d1dab622-ef13-4044-87c1-0b88864b09d9", + "elapsed-time" : "17", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "22", "Body" : "{\"HotelId\":\"AQIDBAU=\"}", - "x-ms-client-request-id" : "6ff51f10-bb3d-4d2b-afb6-bab4c43c3ba0", + "x-ms-client-request-id" : "d1dab622-ef13-4044-87c1-0b88864b09d9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdocumentwithbase64encodedkey1fb06327d9984179')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdocumentwithbase64encodedkeyb8e41241c7355c06')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8036497e-ab67-4155-a125-a147582a97c7" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "05fe1966-f86e-4efd-9de3-b02d0ae1950e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8036497e-ab67-4155-a125-a147582a97c7", - "elapsed-time" : "1218", + "client-request-id" : "05fe1966-f86e-4efd-9de3-b02d0ae1950e", + "elapsed-time" : "502", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "8036497e-ab67-4155-a125-a147582a97c7", + "request-id" : "05fe1966-f86e-4efd-9de3-b02d0ae1950e", "StatusCode" : "204", - "x-ms-client-request-id" : "8036497e-ab67-4155-a125-a147582a97c7", - "Date" : "Fri, 02 Apr 2021 22:30:32 GMT" + "x-ms-client-request-id" : "05fe1966-f86e-4efd-9de3-b02d0ae1950e", + "Date" : "Thu, 27 May 2021 21:09:00 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscangetdocumentwithbase64encodedkey1fb06327d9984179" ] + "variables" : [ "hotelscangetdocumentwithbase64encodedkeyb8e41241c7355c06" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetDynamicDocumentWithNullOrEmptyValues.json b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetDynamicDocumentWithNullOrEmptyValues.json index 52689c1e4afa..f3961d5ebd6b 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetDynamicDocumentWithNullOrEmptyValues.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetDynamicDocumentWithNullOrEmptyValues.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdynamicdocumentwithnulloremptyvaluesd7346675e0c0')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdynamicdocumentwithnulloremptyvalues1fe387207a29')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b522c68b-1db6-4e4a-924a-e217700c8cfd", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "124055c8-6ffc-4ae8-81f6-2c4fe468d2dc", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6501", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b522c68b-1db6-4e4a-924a-e217700c8cfd", + "request-id" : "124055c8-6ffc-4ae8-81f6-2c4fe468d2dc", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:30:46 GMT", + "Date" : "Thu, 27 May 2021 21:09:15 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626F5772371\"", - "client-request-id" : "b522c68b-1db6-4e4a-924a-e217700c8cfd", - "elapsed-time" : "1106", + "ETag" : "W/\"0x8D92153AF5EABF5\"", + "client-request-id" : "124055c8-6ffc-4ae8-81f6-2c4fe468d2dc", + "elapsed-time" : "1557", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6950", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626F5772371\\\"\",\"name\":\"hotelscangetdynamicdocumentwithnulloremptyvaluesd7346675e0c0\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "b522c68b-1db6-4e4a-924a-e217700c8cfd", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153AF5EABF5\\\"\",\"name\":\"hotelscangetdynamicdocumentwithnulloremptyvalues1fe387207a29\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "124055c8-6ffc-4ae8-81f6-2c4fe468d2dc", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscangetdynamicdocumentwithnulloremptyvaluesd7346675e0c0')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscangetdynamicdocumentwithnulloremptyvalues1fe387207a29')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdynamicdocumentwithnulloremptyvaluesd7346675e0c0')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdynamicdocumentwithnulloremptyvalues1fe387207a29')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "342f0e31-d93c-4911-812c-e6ad6e9c2342", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8fab8545-ecab-4df1-8589-80023341add3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "342f0e31-d93c-4911-812c-e6ad6e9c2342", + "request-id" : "8fab8545-ecab-4df1-8589-80023341add3", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:46 GMT", + "Date" : "Thu, 27 May 2021 21:09:15 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "342f0e31-d93c-4911-812c-e6ad6e9c2342", - "elapsed-time" : "149", + "client-request-id" : "8fab8545-ecab-4df1-8589-80023341add3", + "elapsed-time" : "94", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "342f0e31-d93c-4911-812c-e6ad6e9c2342", + "x-ms-client-request-id" : "8fab8545-ecab-4df1-8589-80023341add3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdynamicdocumentwithnulloremptyvaluesd7346675e0c0')//docs('1')?$select=HotelId%2CHotelName%2CTags%2CParkingIncluded%2CLastRenovationDate%2CRating%2CLocation%2CAddress%2CRooms/BaseRate%2CRooms/BedOptions%2CRooms/SleepsCount%2CRooms/SmokingAllowed%2CRooms/Tags&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdynamicdocumentwithnulloremptyvalues1fe387207a29')/docs('1')?$select=HotelId%2CHotelName%2CTags%2CParkingIncluded%2CLastRenovationDate%2CRating%2CLocation%2CAddress%2CRooms/BaseRate%2CRooms/BedOptions%2CRooms/SleepsCount%2CRooms/SmokingAllowed%2CRooms/Tags&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b1d0e5a-23dc-4483-80cc-1dbba4e9ef88" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1e87cc12-6ca6-4101-8e93-8c159c091ce3" }, "Response" : { + "content-length" : "233", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8b1d0e5a-23dc-4483-80cc-1dbba4e9ef88", + "request-id" : "1e87cc12-6ca6-4101-8e93-8c159c091ce3", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:49 GMT", + "Date" : "Thu, 27 May 2021 21:09:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8b1d0e5a-23dc-4483-80cc-1dbba4e9ef88", - "elapsed-time" : "8", + "client-request-id" : "1e87cc12-6ca6-4101-8e93-8c159c091ce3", + "elapsed-time" : "14", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "233", "Body" : "{\"HotelId\":\"1\",\"HotelName\":null,\"Tags\":[],\"ParkingIncluded\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[{\"BaseRate\":null,\"BedOptions\":null,\"SleepsCount\":null,\"SmokingAllowed\":null,\"Tags\":[]}]}", - "x-ms-client-request-id" : "8b1d0e5a-23dc-4483-80cc-1dbba4e9ef88", + "x-ms-client-request-id" : "1e87cc12-6ca6-4101-8e93-8c159c091ce3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdynamicdocumentwithnulloremptyvaluesd7346675e0c0')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdynamicdocumentwithnulloremptyvalues1fe387207a29')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5c1f0665-8dea-49bf-9630-14bfa1b158db" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a6d87c44-e9d0-4c95-9bfd-ffe3599e7e1c" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5c1f0665-8dea-49bf-9630-14bfa1b158db", - "elapsed-time" : "564", + "client-request-id" : "a6d87c44-e9d0-4c95-9bfd-ffe3599e7e1c", + "elapsed-time" : "532", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "5c1f0665-8dea-49bf-9630-14bfa1b158db", + "request-id" : "a6d87c44-e9d0-4c95-9bfd-ffe3599e7e1c", "StatusCode" : "204", - "x-ms-client-request-id" : "5c1f0665-8dea-49bf-9630-14bfa1b158db", - "Date" : "Fri, 02 Apr 2021 22:30:49 GMT" + "x-ms-client-request-id" : "a6d87c44-e9d0-4c95-9bfd-ffe3599e7e1c", + "Date" : "Thu, 27 May 2021 21:09:19 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscangetdynamicdocumentwithnulloremptyvaluesd7346675e0c0" ] + "variables" : [ "hotelscangetdynamicdocumentwithnulloremptyvalues1fe387207a29" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocument.json b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocument.json index f299ad7b8e20..b324ce449e19 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocument.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocument.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocumente6564579693a41c87a')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocument0cf1376807b54e59f6')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c7542357-b53a-4111-aa1c-84be3d98eefc", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4765f91d-087f-4911-a15f-4af364ac632f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6494", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c7542357-b53a-4111-aa1c-84be3d98eefc", + "request-id" : "4765f91d-087f-4911-a15f-4af364ac632f", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:30:51 GMT", + "Date" : "Thu, 27 May 2021 21:09:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626F897DAA6\"", - "client-request-id" : "c7542357-b53a-4111-aa1c-84be3d98eefc", - "elapsed-time" : "1233", + "ETag" : "W/\"0x8D92153B28696B9\"", + "client-request-id" : "4765f91d-087f-4911-a15f-4af364ac632f", + "elapsed-time" : "1479", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6943", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626F897DAA6\\\"\",\"name\":\"hotelscangetstaticallytypeddocumente6564579693a41c87a\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "c7542357-b53a-4111-aa1c-84be3d98eefc", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153B28696B9\\\"\",\"name\":\"hotelscangetstaticallytypeddocument0cf1376807b54e59f6\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "4765f91d-087f-4911-a15f-4af364ac632f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscangetstaticallytypeddocumente6564579693a41c87a')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscangetstaticallytypeddocument0cf1376807b54e59f6')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocumente6564579693a41c87a')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocument0cf1376807b54e59f6')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "193f0a60-1297-42ca-ada0-7f812b0b03d5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3d05ef25-2e61-476e-8908-d617bb56a70b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "193f0a60-1297-42ca-ada0-7f812b0b03d5", + "request-id" : "3d05ef25-2e61-476e-8908-d617bb56a70b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:51 GMT", + "Date" : "Thu, 27 May 2021 21:09:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "193f0a60-1297-42ca-ada0-7f812b0b03d5", - "elapsed-time" : "100", + "client-request-id" : "3d05ef25-2e61-476e-8908-d617bb56a70b", + "elapsed-time" : "94", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "193f0a60-1297-42ca-ada0-7f812b0b03d5", + "x-ms-client-request-id" : "3d05ef25-2e61-476e-8908-d617bb56a70b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocumente6564579693a41c87a')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocument0cf1376807b54e59f6')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "11abb71d-7b00-4949-b96b-76c5fd896425" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f4e5be5d-89f8-40e3-afcc-a215ad946c76" }, "Response" : { + "content-length" : "941", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "11abb71d-7b00-4949-b96b-76c5fd896425", + "request-id" : "f4e5be5d-89f8-40e3-afcc-a215ad946c76", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:54 GMT", + "Date" : "Thu, 27 May 2021 21:09:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "11abb71d-7b00-4949-b96b-76c5fd896425", + "client-request-id" : "f4e5be5d-89f8-40e3-afcc-a215ad946c76", "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "941", "Body" : "{\"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.\",\"Description_fr\":\"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'emplacement 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-26T20:00:00Z\",\"Rating\":5,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]}", - "x-ms-client-request-id" : "11abb71d-7b00-4949-b96b-76c5fd896425", + "x-ms-client-request-id" : "f4e5be5d-89f8-40e3-afcc-a215ad946c76", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocumente6564579693a41c87a')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocument0cf1376807b54e59f6')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "81d608bb-a399-4ec8-af56-7f9f089bdf3c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "550eec37-2289-4748-b570-a8c05a98dc52" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "81d608bb-a399-4ec8-af56-7f9f089bdf3c", - "elapsed-time" : "571", + "client-request-id" : "550eec37-2289-4748-b570-a8c05a98dc52", + "elapsed-time" : "498", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "81d608bb-a399-4ec8-af56-7f9f089bdf3c", + "request-id" : "550eec37-2289-4748-b570-a8c05a98dc52", "StatusCode" : "204", - "x-ms-client-request-id" : "81d608bb-a399-4ec8-af56-7f9f089bdf3c", - "Date" : "Fri, 02 Apr 2021 22:30:54 GMT" + "x-ms-client-request-id" : "550eec37-2289-4748-b570-a8c05a98dc52", + "Date" : "Thu, 27 May 2021 21:09:24 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscangetstaticallytypeddocumente6564579693a41c87a" ] + "variables" : [ "hotelscangetstaticallytypeddocument0cf1376807b54e59f6" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocumentWithNullOrEmptyValues.json b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocumentWithNullOrEmptyValues.json index fe49faa5d96d..2e604ea50ca1 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocumentWithNullOrEmptyValues.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocumentWithNullOrEmptyValues.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels65332f094a852993142e2ab0e0d9d4e')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels24197e2097f01ba6d444d81cb16835f')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c37cd38-73a0-4aad-bfcc-71aecbcbe8c0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c79fea6d-72e2-43bb-8c29-2726d2f5d0fa", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6478", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6c37cd38-73a0-4aad-bfcc-71aecbcbe8c0", + "request-id" : "c79fea6d-72e2-43bb-8c29-2726d2f5d0fa", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:31:08 GMT", + "Date" : "Thu, 27 May 2021 21:09:38 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62702F99B91\"", - "client-request-id" : "6c37cd38-73a0-4aad-bfcc-71aecbcbe8c0", - "elapsed-time" : "1077", + "ETag" : "W/\"0x8D92153BD320659\"", + "client-request-id" : "c79fea6d-72e2-43bb-8c29-2726d2f5d0fa", + "elapsed-time" : "1465", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6927", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62702F99B91\\\"\",\"name\":\"hotels65332f094a852993142e2ab0e0d9d4e\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "6c37cd38-73a0-4aad-bfcc-71aecbcbe8c0", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153BD320659\\\"\",\"name\":\"hotels24197e2097f01ba6d444d81cb16835f\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "c79fea6d-72e2-43bb-8c29-2726d2f5d0fa", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels65332f094a852993142e2ab0e0d9d4e')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels24197e2097f01ba6d444d81cb16835f')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels65332f094a852993142e2ab0e0d9d4e')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels24197e2097f01ba6d444d81cb16835f')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d699e292-1185-4f8b-b61d-a908ab22495a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "aba5c8c7-aed3-49b8-8501-25b1d10ca258", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d699e292-1185-4f8b-b61d-a908ab22495a", + "request-id" : "aba5c8c7-aed3-49b8-8501-25b1d10ca258", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:31:08 GMT", + "Date" : "Thu, 27 May 2021 21:09:38 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d699e292-1185-4f8b-b61d-a908ab22495a", - "elapsed-time" : "130", + "client-request-id" : "aba5c8c7-aed3-49b8-8501-25b1d10ca258", + "elapsed-time" : "99", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "d699e292-1185-4f8b-b61d-a908ab22495a", + "x-ms-client-request-id" : "aba5c8c7-aed3-49b8-8501-25b1d10ca258", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels65332f094a852993142e2ab0e0d9d4e')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels24197e2097f01ba6d444d81cb16835f')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bcf866df-c5b3-4e7c-8ef7-9752e025f920" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "41182cd6-90ab-4a2e-af3f-b5eb768f1582" }, "Response" : { + "content-length" : "365", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "bcf866df-c5b3-4e7c-8ef7-9752e025f920", + "request-id" : "41182cd6-90ab-4a2e-af3f-b5eb768f1582", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:31:11 GMT", + "Date" : "Thu, 27 May 2021 21:09:42 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "bcf866df-c5b3-4e7c-8ef7-9752e025f920", - "elapsed-time" : "11", + "client-request-id" : "41182cd6-90ab-4a2e-af3f-b5eb768f1582", + "elapsed-time" : "10", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "365", "Body" : "{\"HotelId\":\"1\",\"HotelName\":null,\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[{\"Description\":null,\"Description_fr\":null,\"Type\":null,\"BaseRate\":null,\"BedOptions\":null,\"SleepsCount\":null,\"SmokingAllowed\":null,\"Tags\":[]}]}", - "x-ms-client-request-id" : "bcf866df-c5b3-4e7c-8ef7-9752e025f920", + "x-ms-client-request-id" : "41182cd6-90ab-4a2e-af3f-b5eb768f1582", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels65332f094a852993142e2ab0e0d9d4e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels24197e2097f01ba6d444d81cb16835f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "de3c4d5b-233d-4043-b305-d8556de6c222" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fea60eea-948a-4169-953d-a09963b2ed5f" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "de3c4d5b-233d-4043-b305-d8556de6c222", - "elapsed-time" : "516", + "client-request-id" : "fea60eea-948a-4169-953d-a09963b2ed5f", + "elapsed-time" : "522", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "de3c4d5b-233d-4043-b305-d8556de6c222", + "request-id" : "fea60eea-948a-4169-953d-a09963b2ed5f", "StatusCode" : "204", - "x-ms-client-request-id" : "de3c4d5b-233d-4043-b305-d8556de6c222", - "Date" : "Fri, 02 Apr 2021 22:31:11 GMT" + "x-ms-client-request-id" : "fea60eea-948a-4169-953d-a09963b2ed5f", + "Date" : "Thu, 27 May 2021 21:09:42 GMT" }, "Exception" : null } ], - "variables" : [ "hotels65332f094a852993142e2ab0e0d9d4e" ] + "variables" : [ "hotels24197e2097f01ba6d444d81cb16835f" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocumentWithPascalCaseFields.json b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocumentWithPascalCaseFields.json index 034b6b2b07d2..386d67e7956f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocumentWithPascalCaseFields.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canGetStaticallyTypedDocumentWithPascalCaseFields.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocumentwithpascalcasefields75982571')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocumentwithpascalcasefieldsd4827178')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "afe4821c-4508-471e-a0f1-7194b54f5aa1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2cb128db-fa9b-455f-bec3-0b03105ed122", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6504", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "afe4821c-4508-471e-a0f1-7194b54f5aa1", + "request-id" : "2cb128db-fa9b-455f-bec3-0b03105ed122", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:30:26 GMT", + "Date" : "Thu, 27 May 2021 21:08:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626E9950F5D\"", - "client-request-id" : "afe4821c-4508-471e-a0f1-7194b54f5aa1", - "elapsed-time" : "1075", + "ETag" : "W/\"0x8D92153A3350989\"", + "client-request-id" : "2cb128db-fa9b-455f-bec3-0b03105ed122", + "elapsed-time" : "1462", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6953", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626E9950F5D\\\"\",\"name\":\"hotelscangetstaticallytypeddocumentwithpascalcasefields75982571\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "afe4821c-4508-471e-a0f1-7194b54f5aa1", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153A3350989\\\"\",\"name\":\"hotelscangetstaticallytypeddocumentwithpascalcasefieldsd4827178\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "2cb128db-fa9b-455f-bec3-0b03105ed122", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscangetstaticallytypeddocumentwithpascalcasefields75982571')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscangetstaticallytypeddocumentwithpascalcasefieldsd4827178')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocumentwithpascalcasefields75982571')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocumentwithpascalcasefieldsd4827178')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0f18cc03-0a4b-48f8-b2ab-705fb092d672", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b5c87172-3621-4216-abbb-811dbf396ff7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "76", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0f18cc03-0a4b-48f8-b2ab-705fb092d672", + "request-id" : "b5c87172-3621-4216-abbb-811dbf396ff7", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:26 GMT", + "Date" : "Thu, 27 May 2021 21:08:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0f18cc03-0a4b-48f8-b2ab-705fb092d672", - "elapsed-time" : "142", + "client-request-id" : "b5c87172-3621-4216-abbb-811dbf396ff7", + "elapsed-time" : "145", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "76", "Body" : "{\"value\":[{\"key\":\"123\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "0f18cc03-0a4b-48f8-b2ab-705fb092d672", + "x-ms-client-request-id" : "b5c87172-3621-4216-abbb-811dbf396ff7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocumentwithpascalcasefields75982571')//docs('123')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocumentwithpascalcasefieldsd4827178')/docs('123')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0381edd3-de61-4759-bc45-f4f4e9a4b151" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "995df969-d269-4bea-8bba-d4b2ad788cfa" }, "Response" : { + "content-length" : "251", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0381edd3-de61-4759-bc45-f4f4e9a4b151", + "request-id" : "995df969-d269-4bea-8bba-d4b2ad788cfa", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:29 GMT", + "Date" : "Thu, 27 May 2021 21:08:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0381edd3-de61-4759-bc45-f4f4e9a4b151", - "elapsed-time" : "10", + "client-request-id" : "995df969-d269-4bea-8bba-d4b2ad788cfa", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "251", "Body" : "{\"HotelId\":\"123\",\"HotelName\":\"Lord of the Rings\",\"Description\":\"J.R.R\",\"Description_fr\":\"Tolkien\",\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}", - "x-ms-client-request-id" : "0381edd3-de61-4759-bc45-f4f4e9a4b151", + "x-ms-client-request-id" : "995df969-d269-4bea-8bba-d4b2ad788cfa", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocumentwithpascalcasefields75982571')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetstaticallytypeddocumentwithpascalcasefieldsd4827178')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d7ed6073-8238-4ba7-9a86-56db84e34b22" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "555f1351-4df6-4387-a17f-9f29e8d836f4" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d7ed6073-8238-4ba7-9a86-56db84e34b22", - "elapsed-time" : "583", + "client-request-id" : "555f1351-4df6-4387-a17f-9f29e8d836f4", + "elapsed-time" : "539", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "d7ed6073-8238-4ba7-9a86-56db84e34b22", + "request-id" : "555f1351-4df6-4387-a17f-9f29e8d836f4", "StatusCode" : "204", - "x-ms-client-request-id" : "d7ed6073-8238-4ba7-9a86-56db84e34b22", - "Date" : "Fri, 02 Apr 2021 22:30:29 GMT" + "x-ms-client-request-id" : "555f1351-4df6-4387-a17f-9f29e8d836f4", + "Date" : "Thu, 27 May 2021 21:08:58 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscangetstaticallytypeddocumentwithpascalcasefields75982571" ] + "variables" : [ "hotelscangetstaticallytypeddocumentwithpascalcasefieldsd4827178" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canRoundtripStaticallyTypedPrimitiveCollections.json b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canRoundtripStaticallyTypedPrimitiveCollections.json index 510405f21b42..6d1f7662d5dc 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canRoundtripStaticallyTypedPrimitiveCollections.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.canRoundtripStaticallyTypedPrimitiveCollections.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index810350ddacc3a3f4448748c')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index16462df312f8797954284bf')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "feec0f4a-b109-4562-ae17-7bb2b4bf0f2b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c858af08-cfaa-460a-a557-20b9f6087852", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "2270", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "feec0f4a-b109-4562-ae17-7bb2b4bf0f2b", + "request-id" : "c858af08-cfaa-460a-a557-20b9f6087852", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:31:03 GMT", + "Date" : "Thu, 27 May 2021 21:09:33 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6270003CC62\"", - "client-request-id" : "feec0f4a-b109-4562-ae17-7bb2b4bf0f2b", - "elapsed-time" : "1066", + "ETag" : "W/\"0x8D92153BA123353\"", + "client-request-id" : "c858af08-cfaa-460a-a557-20b9f6087852", + "elapsed-time" : "1412", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "2431", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6270003CC62\\\"\",\"name\":\"data-types-tests-index810350ddacc3a3f4448748c\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"Key\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Bools\",\"type\":\"Collection(Edm.Boolean)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Dates\",\"type\":\"Collection(Edm.DateTimeOffset)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Doubles\",\"type\":\"Collection(Edm.Double)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Points\",\"type\":\"Collection(Edm.GeographyPoint)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Ints\",\"type\":\"Collection(Edm.Int32)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Longs\",\"type\":\"Collection(Edm.Int64)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Strings\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "feec0f4a-b109-4562-ae17-7bb2b4bf0f2b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153BA123353\\\"\",\"name\":\"data-types-tests-index16462df312f8797954284bf\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"Key\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Bools\",\"type\":\"Collection(Edm.Boolean)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Dates\",\"type\":\"Collection(Edm.DateTimeOffset)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Doubles\",\"type\":\"Collection(Edm.Double)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Points\",\"type\":\"Collection(Edm.GeographyPoint)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Ints\",\"type\":\"Collection(Edm.Int32)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Longs\",\"type\":\"Collection(Edm.Int64)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Strings\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "c858af08-cfaa-460a-a557-20b9f6087852", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('data-types-tests-index810350ddacc3a3f4448748c')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('data-types-tests-index16462df312f8797954284bf')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index810350ddacc3a3f4448748c')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index16462df312f8797954284bf')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ccd1ba5-0e6c-449e-a28c-d6c2d17ab55e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "dde3612f-6669-4570-a62f-9a9359747f7e", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6ccd1ba5-0e6c-449e-a28c-d6c2d17ab55e", + "request-id" : "dde3612f-6669-4570-a62f-9a9359747f7e", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:31:03 GMT", + "Date" : "Thu, 27 May 2021 21:09:33 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6ccd1ba5-0e6c-449e-a28c-d6c2d17ab55e", - "elapsed-time" : "152", + "client-request-id" : "dde3612f-6669-4570-a62f-9a9359747f7e", + "elapsed-time" : "110", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "6ccd1ba5-0e6c-449e-a28c-d6c2d17ab55e", + "x-ms-client-request-id" : "dde3612f-6669-4570-a62f-9a9359747f7e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index810350ddacc3a3f4448748c')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index16462df312f8797954284bf')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "adb066a6-96c9-4eac-9ca1-5231b99e7eef" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0bada2b6-1257-49ee-9d5e-d970d6b033b2" }, "Response" : { + "content-length" : "460", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "adb066a6-96c9-4eac-9ca1-5231b99e7eef", + "request-id" : "0bada2b6-1257-49ee-9d5e-d970d6b033b2", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:31:07 GMT", + "Date" : "Thu, 27 May 2021 21:09:36 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "adb066a6-96c9-4eac-9ca1-5231b99e7eef", - "elapsed-time" : "16", + "client-request-id" : "0bada2b6-1257-49ee-9d5e-d970d6b033b2", + "elapsed-time" : "13", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "460", "Body" : "{\"Key\":\"1\",\"Bools\":[true,false],\"Dates\":[\"2019-04-14T14:24:00Z\",\"1999-12-31T23:59:59Z\"],\"Doubles\":[\"-INF\",0.0,2.78,\"NaN\",3.14,\"INF\"],\"Points\":[{\"type\":\"Point\",\"coordinates\":[-67.0,49.0],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},{\"type\":\"Point\",\"coordinates\":[21.0,47.0],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}}],\"Ints\":[1,2,3,4,-13,5,0],\"Longs\":[-9999999999999999,832372345832523],\"Strings\":[\"hello\",\"2019-04-14T14:56:00-07:00\"]}", - "x-ms-client-request-id" : "adb066a6-96c9-4eac-9ca1-5231b99e7eef", + "x-ms-client-request-id" : "0bada2b6-1257-49ee-9d5e-d970d6b033b2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index810350ddacc3a3f4448748c')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index16462df312f8797954284bf')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1090558-795a-4736-8140-434961de6dad" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "98eb63ff-3b49-4307-b6e4-b6f0cfadd2aa" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f1090558-795a-4736-8140-434961de6dad", - "elapsed-time" : "577", + "client-request-id" : "98eb63ff-3b49-4307-b6e4-b6f0cfadd2aa", + "elapsed-time" : "503", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "f1090558-795a-4736-8140-434961de6dad", + "request-id" : "98eb63ff-3b49-4307-b6e4-b6f0cfadd2aa", "StatusCode" : "204", - "x-ms-client-request-id" : "f1090558-795a-4736-8140-434961de6dad", - "Date" : "Fri, 02 Apr 2021 22:31:07 GMT" + "x-ms-client-request-id" : "98eb63ff-3b49-4307-b6e4-b6f0cfadd2aa", + "Date" : "Thu, 27 May 2021 21:09:36 GMT" }, "Exception" : null } ], - "variables" : [ "data-types-tests-index810350ddacc3a3f4448748c" ] + "variables" : [ "data-types-tests-index16462df312f8797954284bf" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.dynamicallyTypedPrimitiveCollectionsDoNotAllRoundtripCorrectly.json b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.dynamicallyTypedPrimitiveCollectionsDoNotAllRoundtripCorrectly.json index c28d7191941f..1f455520e615 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.dynamicallyTypedPrimitiveCollectionsDoNotAllRoundtripCorrectly.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.dynamicallyTypedPrimitiveCollectionsDoNotAllRoundtripCorrectly.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index4772439dd81470819496a98')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index582251d37c1d7c67d4c2f8f')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f19af128-f4fe-4088-82c7-aa52f97e644d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3cadc054-21a8-41d3-af93-607584cb4152", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "2270", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f19af128-f4fe-4088-82c7-aa52f97e644d", + "request-id" : "3cadc054-21a8-41d3-af93-607584cb4152", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:31:18 GMT", + "Date" : "Thu, 27 May 2021 21:09:49 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62708BEBF4B\"", - "client-request-id" : "f19af128-f4fe-4088-82c7-aa52f97e644d", - "elapsed-time" : "1104", + "ETag" : "W/\"0x8D92153C36B1B75\"", + "client-request-id" : "3cadc054-21a8-41d3-af93-607584cb4152", + "elapsed-time" : "1452", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "2431", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62708BEBF4B\\\"\",\"name\":\"data-types-tests-index4772439dd81470819496a98\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"Key\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Bools\",\"type\":\"Collection(Edm.Boolean)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Dates\",\"type\":\"Collection(Edm.DateTimeOffset)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Doubles\",\"type\":\"Collection(Edm.Double)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Points\",\"type\":\"Collection(Edm.GeographyPoint)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Ints\",\"type\":\"Collection(Edm.Int32)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Longs\",\"type\":\"Collection(Edm.Int64)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Strings\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "f19af128-f4fe-4088-82c7-aa52f97e644d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153C36B1B75\\\"\",\"name\":\"data-types-tests-index582251d37c1d7c67d4c2f8f\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"Key\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Bools\",\"type\":\"Collection(Edm.Boolean)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Dates\",\"type\":\"Collection(Edm.DateTimeOffset)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Doubles\",\"type\":\"Collection(Edm.Double)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Points\",\"type\":\"Collection(Edm.GeographyPoint)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Ints\",\"type\":\"Collection(Edm.Int32)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Longs\",\"type\":\"Collection(Edm.Int64)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Strings\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "3cadc054-21a8-41d3-af93-607584cb4152", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('data-types-tests-index4772439dd81470819496a98')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('data-types-tests-index582251d37c1d7c67d4c2f8f')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index4772439dd81470819496a98')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index582251d37c1d7c67d4c2f8f')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "82c9ea77-cda3-4bc0-a10b-1ecdce9bd78b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "da72a36b-aa62-4553-9a0c-dd503bbfa9cd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "82c9ea77-cda3-4bc0-a10b-1ecdce9bd78b", + "request-id" : "da72a36b-aa62-4553-9a0c-dd503bbfa9cd", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:31:18 GMT", + "Date" : "Thu, 27 May 2021 21:09:49 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "82c9ea77-cda3-4bc0-a10b-1ecdce9bd78b", - "elapsed-time" : "113", + "client-request-id" : "da72a36b-aa62-4553-9a0c-dd503bbfa9cd", + "elapsed-time" : "98", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "82c9ea77-cda3-4bc0-a10b-1ecdce9bd78b", + "x-ms-client-request-id" : "da72a36b-aa62-4553-9a0c-dd503bbfa9cd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index4772439dd81470819496a98')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index582251d37c1d7c67d4c2f8f')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "13ec469d-a90c-4be4-82a2-631737c78799" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0a72f2cb-c025-4e11-b759-f50614ad5456" }, "Response" : { + "content-length" : "308", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "13ec469d-a90c-4be4-82a2-631737c78799", + "request-id" : "0a72f2cb-c025-4e11-b759-f50614ad5456", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:31:21 GMT", + "Date" : "Thu, 27 May 2021 21:09:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "13ec469d-a90c-4be4-82a2-631737c78799", + "client-request-id" : "0a72f2cb-c025-4e11-b759-f50614ad5456", "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "308", "Body" : "{\"Key\":\"1\",\"Bools\":[true,false],\"Dates\":[\"2019-08-13T14:30:00Z\"],\"Doubles\":[0.0,5.8,\"INF\",\"-INF\",\"NaN\"],\"Points\":[{\"type\":\"Point\",\"coordinates\":[100.0,1.0],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}}],\"Ints\":[1,2,3,4,-13,5,0],\"Longs\":[9999999999999999,832372345832523],\"Strings\":[\"hello\",\"bye\"]}", - "x-ms-client-request-id" : "13ec469d-a90c-4be4-82a2-631737c78799", + "x-ms-client-request-id" : "0a72f2cb-c025-4e11-b759-f50614ad5456", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index4772439dd81470819496a98')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index582251d37c1d7c67d4c2f8f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "50246f9d-e32d-45a0-9e46-5c146c65024a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "551c361d-0a86-40bd-8556-5b7238d3e91a" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "50246f9d-e32d-45a0-9e46-5c146c65024a", - "elapsed-time" : "556", + "client-request-id" : "551c361d-0a86-40bd-8556-5b7238d3e91a", + "elapsed-time" : "486", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "50246f9d-e32d-45a0-9e46-5c146c65024a", + "request-id" : "551c361d-0a86-40bd-8556-5b7238d3e91a", "StatusCode" : "204", - "x-ms-client-request-id" : "50246f9d-e32d-45a0-9e46-5c146c65024a", - "Date" : "Fri, 02 Apr 2021 22:31:21 GMT" + "x-ms-client-request-id" : "551c361d-0a86-40bd-8556-5b7238d3e91a", + "Date" : "Thu, 27 May 2021 21:09:52 GMT" }, "Exception" : null } ], - "variables" : [ "data-types-tests-index4772439dd81470819496a98" ] + "variables" : [ "data-types-tests-index582251d37c1d7c67d4c2f8f" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.emptyDynamicObjectsInCollectionExpandedOnGetWhenCollectionFieldSelected.json b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.emptyDynamicObjectsInCollectionExpandedOnGetWhenCollectionFieldSelected.json index 924627d080ae..96e3ffe9224f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.emptyDynamicObjectsInCollectionExpandedOnGetWhenCollectionFieldSelected.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.emptyDynamicObjectsInCollectionExpandedOnGetWhenCollectionFieldSelected.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels04477cfc1c72d1b9d4fd198a6c4b680')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels21707887f6654f3914ceeb4ab2796e7')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d544fa2c-dce3-4daa-8434-9cbe3649a875", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3728e156-0f15-4299-b826-a5284cb08a36", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6478", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d544fa2c-dce3-4daa-8434-9cbe3649a875", + "request-id" : "3728e156-0f15-4299-b826-a5284cb08a36", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:30:58 GMT", + "Date" : "Thu, 27 May 2021 21:09:27 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626FD1B1EDF\"", - "client-request-id" : "d544fa2c-dce3-4daa-8434-9cbe3649a875", - "elapsed-time" : "1109", + "ETag" : "W/\"0x8D92153B6F211DF\"", + "client-request-id" : "3728e156-0f15-4299-b826-a5284cb08a36", + "elapsed-time" : "1484", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6927", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626FD1B1EDF\\\"\",\"name\":\"hotels04477cfc1c72d1b9d4fd198a6c4b680\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "d544fa2c-dce3-4daa-8434-9cbe3649a875", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153B6F211DF\\\"\",\"name\":\"hotels21707887f6654f3914ceeb4ab2796e7\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "3728e156-0f15-4299-b826-a5284cb08a36", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels04477cfc1c72d1b9d4fd198a6c4b680')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels21707887f6654f3914ceeb4ab2796e7')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels04477cfc1c72d1b9d4fd198a6c4b680')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels21707887f6654f3914ceeb4ab2796e7')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "676a638a-c5f5-43d7-8adf-7972210a87be", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e12732c5-d090-4245-aeda-9327672e9424", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "676a638a-c5f5-43d7-8adf-7972210a87be", + "request-id" : "e12732c5-d090-4245-aeda-9327672e9424", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:58 GMT", + "Date" : "Thu, 27 May 2021 21:09:27 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "676a638a-c5f5-43d7-8adf-7972210a87be", - "elapsed-time" : "104", + "client-request-id" : "e12732c5-d090-4245-aeda-9327672e9424", + "elapsed-time" : "140", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "676a638a-c5f5-43d7-8adf-7972210a87be", + "x-ms-client-request-id" : "e12732c5-d090-4245-aeda-9327672e9424", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels04477cfc1c72d1b9d4fd198a6c4b680')//docs('1')?$select=HotelId%2CRooms&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels21707887f6654f3914ceeb4ab2796e7')/docs('1')?$select=HotelId%2CRooms&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "999b3632-abe2-4319-bec1-b18fc96d1487" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "91a67b29-c97f-45f9-992a-3de757ee1c2b" }, "Response" : { + "content-length" : "305", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "999b3632-abe2-4319-bec1-b18fc96d1487", + "request-id" : "91a67b29-c97f-45f9-992a-3de757ee1c2b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:31:02 GMT", + "Date" : "Thu, 27 May 2021 21:09:31 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "999b3632-abe2-4319-bec1-b18fc96d1487", - "elapsed-time" : "10", + "client-request-id" : "91a67b29-c97f-45f9-992a-3de757ee1c2b", + "elapsed-time" : "9", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "305", "Body" : "{\"HotelId\":\"1\",\"Rooms\":[{\"Description\":null,\"Description_fr\":null,\"Type\":null,\"BaseRate\":null,\"BedOptions\":null,\"SleepsCount\":null,\"SmokingAllowed\":null,\"Tags\":[]},{\"Description\":null,\"Description_fr\":null,\"Type\":null,\"BaseRate\":null,\"BedOptions\":null,\"SleepsCount\":null,\"SmokingAllowed\":null,\"Tags\":[]}]}", - "x-ms-client-request-id" : "999b3632-abe2-4319-bec1-b18fc96d1487", + "x-ms-client-request-id" : "91a67b29-c97f-45f9-992a-3de757ee1c2b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels04477cfc1c72d1b9d4fd198a6c4b680')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels21707887f6654f3914ceeb4ab2796e7')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6aa33088-5da9-4bdc-8bbb-3ae66d5f4ef8" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a052729e-b793-4c89-8f10-370fdceed298" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6aa33088-5da9-4bdc-8bbb-3ae66d5f4ef8", - "elapsed-time" : "553", + "client-request-id" : "a052729e-b793-4c89-8f10-370fdceed298", + "elapsed-time" : "512", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "6aa33088-5da9-4bdc-8bbb-3ae66d5f4ef8", + "request-id" : "a052729e-b793-4c89-8f10-370fdceed298", "StatusCode" : "204", - "x-ms-client-request-id" : "6aa33088-5da9-4bdc-8bbb-3ae66d5f4ef8", - "Date" : "Fri, 02 Apr 2021 22:31:02 GMT" + "x-ms-client-request-id" : "a052729e-b793-4c89-8f10-370fdceed298", + "Date" : "Thu, 27 May 2021 21:09:31 GMT" }, "Exception" : null } ], - "variables" : [ "hotels04477cfc1c72d1b9d4fd198a6c4b680" ] + "variables" : [ "hotels21707887f6654f3914ceeb4ab2796e7" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.emptyDynamicObjectsOmittedFromCollectionOnGetWhenSubFieldsSelected.json b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.emptyDynamicObjectsOmittedFromCollectionOnGetWhenSubFieldsSelected.json index d0b847e34e7b..1f2607e1fb04 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.emptyDynamicObjectsOmittedFromCollectionOnGetWhenSubFieldsSelected.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.emptyDynamicObjectsOmittedFromCollectionOnGetWhenSubFieldsSelected.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels6764290264b08f9524cb2b3dac15058')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels86847d3971d42d1a74b6fa0d51df30b')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "83040532-6769-40d7-a0a4-f4d0ab6aa28b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d8838948-3d53-4562-9134-21fb666d64aa", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6478", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "83040532-6769-40d7-a0a4-f4d0ab6aa28b", + "request-id" : "d8838948-3d53-4562-9134-21fb666d64aa", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:30:33 GMT", + "Date" : "Thu, 27 May 2021 21:09:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626EE0F7863\"", - "client-request-id" : "83040532-6769-40d7-a0a4-f4d0ab6aa28b", - "elapsed-time" : "1096", + "ETag" : "W/\"0x8D92153A7B63386\"", + "client-request-id" : "d8838948-3d53-4562-9134-21fb666d64aa", + "elapsed-time" : "1443", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6927", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626EE0F7863\\\"\",\"name\":\"hotels6764290264b08f9524cb2b3dac15058\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "83040532-6769-40d7-a0a4-f4d0ab6aa28b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153A7B63386\\\"\",\"name\":\"hotels86847d3971d42d1a74b6fa0d51df30b\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "d8838948-3d53-4562-9134-21fb666d64aa", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels6764290264b08f9524cb2b3dac15058')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels86847d3971d42d1a74b6fa0d51df30b')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels6764290264b08f9524cb2b3dac15058')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels86847d3971d42d1a74b6fa0d51df30b')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ad8a950-5d7f-481a-8305-9f3e7784d172", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ca41e20d-0723-406a-8cf5-76a73cf66ff5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8ad8a950-5d7f-481a-8305-9f3e7784d172", + "request-id" : "ca41e20d-0723-406a-8cf5-76a73cf66ff5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:33 GMT", + "Date" : "Thu, 27 May 2021 21:09:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8ad8a950-5d7f-481a-8305-9f3e7784d172", - "elapsed-time" : "106", + "client-request-id" : "ca41e20d-0723-406a-8cf5-76a73cf66ff5", + "elapsed-time" : "90", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "8ad8a950-5d7f-481a-8305-9f3e7784d172", + "x-ms-client-request-id" : "ca41e20d-0723-406a-8cf5-76a73cf66ff5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels6764290264b08f9524cb2b3dac15058')//docs('1')?$select=HotelId%2CRooms/BaseRate%2CRooms/BedOptions%2CRooms/SleepsCount%2CRooms/SmokingAllowed%2CRooms/Tags&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels86847d3971d42d1a74b6fa0d51df30b')/docs('1')?$select=HotelId%2CRooms/BaseRate%2CRooms/BedOptions%2CRooms/SleepsCount%2CRooms/SmokingAllowed%2CRooms/Tags&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "dae5cf31-8cf8-4641-9313-7be1bc55e47f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f14d2b8d-f1a5-4451-9028-8c1ce2d32181" }, "Response" : { + "content-length" : "112", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "dae5cf31-8cf8-4641-9313-7be1bc55e47f", + "request-id" : "f14d2b8d-f1a5-4451-9028-8c1ce2d32181", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:36 GMT", + "Date" : "Thu, 27 May 2021 21:09:06 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "dae5cf31-8cf8-4641-9313-7be1bc55e47f", - "elapsed-time" : "9", + "client-request-id" : "f14d2b8d-f1a5-4451-9028-8c1ce2d32181", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "112", "Body" : "{\"HotelId\":\"1\",\"Rooms\":[{\"BaseRate\":null,\"BedOptions\":null,\"SleepsCount\":null,\"SmokingAllowed\":null,\"Tags\":[]}]}", - "x-ms-client-request-id" : "dae5cf31-8cf8-4641-9313-7be1bc55e47f", + "x-ms-client-request-id" : "f14d2b8d-f1a5-4451-9028-8c1ce2d32181", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels6764290264b08f9524cb2b3dac15058')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels86847d3971d42d1a74b6fa0d51df30b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "64d5136f-35e9-496f-b237-82b9e5301e44" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d5ce8ede-929b-450c-a390-6b4498b09f26" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "64d5136f-35e9-496f-b237-82b9e5301e44", - "elapsed-time" : "528", + "client-request-id" : "d5ce8ede-929b-450c-a390-6b4498b09f26", + "elapsed-time" : "506", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "64d5136f-35e9-496f-b237-82b9e5301e44", + "request-id" : "d5ce8ede-929b-450c-a390-6b4498b09f26", "StatusCode" : "204", - "x-ms-client-request-id" : "64d5136f-35e9-496f-b237-82b9e5301e44", - "Date" : "Fri, 02 Apr 2021 22:30:36 GMT" + "x-ms-client-request-id" : "d5ce8ede-929b-450c-a390-6b4498b09f26", + "Date" : "Thu, 27 May 2021 21:09:06 GMT" }, "Exception" : null } ], - "variables" : [ "hotels6764290264b08f9524cb2b3dac15058" ] + "variables" : [ "hotels86847d3971d42d1a74b6fa0d51df30b" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.emptyDynamicallyTypedPrimitiveCollectionsRoundtripAsObjectArrays.json b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.emptyDynamicallyTypedPrimitiveCollectionsRoundtripAsObjectArrays.json index 7032ed2ccccc..d766afc97141 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.emptyDynamicallyTypedPrimitiveCollectionsRoundtripAsObjectArrays.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.emptyDynamicallyTypedPrimitiveCollectionsRoundtripAsObjectArrays.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index9131991f5079994844bea9f')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index430884f617c2d70ad448a81')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "fd58f865-54b3-4254-bd0c-b680bac9a51f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c642b59c-b423-412d-922b-98a03a4a4181", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "2270", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "fd58f865-54b3-4254-bd0c-b680bac9a51f", + "request-id" : "c642b59c-b423-412d-922b-98a03a4a4181", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:31:13 GMT", + "Date" : "Thu, 27 May 2021 21:09:44 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62705DAA66D\"", - "client-request-id" : "fd58f865-54b3-4254-bd0c-b680bac9a51f", - "elapsed-time" : "1051", + "ETag" : "W/\"0x8D92153C04FB614\"", + "client-request-id" : "c642b59c-b423-412d-922b-98a03a4a4181", + "elapsed-time" : "1462", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "2431", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62705DAA66D\\\"\",\"name\":\"data-types-tests-index9131991f5079994844bea9f\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"Key\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Bools\",\"type\":\"Collection(Edm.Boolean)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Dates\",\"type\":\"Collection(Edm.DateTimeOffset)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Doubles\",\"type\":\"Collection(Edm.Double)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Points\",\"type\":\"Collection(Edm.GeographyPoint)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Ints\",\"type\":\"Collection(Edm.Int32)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Longs\",\"type\":\"Collection(Edm.Int64)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Strings\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "fd58f865-54b3-4254-bd0c-b680bac9a51f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153C04FB614\\\"\",\"name\":\"data-types-tests-index430884f617c2d70ad448a81\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"Key\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Bools\",\"type\":\"Collection(Edm.Boolean)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Dates\",\"type\":\"Collection(Edm.DateTimeOffset)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Doubles\",\"type\":\"Collection(Edm.Double)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Points\",\"type\":\"Collection(Edm.GeographyPoint)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Ints\",\"type\":\"Collection(Edm.Int32)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Longs\",\"type\":\"Collection(Edm.Int64)\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Strings\",\"type\":\"Collection(Edm.String)\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "c642b59c-b423-412d-922b-98a03a4a4181", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('data-types-tests-index9131991f5079994844bea9f')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('data-types-tests-index430884f617c2d70ad448a81')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index9131991f5079994844bea9f')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index430884f617c2d70ad448a81')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a3549703-053c-43c6-a7cc-683bc63c0a8f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b7c5372d-5094-4e06-9550-95d71ef2e85f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a3549703-053c-43c6-a7cc-683bc63c0a8f", + "request-id" : "b7c5372d-5094-4e06-9550-95d71ef2e85f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:31:13 GMT", + "Date" : "Thu, 27 May 2021 21:09:44 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a3549703-053c-43c6-a7cc-683bc63c0a8f", - "elapsed-time" : "83", + "client-request-id" : "b7c5372d-5094-4e06-9550-95d71ef2e85f", + "elapsed-time" : "91", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "a3549703-053c-43c6-a7cc-683bc63c0a8f", + "x-ms-client-request-id" : "b7c5372d-5094-4e06-9550-95d71ef2e85f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index9131991f5079994844bea9f')//docs('3')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index430884f617c2d70ad448a81')/docs('3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a1f386e-0c4b-4775-a318-b985d69fe5ef" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "77bc1632-a85c-4772-8841-2da14f55a799" }, "Response" : { + "content-length" : "92", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9a1f386e-0c4b-4775-a318-b985d69fe5ef", + "request-id" : "77bc1632-a85c-4772-8841-2da14f55a799", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:31:16 GMT", + "Date" : "Thu, 27 May 2021 21:09:47 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9a1f386e-0c4b-4775-a318-b985d69fe5ef", - "elapsed-time" : "13", + "client-request-id" : "77bc1632-a85c-4772-8841-2da14f55a799", + "elapsed-time" : "12", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "92", "Body" : "{\"Key\":\"3\",\"Bools\":[],\"Dates\":[],\"Doubles\":[],\"Points\":[],\"Ints\":[],\"Longs\":[],\"Strings\":[]}", - "x-ms-client-request-id" : "9a1f386e-0c4b-4775-a318-b985d69fe5ef", + "x-ms-client-request-id" : "77bc1632-a85c-4772-8841-2da14f55a799", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index9131991f5079994844bea9f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('data-types-tests-index430884f617c2d70ad448a81')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b7c9463c-d934-43bb-8c80-79d25b8f99a3" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1b3ae7b8-da13-41cb-9135-b1090f2248a1" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b7c9463c-d934-43bb-8c80-79d25b8f99a3", - "elapsed-time" : "557", + "client-request-id" : "1b3ae7b8-da13-41cb-9135-b1090f2248a1", + "elapsed-time" : "525", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "b7c9463c-d934-43bb-8c80-79d25b8f99a3", + "request-id" : "1b3ae7b8-da13-41cb-9135-b1090f2248a1", "StatusCode" : "204", - "x-ms-client-request-id" : "b7c9463c-d934-43bb-8c80-79d25b8f99a3", - "Date" : "Fri, 02 Apr 2021 22:31:16 GMT" + "x-ms-client-request-id" : "1b3ae7b8-da13-41cb-9135-b1090f2248a1", + "Date" : "Thu, 27 May 2021 21:09:47 GMT" }, "Exception" : null } ], - "variables" : [ "data-types-tests-index9131991f5079994844bea9f" ] + "variables" : [ "data-types-tests-index430884f617c2d70ad448a81" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.getDynamicDocumentCannotAlwaysDetermineCorrectType.json b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.getDynamicDocumentCannotAlwaysDetermineCorrectType.json index 3b33ac367ce9..c432b504f08f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.getDynamicDocumentCannotAlwaysDetermineCorrectType.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.getDynamicDocumentCannotAlwaysDetermineCorrectType.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels8000483a38138eb4b4fa8a0b6aa2cc8')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels538369d09aec344dd42f88568634175')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e8dad64-60f1-4df9-add7-f3b1e6d923ae", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1c8af6e6-96ff-4c48-854c-c298f2c5af1a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6478", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8e8dad64-60f1-4df9-add7-f3b1e6d923ae", + "request-id" : "1c8af6e6-96ff-4c48-854c-c298f2c5af1a", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:30:38 GMT", + "Date" : "Thu, 27 May 2021 21:09:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626F0F650CE\"", - "client-request-id" : "8e8dad64-60f1-4df9-add7-f3b1e6d923ae", - "elapsed-time" : "1102", + "ETag" : "W/\"0x8D92153AAD03916\"", + "client-request-id" : "1c8af6e6-96ff-4c48-854c-c298f2c5af1a", + "elapsed-time" : "1462", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6927", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626F0F650CE\\\"\",\"name\":\"hotels8000483a38138eb4b4fa8a0b6aa2cc8\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "8e8dad64-60f1-4df9-add7-f3b1e6d923ae", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153AAD03916\\\"\",\"name\":\"hotels538369d09aec344dd42f88568634175\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "1c8af6e6-96ff-4c48-854c-c298f2c5af1a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels8000483a38138eb4b4fa8a0b6aa2cc8')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels538369d09aec344dd42f88568634175')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels8000483a38138eb4b4fa8a0b6aa2cc8')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels538369d09aec344dd42f88568634175')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ae4fd193-82fa-445f-b4ff-50d65dd5396a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bd521d03-816f-489e-827f-c16691402974", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ae4fd193-82fa-445f-b4ff-50d65dd5396a", + "request-id" : "bd521d03-816f-489e-827f-c16691402974", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:38 GMT", + "Date" : "Thu, 27 May 2021 21:09:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ae4fd193-82fa-445f-b4ff-50d65dd5396a", - "elapsed-time" : "86", + "client-request-id" : "bd521d03-816f-489e-827f-c16691402974", + "elapsed-time" : "106", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "ae4fd193-82fa-445f-b4ff-50d65dd5396a", + "x-ms-client-request-id" : "bd521d03-816f-489e-827f-c16691402974", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels8000483a38138eb4b4fa8a0b6aa2cc8')//docs('1')?$select=HotelId%2CLastRenovationDate%2CLocation%2CRooms/BaseRate&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels538369d09aec344dd42f88568634175')/docs('1')?$select=HotelId%2CLastRenovationDate%2CLocation%2CRooms/BaseRate&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1886d0e-4e82-4b0a-b8b0-9d97c2d1c25c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c419f6e0-f91a-482e-80d8-31047640d69c" }, "Response" : { + "content-length" : "213", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f1886d0e-4e82-4b0a-b8b0-9d97c2d1c25c", + "request-id" : "c419f6e0-f91a-482e-80d8-31047640d69c", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:38 GMT", + "Date" : "Thu, 27 May 2021 21:09:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f1886d0e-4e82-4b0a-b8b0-9d97c2d1c25c", + "client-request-id" : "c419f6e0-f91a-482e-80d8-31047640d69c", "elapsed-time" : "19", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "213", "Body" : "{\"HotelId\":\"1\",\"LastRenovationDate\":\"2017-01-13T21:03:00.755Z\",\"Location\":{\"type\":\"Point\",\"coordinates\":[-73.975403,40.760586],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Rooms\":[{\"BaseRate\":\"NaN\"}]}", - "x-ms-client-request-id" : "f1886d0e-4e82-4b0a-b8b0-9d97c2d1c25c", + "x-ms-client-request-id" : "c419f6e0-f91a-482e-80d8-31047640d69c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels8000483a38138eb4b4fa8a0b6aa2cc8')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels538369d09aec344dd42f88568634175')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "913d9eed-315e-4aea-a0b1-9617ac6f4d3f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8e5b65b9-d655-4c9f-964c-15acb9ae0581" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "913d9eed-315e-4aea-a0b1-9617ac6f4d3f", - "elapsed-time" : "1355", + "client-request-id" : "8e5b65b9-d655-4c9f-964c-15acb9ae0581", + "elapsed-time" : "575", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "913d9eed-315e-4aea-a0b1-9617ac6f4d3f", + "request-id" : "8e5b65b9-d655-4c9f-964c-15acb9ae0581", "StatusCode" : "204", - "x-ms-client-request-id" : "913d9eed-315e-4aea-a0b1-9617ac6f4d3f", - "Date" : "Fri, 02 Apr 2021 22:30:39 GMT" + "x-ms-client-request-id" : "8e5b65b9-d655-4c9f-964c-15acb9ae0581", + "Date" : "Thu, 27 May 2021 21:09:08 GMT" }, "Exception" : null } ], - "variables" : [ "hotels8000483a38138eb4b4fa8a0b6aa2cc8" ] + "variables" : [ "hotels538369d09aec344dd42f88568634175" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.getDynamicDocumentWithEmptyObjectsReturnsObjectsFullOfNulls.json b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.getDynamicDocumentWithEmptyObjectsReturnsObjectsFullOfNulls.json index 6a4e1e5d2771..1d98dee5fb38 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.getDynamicDocumentWithEmptyObjectsReturnsObjectsFullOfNulls.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.getDynamicDocumentWithEmptyObjectsReturnsObjectsFullOfNulls.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels739110e747206f1164cfe96e5e8e778')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels8255494f2b7f9b9e146e689ff83503f')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "644f3873-3bff-47eb-830b-7b85119aba71", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4868582e-c652-4329-aa09-07946fe61040", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6478", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "644f3873-3bff-47eb-830b-7b85119aba71", + "request-id" : "4868582e-c652-4329-aa09-07946fe61040", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:31:23 GMT", + "Date" : "Thu, 27 May 2021 21:09:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6270BBD4289\"", - "client-request-id" : "644f3873-3bff-47eb-830b-7b85119aba71", - "elapsed-time" : "1248", + "ETag" : "W/\"0x8D92153C6A187E2\"", + "client-request-id" : "4868582e-c652-4329-aa09-07946fe61040", + "elapsed-time" : "1678", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6927", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6270BBD4289\\\"\",\"name\":\"hotels739110e747206f1164cfe96e5e8e778\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "644f3873-3bff-47eb-830b-7b85119aba71", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153C6A187E2\\\"\",\"name\":\"hotels8255494f2b7f9b9e146e689ff83503f\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "4868582e-c652-4329-aa09-07946fe61040", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels739110e747206f1164cfe96e5e8e778')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels8255494f2b7f9b9e146e689ff83503f')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels739110e747206f1164cfe96e5e8e778')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels8255494f2b7f9b9e146e689ff83503f')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b48cb11a-8842-4e5d-b7a5-ed91f15d7208", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "04b3c56a-c2ef-48ad-b9a9-ef2d8b430f00", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b48cb11a-8842-4e5d-b7a5-ed91f15d7208", + "request-id" : "04b3c56a-c2ef-48ad-b9a9-ef2d8b430f00", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:31:23 GMT", + "Date" : "Thu, 27 May 2021 21:09:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b48cb11a-8842-4e5d-b7a5-ed91f15d7208", - "elapsed-time" : "102", + "client-request-id" : "04b3c56a-c2ef-48ad-b9a9-ef2d8b430f00", + "elapsed-time" : "98", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "b48cb11a-8842-4e5d-b7a5-ed91f15d7208", + "x-ms-client-request-id" : "04b3c56a-c2ef-48ad-b9a9-ef2d8b430f00", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels739110e747206f1164cfe96e5e8e778')//docs('1')?$select=HotelId%2CAddress&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels8255494f2b7f9b9e146e689ff83503f')/docs('1')?$select=HotelId%2CAddress&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8fff1d7b-e20c-4823-8e91-e25ec96ebd75" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4d3db593-aca2-48eb-bbbb-bc4f5329aa7b" }, "Response" : { + "content-length" : "114", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8fff1d7b-e20c-4823-8e91-e25ec96ebd75", + "request-id" : "4d3db593-aca2-48eb-bbbb-bc4f5329aa7b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:31:26 GMT", + "Date" : "Thu, 27 May 2021 21:09:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8fff1d7b-e20c-4823-8e91-e25ec96ebd75", - "elapsed-time" : "11", + "client-request-id" : "4d3db593-aca2-48eb-bbbb-bc4f5329aa7b", + "elapsed-time" : "7", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "114", "Body" : "{\"HotelId\":\"1\",\"Address\":{\"StreetAddress\":null,\"City\":null,\"StateProvince\":null,\"PostalCode\":null,\"Country\":null}}", - "x-ms-client-request-id" : "8fff1d7b-e20c-4823-8e91-e25ec96ebd75", + "x-ms-client-request-id" : "4d3db593-aca2-48eb-bbbb-bc4f5329aa7b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels739110e747206f1164cfe96e5e8e778')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels8255494f2b7f9b9e146e689ff83503f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f77b2428-cd4d-418b-b016-bb4116870c84" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4fce5c20-d58f-4dd1-85a5-c3a7e8f8de93" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f77b2428-cd4d-418b-b016-bb4116870c84", - "elapsed-time" : "517", + "client-request-id" : "4fce5c20-d58f-4dd1-85a5-c3a7e8f8de93", + "elapsed-time" : "527", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "f77b2428-cd4d-418b-b016-bb4116870c84", + "request-id" : "4fce5c20-d58f-4dd1-85a5-c3a7e8f8de93", "StatusCode" : "204", - "x-ms-client-request-id" : "f77b2428-cd4d-418b-b016-bb4116870c84", - "Date" : "Fri, 02 Apr 2021 22:31:26 GMT" + "x-ms-client-request-id" : "4fce5c20-d58f-4dd1-85a5-c3a7e8f8de93", + "Date" : "Thu, 27 May 2021 21:09:58 GMT" }, "Exception" : null } ], - "variables" : [ "hotels739110e747206f1164cfe96e5e8e778" ] + "variables" : [ "hotels8255494f2b7f9b9e146e689ff83503f" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.getStaticallyTypedDocumentSetsUnselectedFieldsToNull.json b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.getStaticallyTypedDocumentSetsUnselectedFieldsToNull.json index f85043902dc7..a98ac3e144a8 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.getStaticallyTypedDocumentSetsUnselectedFieldsToNull.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.getStaticallyTypedDocumentSetsUnselectedFieldsToNull.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels663267accc23b66cc431e8128499ba8')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels579430fbe50e6fd60477181a24a69be')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "48a8106a-919b-4238-9742-64c4ab3b66a5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "974a85dd-9c0c-420e-8b74-7b311fddda32", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6478", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "48a8106a-919b-4238-9742-64c4ab3b66a5", + "request-id" : "974a85dd-9c0c-420e-8b74-7b311fddda32", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:30:41 GMT", + "Date" : "Thu, 27 May 2021 21:09:10 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626F28D3D35\"", - "client-request-id" : "48a8106a-919b-4238-9742-64c4ab3b66a5", - "elapsed-time" : "1099", + "ETag" : "W/\"0x8D92153AC2FE219\"", + "client-request-id" : "974a85dd-9c0c-420e-8b74-7b311fddda32", + "elapsed-time" : "1493", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6927", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626F28D3D35\\\"\",\"name\":\"hotels663267accc23b66cc431e8128499ba8\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "48a8106a-919b-4238-9742-64c4ab3b66a5", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153AC2FE219\\\"\",\"name\":\"hotels579430fbe50e6fd60477181a24a69be\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "974a85dd-9c0c-420e-8b74-7b311fddda32", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels663267accc23b66cc431e8128499ba8')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotels579430fbe50e6fd60477181a24a69be')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels663267accc23b66cc431e8128499ba8')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels579430fbe50e6fd60477181a24a69be')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "826af001-9f28-48e9-80dd-3c41081ea689", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "70402eac-bb20-4a57-b265-5b037ed2c717", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "826af001-9f28-48e9-80dd-3c41081ea689", + "request-id" : "70402eac-bb20-4a57-b265-5b037ed2c717", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:41 GMT", + "Date" : "Thu, 27 May 2021 21:09:10 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "826af001-9f28-48e9-80dd-3c41081ea689", - "elapsed-time" : "122", + "client-request-id" : "70402eac-bb20-4a57-b265-5b037ed2c717", + "elapsed-time" : "100", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "826af001-9f28-48e9-80dd-3c41081ea689", + "x-ms-client-request-id" : "70402eac-bb20-4a57-b265-5b037ed2c717", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels663267accc23b66cc431e8128499ba8')//docs('2')?$select=Description%2CHotelName%2CAddress/City%2CRooms/BaseRate&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels579430fbe50e6fd60477181a24a69be')/docs('2')?$select=Description%2CHotelName%2CAddress/City%2CRooms/BaseRate&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6d401a2f-7f44-4237-a5eb-edc88bf6e1d9" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1ddb562d-1b8a-4db2-aa6d-4ade5fdf40a8" }, "Response" : { + "content-length" : "288", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6d401a2f-7f44-4237-a5eb-edc88bf6e1d9", + "request-id" : "1ddb562d-1b8a-4db2-aa6d-4ade5fdf40a8", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:44 GMT", + "Date" : "Thu, 27 May 2021 21:09:13 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6d401a2f-7f44-4237-a5eb-edc88bf6e1d9", - "elapsed-time" : "8", + "client-request-id" : "1ddb562d-1b8a-4db2-aa6d-4ade5fdf40a8", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "288", "Body" : "{\"HotelName\":\"Countryside Hotel\",\"Description\":\"Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer & dryer, 24/7 support, bowling alley, fitness center and more.\",\"Address\":{\"City\":\"Durham\"},\"Rooms\":[{\"BaseRate\":2.44},{\"BaseRate\":7.69}]}", - "x-ms-client-request-id" : "6d401a2f-7f44-4237-a5eb-edc88bf6e1d9", + "x-ms-client-request-id" : "1ddb562d-1b8a-4db2-aa6d-4ade5fdf40a8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotels663267accc23b66cc431e8128499ba8')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotels579430fbe50e6fd60477181a24a69be')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a5eb38ca-add4-4f0b-899e-b5a1c0a341b1" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d2d9abbd-ea4c-421c-b537-48e91dd9a7f0" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a5eb38ca-add4-4f0b-899e-b5a1c0a341b1", - "elapsed-time" : "517", + "client-request-id" : "d2d9abbd-ea4c-421c-b537-48e91dd9a7f0", + "elapsed-time" : "513", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "a5eb38ca-add4-4f0b-899e-b5a1c0a341b1", + "request-id" : "d2d9abbd-ea4c-421c-b537-48e91dd9a7f0", "StatusCode" : "204", - "x-ms-client-request-id" : "a5eb38ca-add4-4f0b-899e-b5a1c0a341b1", - "Date" : "Fri, 02 Apr 2021 22:30:44 GMT" + "x-ms-client-request-id" : "d2d9abbd-ea4c-421c-b537-48e91dd9a7f0", + "Date" : "Thu, 27 May 2021 21:09:14 GMT" }, "Exception" : null } ], - "variables" : [ "hotels663267accc23b66cc431e8128499ba8" ] + "variables" : [ "hotels579430fbe50e6fd60477181a24a69be" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.roundTrippingDateTimeOffsetNormalizesToUtc.json b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.roundTrippingDateTimeOffsetNormalizesToUtc.json index d7e1b5152394..2b0e5f2b2388 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.roundTrippingDateTimeOffsetNormalizesToUtc.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/LookupSyncTests.roundTrippingDateTimeOffsetNormalizesToUtc.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsroundtrippingdatetimeoffsetnormalizestoutc23c877564aa4')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsroundtrippingdatetimeoffsetnormalizestoutc9556956622f3')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7acdf72f-3f1d-455c-87c1-cc35006fcab5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2e1a6ba2-2cec-4b61-99d8-1fe770249ebd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6501", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7acdf72f-3f1d-455c-87c1-cc35006fcab5", + "request-id" : "2e1a6ba2-2cec-4b61-99d8-1fe770249ebd", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:30:55 GMT", + "Date" : "Thu, 27 May 2021 21:09:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F626FB8BADAD\"", - "client-request-id" : "7acdf72f-3f1d-455c-87c1-cc35006fcab5", - "elapsed-time" : "1103", + "ETag" : "W/\"0x8D92153B59FB1BE\"", + "client-request-id" : "2e1a6ba2-2cec-4b61-99d8-1fe770249ebd", + "elapsed-time" : "1451", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6950", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F626FB8BADAD\\\"\",\"name\":\"hotelsroundtrippingdatetimeoffsetnormalizestoutc23c877564aa4\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "7acdf72f-3f1d-455c-87c1-cc35006fcab5", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153B59FB1BE\\\"\",\"name\":\"hotelsroundtrippingdatetimeoffsetnormalizestoutc9556956622f3\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "2e1a6ba2-2cec-4b61-99d8-1fe770249ebd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsroundtrippingdatetimeoffsetnormalizestoutc23c877564aa4')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsroundtrippingdatetimeoffsetnormalizestoutc9556956622f3')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsroundtrippingdatetimeoffsetnormalizestoutc23c877564aa4')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsroundtrippingdatetimeoffsetnormalizestoutc9556956622f3')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a69bc5f2-2101-4448-a291-47eb6bebe5ce", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4d4c28ea-fe32-48b3-97ab-83e68619b7b8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a69bc5f2-2101-4448-a291-47eb6bebe5ce", + "request-id" : "4d4c28ea-fe32-48b3-97ab-83e68619b7b8", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:55 GMT", + "Date" : "Thu, 27 May 2021 21:09:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a69bc5f2-2101-4448-a291-47eb6bebe5ce", - "elapsed-time" : "108", + "client-request-id" : "4d4c28ea-fe32-48b3-97ab-83e68619b7b8", + "elapsed-time" : "92", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "a69bc5f2-2101-4448-a291-47eb6bebe5ce", + "x-ms-client-request-id" : "4d4c28ea-fe32-48b3-97ab-83e68619b7b8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsroundtrippingdatetimeoffsetnormalizestoutc23c877564aa4')//docs('1')?$select=HotelId%2CLastRenovationDate&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsroundtrippingdatetimeoffsetnormalizestoutc9556956622f3')/docs('1')?$select=HotelId%2CLastRenovationDate&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "008ae074-063d-4849-9a28-67718547cb82" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c1d495f6-e9aa-42c4-a311-2af7b02cd6d9" }, "Response" : { + "content-length" : "59", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "008ae074-063d-4849-9a28-67718547cb82", + "request-id" : "c1d495f6-e9aa-42c4-a311-2af7b02cd6d9", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:30:56 GMT", + "Date" : "Thu, 27 May 2021 21:09:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "008ae074-063d-4849-9a28-67718547cb82", - "elapsed-time" : "21", + "client-request-id" : "c1d495f6-e9aa-42c4-a311-2af7b02cd6d9", + "elapsed-time" : "19", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "59", "Body" : "{\"HotelId\":\"1\",\"LastRenovationDate\":\"2010-06-27T08:00:00Z\"}", - "x-ms-client-request-id" : "008ae074-063d-4849-9a28-67718547cb82", + "x-ms-client-request-id" : "c1d495f6-e9aa-42c4-a311-2af7b02cd6d9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsroundtrippingdatetimeoffsetnormalizestoutc23c877564aa4')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsroundtrippingdatetimeoffsetnormalizestoutc9556956622f3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c33374e0-b515-49c9-ac1b-47cf70b521da" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0ef9425c-d385-406d-a9b9-e0091bcc14cd" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c33374e0-b515-49c9-ac1b-47cf70b521da", - "elapsed-time" : "1256", + "client-request-id" : "0ef9425c-d385-406d-a9b9-e0091bcc14cd", + "elapsed-time" : "498", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "c33374e0-b515-49c9-ac1b-47cf70b521da", + "request-id" : "0ef9425c-d385-406d-a9b9-e0091bcc14cd", "StatusCode" : "204", - "x-ms-client-request-id" : "c33374e0-b515-49c9-ac1b-47cf70b521da", - "Date" : "Fri, 02 Apr 2021 22:30:57 GMT" + "x-ms-client-request-id" : "0ef9425c-d385-406d-a9b9-e0091bcc14cd", + "Date" : "Thu, 27 May 2021 21:09:26 GMT" }, "Exception" : null } ], - "variables" : [ "hotelsroundtrippingdatetimeoffsetnormalizestoutc23c877564aa4" ] + "variables" : [ "hotelsroundtrippingdatetimeoffsetnormalizestoutc9556956622f3" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.canGetDynamicDocument.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.canGetDynamicDocument.json index b19b47822e40..263193a4ccde 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.canGetDynamicDocument.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.canGetDynamicDocument.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdynamicdocument75297541c3f0ce3455f140')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdynamicdocumente3b18690dadeefc3cd4f4e')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8cab942f-c7e9-4c13-bc31-80af0d1293a8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "89b886ce-8cbd-49e7-a998-2382f6fb5f7a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6490", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8cab942f-c7e9-4c13-bc31-80af0d1293a8", + "request-id" : "89b886ce-8cbd-49e7-a998-2382f6fb5f7a", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:31:54 GMT", + "Date" : "Thu, 27 May 2021 21:10:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6271E72E57C\"", - "client-request-id" : "8cab942f-c7e9-4c13-bc31-80af0d1293a8", - "elapsed-time" : "1277", + "ETag" : "W/\"0x8D92153CB19131F\"", + "client-request-id" : "89b886ce-8cbd-49e7-a998-2382f6fb5f7a", + "elapsed-time" : "1516", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6939", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6271E72E57C\\\"\",\"name\":\"hotelscangetdynamicdocument75297541c3f0ce3455f140\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "8cab942f-c7e9-4c13-bc31-80af0d1293a8", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153CB19131F\\\"\",\"name\":\"hotelscangetdynamicdocumente3b18690dadeefc3cd4f4e\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "89b886ce-8cbd-49e7-a998-2382f6fb5f7a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscangetdynamicdocument75297541c3f0ce3455f140')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscangetdynamicdocumente3b18690dadeefc3cd4f4e')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdynamicdocument75297541c3f0ce3455f140')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdynamicdocumente3b18690dadeefc3cd4f4e')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "791755e8-792c-4047-8c7e-e47ef278c9a8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "951c585d-2898-4958-b525-12364f657020", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "791755e8-792c-4047-8c7e-e47ef278c9a8", + "request-id" : "951c585d-2898-4958-b525-12364f657020", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:31:54 GMT", + "Date" : "Thu, 27 May 2021 21:10:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "791755e8-792c-4047-8c7e-e47ef278c9a8", - "elapsed-time" : "127", + "client-request-id" : "951c585d-2898-4958-b525-12364f657020", + "elapsed-time" : "96", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "791755e8-792c-4047-8c7e-e47ef278c9a8", + "x-ms-client-request-id" : "951c585d-2898-4958-b525-12364f657020", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdynamicdocument75297541c3f0ce3455f140')//docs('1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdynamicdocumente3b18690dadeefc3cd4f4e')/docs('1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b93a12a4-8abb-4bfd-82ee-6c6c2b4fb041" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "60498049-28a8-4d49-a36b-3418e5df9c8d" }, "Response" : { + "content-length" : "1667", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b93a12a4-8abb-4bfd-82ee-6c6c2b4fb041", + "request-id" : "60498049-28a8-4d49-a36b-3418e5df9c8d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:31:58 GMT", + "Date" : "Thu, 27 May 2021 21:10:05 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b93a12a4-8abb-4bfd-82ee-6c6c2b4fb041", - "elapsed-time" : "14", + "client-request-id" : "60498049-28a8-4d49-a36b-3418e5df9c8d", + "elapsed-time" : "50", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1667", "Body" : "{\"HotelId\":\"1\",\"HotelName\":\"Secret Point Motel\",\"Description\":\"The hotel is ideally located on the main commercial artery of the city in the heart of New York. A few minutes away is Time's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.\",\"Description_fr\":\"L'h\\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'autres lieux d'int\\u00e9r\\u00eat qui font de New York l'une des villes les plus attractives et cosmopolites de l'Am\\u00e9rique.\",\"Category\":\"Boutique\",\"Tags\":[\"pool\",\"air conditioning\",\"concierge\"],\"ParkingIncluded\":false,\"SmokingAllowed\":true,\"LastRenovationDate\":\"1970-01-18T00:00:00Z\",\"Rating\":3,\"Location\":{\"type\":\"Point\",\"coordinates\":[-73.975403,40.760586],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"677 5th Ave\",\"City\":\"New York\",\"StateProvince\":\"NY\",\"PostalCode\":\"10022\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed (Cityside)\",\"Description_fr\":\"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)\",\"Description_fr\":\"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\"]}]}", - "x-ms-client-request-id" : "b93a12a4-8abb-4bfd-82ee-6c6c2b4fb041", + "x-ms-client-request-id" : "60498049-28a8-4d49-a36b-3418e5df9c8d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdynamicdocument75297541c3f0ce3455f140')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetdynamicdocumente3b18690dadeefc3cd4f4e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b6793422-f397-49f5-9959-a0a6bc4ceac7" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5ef817e4-7f87-4092-b674-2512cb548a18" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b6793422-f397-49f5-9959-a0a6bc4ceac7", - "elapsed-time" : "527", + "client-request-id" : "5ef817e4-7f87-4092-b674-2512cb548a18", + "elapsed-time" : "2337", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "b6793422-f397-49f5-9959-a0a6bc4ceac7", + "request-id" : "5ef817e4-7f87-4092-b674-2512cb548a18", "StatusCode" : "204", - "x-ms-client-request-id" : "b6793422-f397-49f5-9959-a0a6bc4ceac7", - "Date" : "Fri, 02 Apr 2021 22:31:58 GMT" + "x-ms-client-request-id" : "5ef817e4-7f87-4092-b674-2512cb548a18", + "Date" : "Thu, 27 May 2021 21:10:08 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscangetdynamicdocument75297541c3f0ce3455f140" ] + "variables" : [ "hotelscangetdynamicdocumente3b18690dadeefc3cd4f4e" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.canGetPaginatedDocuments.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.canGetPaginatedDocuments.json index 934e036559bc..a09bf3c34edf 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.canGetPaginatedDocuments.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.canGetPaginatedDocuments.json @@ -1,405 +1,405 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "07da21bc-ea7d-4ee8-b1b9-59b08177a849", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "754d66f8-f87a-4c01-b5ea-219f8931eb22", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6492", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "07da21bc-ea7d-4ee8-b1b9-59b08177a849", + "request-id" : "754d66f8-f87a-4c01-b5ea-219f8931eb22", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:31:59 GMT", + "Date" : "Thu, 27 May 2021 21:10:09 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62721585E17\"", - "client-request-id" : "07da21bc-ea7d-4ee8-b1b9-59b08177a849", - "elapsed-time" : "1048", + "ETag" : "W/\"0x8D92153CFA2F13B\"", + "client-request-id" : "754d66f8-f87a-4c01-b5ea-219f8931eb22", + "elapsed-time" : "1735", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6941", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62721585E17\\\"\",\"name\":\"hotelscangetpaginateddocumentsedd907854fa7ec1394434\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "07da21bc-ea7d-4ee8-b1b9-59b08177a849", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153CFA2F13B\\\"\",\"name\":\"hotelscangetpaginateddocumentsb243323633f43c04b13e4\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "754d66f8-f87a-4c01-b5ea-219f8931eb22", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b0c71c1-1f55-4951-b844-d482c0a16f6b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "322d499e-568a-4b1d-a282-e74b68f3b1fe", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12903", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8b0c71c1-1f55-4951-b844-d482c0a16f6b", + "request-id" : "322d499e-568a-4b1d-a282-e74b68f3b1fe", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:31:59 GMT", + "Date" : "Thu, 27 May 2021 21:10:09 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8b0c71c1-1f55-4951-b844-d482c0a16f6b", - "elapsed-time" : "133", + "client-request-id" : "322d499e-568a-4b1d-a282-e74b68f3b1fe", + "elapsed-time" : "119", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12903", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"5\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"6\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"7\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"8\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"9\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"10\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"11\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"12\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"13\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"14\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"15\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"16\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"17\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"18\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"19\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"20\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"21\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"22\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"23\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"24\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"25\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"26\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"27\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"28\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"29\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"30\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"31\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"32\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"33\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"34\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"35\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"36\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"37\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"38\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"39\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"40\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"41\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"42\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"43\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"44\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"45\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"46\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"47\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"48\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"49\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"50\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"51\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"52\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"53\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"54\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"55\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"56\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"57\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"58\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"59\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"60\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"61\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"62\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"63\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"64\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"65\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"66\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"67\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"68\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"69\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"70\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"71\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"72\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"73\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"74\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"75\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"76\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"77\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"78\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"79\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"80\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"81\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"82\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"83\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"84\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"85\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"86\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"87\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"88\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"89\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"90\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"91\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"92\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"93\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"94\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"95\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"96\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"97\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"98\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"99\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"100\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"101\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"102\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"103\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"104\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"105\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"106\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"107\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"108\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"109\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"110\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"111\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"112\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"113\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"114\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"115\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"116\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"117\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"118\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"119\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"120\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"121\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"122\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"123\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"124\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"125\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"126\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"127\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"128\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"129\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"130\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"131\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"132\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"133\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"134\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"135\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"136\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"137\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"138\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"139\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"140\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"141\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"142\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"143\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"144\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"145\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"146\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"147\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"148\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"149\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"150\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"151\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"152\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"153\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"154\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"155\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"156\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"157\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"158\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"159\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"160\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"161\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"162\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"163\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"164\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"165\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"166\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"167\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"168\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"169\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"170\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"171\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"172\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"173\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"174\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"175\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"176\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"177\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"178\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"179\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"180\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"181\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"182\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"183\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"184\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"185\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"186\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"187\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"188\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"189\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"190\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"191\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"192\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"193\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"194\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"195\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"196\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"197\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"198\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"199\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"200\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "8b0c71c1-1f55-4951-b844-d482c0a16f6b", + "x-ms-client-request-id" : "322d499e-568a-4b1d-a282-e74b68f3b1fe", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1197b5b0-f36c-4974-b724-157ff7e49506", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "22035380-1791-49a9-acb6-0ff38b657eb4", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12918", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1197b5b0-f36c-4974-b724-157ff7e49506", + "request-id" : "22035380-1791-49a9-acb6-0ff38b657eb4", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:02 GMT", + "Date" : "Thu, 27 May 2021 21:10:13 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1197b5b0-f36c-4974-b724-157ff7e49506", + "client-request-id" : "22035380-1791-49a9-acb6-0ff38b657eb4", "elapsed-time" : "23", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12926", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":50},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"1\",\"HotelName\":\"Hotel 1\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"2\",\"HotelName\":\"Hotel 2\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"3\",\"HotelName\":\"Hotel 3\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"4\",\"HotelName\":\"Hotel 4\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"5\",\"HotelName\":\"Hotel 5\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"6\",\"HotelName\":\"Hotel 6\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"7\",\"HotelName\":\"Hotel 7\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"8\",\"HotelName\":\"Hotel 8\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"9\",\"HotelName\":\"Hotel 9\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"10\",\"HotelName\":\"Hotel 10\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"11\",\"HotelName\":\"Hotel 11\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"12\",\"HotelName\":\"Hotel 12\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"13\",\"HotelName\":\"Hotel 13\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"14\",\"HotelName\":\"Hotel 14\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"15\",\"HotelName\":\"Hotel 15\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"16\",\"HotelName\":\"Hotel 16\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"17\",\"HotelName\":\"Hotel 17\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"18\",\"HotelName\":\"Hotel 18\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"19\",\"HotelName\":\"Hotel 19\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"20\",\"HotelName\":\"Hotel 20\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"21\",\"HotelName\":\"Hotel 21\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"22\",\"HotelName\":\"Hotel 22\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"23\",\"HotelName\":\"Hotel 23\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"24\",\"HotelName\":\"Hotel 24\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"25\",\"HotelName\":\"Hotel 25\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"26\",\"HotelName\":\"Hotel 26\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"27\",\"HotelName\":\"Hotel 27\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"28\",\"HotelName\":\"Hotel 28\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"29\",\"HotelName\":\"Hotel 29\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"30\",\"HotelName\":\"Hotel 30\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"31\",\"HotelName\":\"Hotel 31\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"32\",\"HotelName\":\"Hotel 32\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"33\",\"HotelName\":\"Hotel 33\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"34\",\"HotelName\":\"Hotel 34\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"35\",\"HotelName\":\"Hotel 35\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"36\",\"HotelName\":\"Hotel 36\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"37\",\"HotelName\":\"Hotel 37\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"38\",\"HotelName\":\"Hotel 38\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"39\",\"HotelName\":\"Hotel 39\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"40\",\"HotelName\":\"Hotel 40\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"41\",\"HotelName\":\"Hotel 41\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"42\",\"HotelName\":\"Hotel 42\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"43\",\"HotelName\":\"Hotel 43\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"44\",\"HotelName\":\"Hotel 44\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"45\",\"HotelName\":\"Hotel 45\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"46\",\"HotelName\":\"Hotel 46\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"47\",\"HotelName\":\"Hotel 47\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"48\",\"HotelName\":\"Hotel 48\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"49\",\"HotelName\":\"Hotel 49\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"50\",\"HotelName\":\"Hotel 50\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "1197b5b0-f36c-4974-b724-157ff7e49506", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":50},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"1\",\"HotelName\":\"Hotel 1\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"2\",\"HotelName\":\"Hotel 2\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"3\",\"HotelName\":\"Hotel 3\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"4\",\"HotelName\":\"Hotel 4\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"5\",\"HotelName\":\"Hotel 5\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"6\",\"HotelName\":\"Hotel 6\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"7\",\"HotelName\":\"Hotel 7\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"8\",\"HotelName\":\"Hotel 8\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"9\",\"HotelName\":\"Hotel 9\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"10\",\"HotelName\":\"Hotel 10\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"11\",\"HotelName\":\"Hotel 11\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"12\",\"HotelName\":\"Hotel 12\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"13\",\"HotelName\":\"Hotel 13\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"14\",\"HotelName\":\"Hotel 14\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"15\",\"HotelName\":\"Hotel 15\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"16\",\"HotelName\":\"Hotel 16\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"17\",\"HotelName\":\"Hotel 17\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"18\",\"HotelName\":\"Hotel 18\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"19\",\"HotelName\":\"Hotel 19\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"20\",\"HotelName\":\"Hotel 20\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"21\",\"HotelName\":\"Hotel 21\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"22\",\"HotelName\":\"Hotel 22\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"23\",\"HotelName\":\"Hotel 23\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"24\",\"HotelName\":\"Hotel 24\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"25\",\"HotelName\":\"Hotel 25\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"26\",\"HotelName\":\"Hotel 26\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"27\",\"HotelName\":\"Hotel 27\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"28\",\"HotelName\":\"Hotel 28\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"29\",\"HotelName\":\"Hotel 29\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"30\",\"HotelName\":\"Hotel 30\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"31\",\"HotelName\":\"Hotel 31\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"32\",\"HotelName\":\"Hotel 32\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"33\",\"HotelName\":\"Hotel 33\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"34\",\"HotelName\":\"Hotel 34\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"35\",\"HotelName\":\"Hotel 35\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"36\",\"HotelName\":\"Hotel 36\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"37\",\"HotelName\":\"Hotel 37\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"38\",\"HotelName\":\"Hotel 38\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"39\",\"HotelName\":\"Hotel 39\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"40\",\"HotelName\":\"Hotel 40\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"41\",\"HotelName\":\"Hotel 41\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"42\",\"HotelName\":\"Hotel 42\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"43\",\"HotelName\":\"Hotel 43\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"44\",\"HotelName\":\"Hotel 44\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"45\",\"HotelName\":\"Hotel 45\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"46\",\"HotelName\":\"Hotel 46\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"47\",\"HotelName\":\"Hotel 47\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"48\",\"HotelName\":\"Hotel 48\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"49\",\"HotelName\":\"Hotel 49\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"50\",\"HotelName\":\"Hotel 50\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "22035380-1791-49a9-acb6-0ff38b657eb4", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9bf7283c-5d1a-4ecb-89e4-39b7c22d3c2c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "734ef61a-7292-4251-a510-d38b175283f8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12939", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9bf7283c-5d1a-4ecb-89e4-39b7c22d3c2c", + "request-id" : "734ef61a-7292-4251-a510-d38b175283f8", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:03 GMT", + "Date" : "Thu, 27 May 2021 21:10:17 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9bf7283c-5d1a-4ecb-89e4-39b7c22d3c2c", - "elapsed-time" : "127", + "client-request-id" : "734ef61a-7292-4251-a510-d38b175283f8", + "elapsed-time" : "104", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12947", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":100},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"51\",\"HotelName\":\"Hotel 51\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"52\",\"HotelName\":\"Hotel 52\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"53\",\"HotelName\":\"Hotel 53\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"54\",\"HotelName\":\"Hotel 54\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"55\",\"HotelName\":\"Hotel 55\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"56\",\"HotelName\":\"Hotel 56\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"57\",\"HotelName\":\"Hotel 57\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"58\",\"HotelName\":\"Hotel 58\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"59\",\"HotelName\":\"Hotel 59\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"60\",\"HotelName\":\"Hotel 60\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"61\",\"HotelName\":\"Hotel 61\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"62\",\"HotelName\":\"Hotel 62\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"63\",\"HotelName\":\"Hotel 63\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"64\",\"HotelName\":\"Hotel 64\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"65\",\"HotelName\":\"Hotel 65\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"66\",\"HotelName\":\"Hotel 66\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"67\",\"HotelName\":\"Hotel 67\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"68\",\"HotelName\":\"Hotel 68\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"69\",\"HotelName\":\"Hotel 69\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"70\",\"HotelName\":\"Hotel 70\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"71\",\"HotelName\":\"Hotel 71\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"72\",\"HotelName\":\"Hotel 72\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"73\",\"HotelName\":\"Hotel 73\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"74\",\"HotelName\":\"Hotel 74\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"75\",\"HotelName\":\"Hotel 75\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"76\",\"HotelName\":\"Hotel 76\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"77\",\"HotelName\":\"Hotel 77\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"78\",\"HotelName\":\"Hotel 78\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"79\",\"HotelName\":\"Hotel 79\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"80\",\"HotelName\":\"Hotel 80\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"81\",\"HotelName\":\"Hotel 81\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"82\",\"HotelName\":\"Hotel 82\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"83\",\"HotelName\":\"Hotel 83\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"84\",\"HotelName\":\"Hotel 84\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"85\",\"HotelName\":\"Hotel 85\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"86\",\"HotelName\":\"Hotel 86\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"87\",\"HotelName\":\"Hotel 87\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"88\",\"HotelName\":\"Hotel 88\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"89\",\"HotelName\":\"Hotel 89\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"90\",\"HotelName\":\"Hotel 90\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"91\",\"HotelName\":\"Hotel 91\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"92\",\"HotelName\":\"Hotel 92\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"93\",\"HotelName\":\"Hotel 93\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"94\",\"HotelName\":\"Hotel 94\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"95\",\"HotelName\":\"Hotel 95\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"96\",\"HotelName\":\"Hotel 96\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"97\",\"HotelName\":\"Hotel 97\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"98\",\"HotelName\":\"Hotel 98\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"99\",\"HotelName\":\"Hotel 99\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"100\",\"HotelName\":\"Hotel 100\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "9bf7283c-5d1a-4ecb-89e4-39b7c22d3c2c", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":100},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"51\",\"HotelName\":\"Hotel 51\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"52\",\"HotelName\":\"Hotel 52\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"53\",\"HotelName\":\"Hotel 53\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"54\",\"HotelName\":\"Hotel 54\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"55\",\"HotelName\":\"Hotel 55\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"56\",\"HotelName\":\"Hotel 56\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"57\",\"HotelName\":\"Hotel 57\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"58\",\"HotelName\":\"Hotel 58\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"59\",\"HotelName\":\"Hotel 59\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"60\",\"HotelName\":\"Hotel 60\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"61\",\"HotelName\":\"Hotel 61\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"62\",\"HotelName\":\"Hotel 62\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"63\",\"HotelName\":\"Hotel 63\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"64\",\"HotelName\":\"Hotel 64\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"65\",\"HotelName\":\"Hotel 65\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"66\",\"HotelName\":\"Hotel 66\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"67\",\"HotelName\":\"Hotel 67\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"68\",\"HotelName\":\"Hotel 68\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"69\",\"HotelName\":\"Hotel 69\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"70\",\"HotelName\":\"Hotel 70\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"71\",\"HotelName\":\"Hotel 71\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"72\",\"HotelName\":\"Hotel 72\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"73\",\"HotelName\":\"Hotel 73\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"74\",\"HotelName\":\"Hotel 74\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"75\",\"HotelName\":\"Hotel 75\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"76\",\"HotelName\":\"Hotel 76\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"77\",\"HotelName\":\"Hotel 77\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"78\",\"HotelName\":\"Hotel 78\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"79\",\"HotelName\":\"Hotel 79\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"80\",\"HotelName\":\"Hotel 80\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"81\",\"HotelName\":\"Hotel 81\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"82\",\"HotelName\":\"Hotel 82\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"83\",\"HotelName\":\"Hotel 83\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"84\",\"HotelName\":\"Hotel 84\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"85\",\"HotelName\":\"Hotel 85\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"86\",\"HotelName\":\"Hotel 86\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"87\",\"HotelName\":\"Hotel 87\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"88\",\"HotelName\":\"Hotel 88\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"89\",\"HotelName\":\"Hotel 89\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"90\",\"HotelName\":\"Hotel 90\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"91\",\"HotelName\":\"Hotel 91\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"92\",\"HotelName\":\"Hotel 92\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"93\",\"HotelName\":\"Hotel 93\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"94\",\"HotelName\":\"Hotel 94\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"95\",\"HotelName\":\"Hotel 95\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"96\",\"HotelName\":\"Hotel 96\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"97\",\"HotelName\":\"Hotel 97\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"98\",\"HotelName\":\"Hotel 98\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"99\",\"HotelName\":\"Hotel 99\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"100\",\"HotelName\":\"Hotel 100\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "734ef61a-7292-4251-a510-d38b175283f8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "559811c4-1213-4cc8-bfd9-8c50915b30f8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "11de80ca-4576-46f5-ae30-97edce37f7ed", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "13037", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "559811c4-1213-4cc8-bfd9-8c50915b30f8", + "request-id" : "11de80ca-4576-46f5-ae30-97edce37f7ed", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:02 GMT", + "Date" : "Thu, 27 May 2021 21:10:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "559811c4-1213-4cc8-bfd9-8c50915b30f8", - "elapsed-time" : "15", + "client-request-id" : "11de80ca-4576-46f5-ae30-97edce37f7ed", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "13045", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":150},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"101\",\"HotelName\":\"Hotel 101\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"102\",\"HotelName\":\"Hotel 102\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"103\",\"HotelName\":\"Hotel 103\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"104\",\"HotelName\":\"Hotel 104\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"105\",\"HotelName\":\"Hotel 105\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"106\",\"HotelName\":\"Hotel 106\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"107\",\"HotelName\":\"Hotel 107\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"108\",\"HotelName\":\"Hotel 108\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"109\",\"HotelName\":\"Hotel 109\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"110\",\"HotelName\":\"Hotel 110\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"111\",\"HotelName\":\"Hotel 111\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"112\",\"HotelName\":\"Hotel 112\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"113\",\"HotelName\":\"Hotel 113\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"114\",\"HotelName\":\"Hotel 114\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"115\",\"HotelName\":\"Hotel 115\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"116\",\"HotelName\":\"Hotel 116\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"117\",\"HotelName\":\"Hotel 117\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"118\",\"HotelName\":\"Hotel 118\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"119\",\"HotelName\":\"Hotel 119\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"120\",\"HotelName\":\"Hotel 120\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"121\",\"HotelName\":\"Hotel 121\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"122\",\"HotelName\":\"Hotel 122\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"123\",\"HotelName\":\"Hotel 123\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"124\",\"HotelName\":\"Hotel 124\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"125\",\"HotelName\":\"Hotel 125\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"126\",\"HotelName\":\"Hotel 126\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"127\",\"HotelName\":\"Hotel 127\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"128\",\"HotelName\":\"Hotel 128\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"129\",\"HotelName\":\"Hotel 129\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"130\",\"HotelName\":\"Hotel 130\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"131\",\"HotelName\":\"Hotel 131\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"132\",\"HotelName\":\"Hotel 132\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"133\",\"HotelName\":\"Hotel 133\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"134\",\"HotelName\":\"Hotel 134\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"135\",\"HotelName\":\"Hotel 135\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"136\",\"HotelName\":\"Hotel 136\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"137\",\"HotelName\":\"Hotel 137\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"138\",\"HotelName\":\"Hotel 138\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"139\",\"HotelName\":\"Hotel 139\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"140\",\"HotelName\":\"Hotel 140\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"141\",\"HotelName\":\"Hotel 141\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"142\",\"HotelName\":\"Hotel 142\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"143\",\"HotelName\":\"Hotel 143\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"144\",\"HotelName\":\"Hotel 144\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"145\",\"HotelName\":\"Hotel 145\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"146\",\"HotelName\":\"Hotel 146\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"147\",\"HotelName\":\"Hotel 147\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"148\",\"HotelName\":\"Hotel 148\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"149\",\"HotelName\":\"Hotel 149\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"150\",\"HotelName\":\"Hotel 150\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "559811c4-1213-4cc8-bfd9-8c50915b30f8", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":150},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"101\",\"HotelName\":\"Hotel 101\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"102\",\"HotelName\":\"Hotel 102\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"103\",\"HotelName\":\"Hotel 103\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"104\",\"HotelName\":\"Hotel 104\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"105\",\"HotelName\":\"Hotel 105\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"106\",\"HotelName\":\"Hotel 106\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"107\",\"HotelName\":\"Hotel 107\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"108\",\"HotelName\":\"Hotel 108\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"109\",\"HotelName\":\"Hotel 109\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"110\",\"HotelName\":\"Hotel 110\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"111\",\"HotelName\":\"Hotel 111\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"112\",\"HotelName\":\"Hotel 112\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"113\",\"HotelName\":\"Hotel 113\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"114\",\"HotelName\":\"Hotel 114\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"115\",\"HotelName\":\"Hotel 115\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"116\",\"HotelName\":\"Hotel 116\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"117\",\"HotelName\":\"Hotel 117\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"118\",\"HotelName\":\"Hotel 118\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"119\",\"HotelName\":\"Hotel 119\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"120\",\"HotelName\":\"Hotel 120\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"121\",\"HotelName\":\"Hotel 121\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"122\",\"HotelName\":\"Hotel 122\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"123\",\"HotelName\":\"Hotel 123\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"124\",\"HotelName\":\"Hotel 124\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"125\",\"HotelName\":\"Hotel 125\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"126\",\"HotelName\":\"Hotel 126\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"127\",\"HotelName\":\"Hotel 127\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"128\",\"HotelName\":\"Hotel 128\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"129\",\"HotelName\":\"Hotel 129\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"130\",\"HotelName\":\"Hotel 130\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"131\",\"HotelName\":\"Hotel 131\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"132\",\"HotelName\":\"Hotel 132\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"133\",\"HotelName\":\"Hotel 133\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"134\",\"HotelName\":\"Hotel 134\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"135\",\"HotelName\":\"Hotel 135\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"136\",\"HotelName\":\"Hotel 136\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"137\",\"HotelName\":\"Hotel 137\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"138\",\"HotelName\":\"Hotel 138\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"139\",\"HotelName\":\"Hotel 139\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"140\",\"HotelName\":\"Hotel 140\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"141\",\"HotelName\":\"Hotel 141\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"142\",\"HotelName\":\"Hotel 142\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"143\",\"HotelName\":\"Hotel 143\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"144\",\"HotelName\":\"Hotel 144\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"145\",\"HotelName\":\"Hotel 145\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"146\",\"HotelName\":\"Hotel 146\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"147\",\"HotelName\":\"Hotel 147\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"148\",\"HotelName\":\"Hotel 148\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"149\",\"HotelName\":\"Hotel 149\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"150\",\"HotelName\":\"Hotel 150\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "11de80ca-4576-46f5-ae30-97edce37f7ed", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "18003a69-83ca-44aa-882f-ca7e9a8a8af4", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9db2d573-dba1-44c1-837d-e0e975b3b167", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12811", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "18003a69-83ca-44aa-882f-ca7e9a8a8af4", + "request-id" : "9db2d573-dba1-44c1-837d-e0e975b3b167", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:03 GMT", + "Date" : "Thu, 27 May 2021 21:10:17 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "18003a69-83ca-44aa-882f-ca7e9a8a8af4", - "elapsed-time" : "16", + "client-request-id" : "9db2d573-dba1-44c1-837d-e0e975b3b167", + "elapsed-time" : "10", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12811", "Body" : "{\"value\":[{\"@search.score\":1.0,\"HotelId\":\"151\",\"HotelName\":\"Hotel 151\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"152\",\"HotelName\":\"Hotel 152\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"153\",\"HotelName\":\"Hotel 153\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"154\",\"HotelName\":\"Hotel 154\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"155\",\"HotelName\":\"Hotel 155\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"156\",\"HotelName\":\"Hotel 156\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"157\",\"HotelName\":\"Hotel 157\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"158\",\"HotelName\":\"Hotel 158\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"159\",\"HotelName\":\"Hotel 159\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"160\",\"HotelName\":\"Hotel 160\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"161\",\"HotelName\":\"Hotel 161\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"162\",\"HotelName\":\"Hotel 162\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"163\",\"HotelName\":\"Hotel 163\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"164\",\"HotelName\":\"Hotel 164\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"165\",\"HotelName\":\"Hotel 165\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"166\",\"HotelName\":\"Hotel 166\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"167\",\"HotelName\":\"Hotel 167\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"168\",\"HotelName\":\"Hotel 168\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"169\",\"HotelName\":\"Hotel 169\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"170\",\"HotelName\":\"Hotel 170\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"171\",\"HotelName\":\"Hotel 171\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"172\",\"HotelName\":\"Hotel 172\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"173\",\"HotelName\":\"Hotel 173\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"174\",\"HotelName\":\"Hotel 174\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"175\",\"HotelName\":\"Hotel 175\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"176\",\"HotelName\":\"Hotel 176\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"177\",\"HotelName\":\"Hotel 177\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"178\",\"HotelName\":\"Hotel 178\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"179\",\"HotelName\":\"Hotel 179\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"180\",\"HotelName\":\"Hotel 180\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"181\",\"HotelName\":\"Hotel 181\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"182\",\"HotelName\":\"Hotel 182\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"183\",\"HotelName\":\"Hotel 183\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"184\",\"HotelName\":\"Hotel 184\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"185\",\"HotelName\":\"Hotel 185\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"186\",\"HotelName\":\"Hotel 186\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"187\",\"HotelName\":\"Hotel 187\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"188\",\"HotelName\":\"Hotel 188\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"189\",\"HotelName\":\"Hotel 189\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"190\",\"HotelName\":\"Hotel 190\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"191\",\"HotelName\":\"Hotel 191\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"192\",\"HotelName\":\"Hotel 192\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"193\",\"HotelName\":\"Hotel 193\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"194\",\"HotelName\":\"Hotel 194\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"195\",\"HotelName\":\"Hotel 195\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"196\",\"HotelName\":\"Hotel 196\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"197\",\"HotelName\":\"Hotel 197\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"198\",\"HotelName\":\"Hotel 198\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"199\",\"HotelName\":\"Hotel 199\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"200\",\"HotelName\":\"Hotel 200\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "18003a69-83ca-44aa-882f-ca7e9a8a8af4", + "x-ms-client-request-id" : "9db2d573-dba1-44c1-837d-e0e975b3b167", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a0cc1fb9-67c3-4e0a-83d5-45f39024f620", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9fad6d1c-6c33-42b5-81bc-47c2e0d301f7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12918", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a0cc1fb9-67c3-4e0a-83d5-45f39024f620", + "request-id" : "9fad6d1c-6c33-42b5-81bc-47c2e0d301f7", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:02 GMT", + "Date" : "Thu, 27 May 2021 21:10:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a0cc1fb9-67c3-4e0a-83d5-45f39024f620", + "client-request-id" : "9fad6d1c-6c33-42b5-81bc-47c2e0d301f7", "elapsed-time" : "9", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12926", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":50},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"1\",\"HotelName\":\"Hotel 1\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"2\",\"HotelName\":\"Hotel 2\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"3\",\"HotelName\":\"Hotel 3\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"4\",\"HotelName\":\"Hotel 4\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"5\",\"HotelName\":\"Hotel 5\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"6\",\"HotelName\":\"Hotel 6\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"7\",\"HotelName\":\"Hotel 7\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"8\",\"HotelName\":\"Hotel 8\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"9\",\"HotelName\":\"Hotel 9\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"10\",\"HotelName\":\"Hotel 10\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"11\",\"HotelName\":\"Hotel 11\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"12\",\"HotelName\":\"Hotel 12\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"13\",\"HotelName\":\"Hotel 13\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"14\",\"HotelName\":\"Hotel 14\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"15\",\"HotelName\":\"Hotel 15\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"16\",\"HotelName\":\"Hotel 16\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"17\",\"HotelName\":\"Hotel 17\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"18\",\"HotelName\":\"Hotel 18\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"19\",\"HotelName\":\"Hotel 19\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"20\",\"HotelName\":\"Hotel 20\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"21\",\"HotelName\":\"Hotel 21\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"22\",\"HotelName\":\"Hotel 22\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"23\",\"HotelName\":\"Hotel 23\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"24\",\"HotelName\":\"Hotel 24\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"25\",\"HotelName\":\"Hotel 25\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"26\",\"HotelName\":\"Hotel 26\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"27\",\"HotelName\":\"Hotel 27\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"28\",\"HotelName\":\"Hotel 28\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"29\",\"HotelName\":\"Hotel 29\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"30\",\"HotelName\":\"Hotel 30\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"31\",\"HotelName\":\"Hotel 31\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"32\",\"HotelName\":\"Hotel 32\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"33\",\"HotelName\":\"Hotel 33\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"34\",\"HotelName\":\"Hotel 34\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"35\",\"HotelName\":\"Hotel 35\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"36\",\"HotelName\":\"Hotel 36\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"37\",\"HotelName\":\"Hotel 37\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"38\",\"HotelName\":\"Hotel 38\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"39\",\"HotelName\":\"Hotel 39\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"40\",\"HotelName\":\"Hotel 40\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"41\",\"HotelName\":\"Hotel 41\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"42\",\"HotelName\":\"Hotel 42\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"43\",\"HotelName\":\"Hotel 43\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"44\",\"HotelName\":\"Hotel 44\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"45\",\"HotelName\":\"Hotel 45\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"46\",\"HotelName\":\"Hotel 46\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"47\",\"HotelName\":\"Hotel 47\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"48\",\"HotelName\":\"Hotel 48\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"49\",\"HotelName\":\"Hotel 49\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"50\",\"HotelName\":\"Hotel 50\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "a0cc1fb9-67c3-4e0a-83d5-45f39024f620", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":50},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"1\",\"HotelName\":\"Hotel 1\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"2\",\"HotelName\":\"Hotel 2\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"3\",\"HotelName\":\"Hotel 3\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"4\",\"HotelName\":\"Hotel 4\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"5\",\"HotelName\":\"Hotel 5\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"6\",\"HotelName\":\"Hotel 6\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"7\",\"HotelName\":\"Hotel 7\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"8\",\"HotelName\":\"Hotel 8\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"9\",\"HotelName\":\"Hotel 9\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"10\",\"HotelName\":\"Hotel 10\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"11\",\"HotelName\":\"Hotel 11\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"12\",\"HotelName\":\"Hotel 12\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"13\",\"HotelName\":\"Hotel 13\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"14\",\"HotelName\":\"Hotel 14\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"15\",\"HotelName\":\"Hotel 15\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"16\",\"HotelName\":\"Hotel 16\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"17\",\"HotelName\":\"Hotel 17\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"18\",\"HotelName\":\"Hotel 18\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"19\",\"HotelName\":\"Hotel 19\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"20\",\"HotelName\":\"Hotel 20\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"21\",\"HotelName\":\"Hotel 21\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"22\",\"HotelName\":\"Hotel 22\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"23\",\"HotelName\":\"Hotel 23\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"24\",\"HotelName\":\"Hotel 24\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"25\",\"HotelName\":\"Hotel 25\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"26\",\"HotelName\":\"Hotel 26\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"27\",\"HotelName\":\"Hotel 27\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"28\",\"HotelName\":\"Hotel 28\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"29\",\"HotelName\":\"Hotel 29\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"30\",\"HotelName\":\"Hotel 30\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"31\",\"HotelName\":\"Hotel 31\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"32\",\"HotelName\":\"Hotel 32\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"33\",\"HotelName\":\"Hotel 33\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"34\",\"HotelName\":\"Hotel 34\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"35\",\"HotelName\":\"Hotel 35\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"36\",\"HotelName\":\"Hotel 36\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"37\",\"HotelName\":\"Hotel 37\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"38\",\"HotelName\":\"Hotel 38\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"39\",\"HotelName\":\"Hotel 39\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"40\",\"HotelName\":\"Hotel 40\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"41\",\"HotelName\":\"Hotel 41\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"42\",\"HotelName\":\"Hotel 42\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"43\",\"HotelName\":\"Hotel 43\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"44\",\"HotelName\":\"Hotel 44\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"45\",\"HotelName\":\"Hotel 45\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"46\",\"HotelName\":\"Hotel 46\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"47\",\"HotelName\":\"Hotel 47\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"48\",\"HotelName\":\"Hotel 48\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"49\",\"HotelName\":\"Hotel 49\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"50\",\"HotelName\":\"Hotel 50\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "9fad6d1c-6c33-42b5-81bc-47c2e0d301f7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d91a52e-028e-4ecb-89f2-be17deac817b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a717348f-763f-4abb-a230-68ca4354286c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12939", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3d91a52e-028e-4ecb-89f2-be17deac817b", + "request-id" : "a717348f-763f-4abb-a230-68ca4354286c", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:03 GMT", + "Date" : "Thu, 27 May 2021 21:10:17 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3d91a52e-028e-4ecb-89f2-be17deac817b", - "elapsed-time" : "12", + "client-request-id" : "a717348f-763f-4abb-a230-68ca4354286c", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12947", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":100},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"51\",\"HotelName\":\"Hotel 51\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"52\",\"HotelName\":\"Hotel 52\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"53\",\"HotelName\":\"Hotel 53\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"54\",\"HotelName\":\"Hotel 54\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"55\",\"HotelName\":\"Hotel 55\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"56\",\"HotelName\":\"Hotel 56\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"57\",\"HotelName\":\"Hotel 57\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"58\",\"HotelName\":\"Hotel 58\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"59\",\"HotelName\":\"Hotel 59\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"60\",\"HotelName\":\"Hotel 60\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"61\",\"HotelName\":\"Hotel 61\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"62\",\"HotelName\":\"Hotel 62\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"63\",\"HotelName\":\"Hotel 63\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"64\",\"HotelName\":\"Hotel 64\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"65\",\"HotelName\":\"Hotel 65\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"66\",\"HotelName\":\"Hotel 66\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"67\",\"HotelName\":\"Hotel 67\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"68\",\"HotelName\":\"Hotel 68\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"69\",\"HotelName\":\"Hotel 69\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"70\",\"HotelName\":\"Hotel 70\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"71\",\"HotelName\":\"Hotel 71\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"72\",\"HotelName\":\"Hotel 72\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"73\",\"HotelName\":\"Hotel 73\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"74\",\"HotelName\":\"Hotel 74\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"75\",\"HotelName\":\"Hotel 75\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"76\",\"HotelName\":\"Hotel 76\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"77\",\"HotelName\":\"Hotel 77\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"78\",\"HotelName\":\"Hotel 78\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"79\",\"HotelName\":\"Hotel 79\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"80\",\"HotelName\":\"Hotel 80\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"81\",\"HotelName\":\"Hotel 81\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"82\",\"HotelName\":\"Hotel 82\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"83\",\"HotelName\":\"Hotel 83\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"84\",\"HotelName\":\"Hotel 84\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"85\",\"HotelName\":\"Hotel 85\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"86\",\"HotelName\":\"Hotel 86\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"87\",\"HotelName\":\"Hotel 87\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"88\",\"HotelName\":\"Hotel 88\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"89\",\"HotelName\":\"Hotel 89\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"90\",\"HotelName\":\"Hotel 90\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"91\",\"HotelName\":\"Hotel 91\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"92\",\"HotelName\":\"Hotel 92\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"93\",\"HotelName\":\"Hotel 93\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"94\",\"HotelName\":\"Hotel 94\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"95\",\"HotelName\":\"Hotel 95\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"96\",\"HotelName\":\"Hotel 96\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"97\",\"HotelName\":\"Hotel 97\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"98\",\"HotelName\":\"Hotel 98\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"99\",\"HotelName\":\"Hotel 99\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"100\",\"HotelName\":\"Hotel 100\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "3d91a52e-028e-4ecb-89f2-be17deac817b", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":100},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"51\",\"HotelName\":\"Hotel 51\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"52\",\"HotelName\":\"Hotel 52\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"53\",\"HotelName\":\"Hotel 53\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"54\",\"HotelName\":\"Hotel 54\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"55\",\"HotelName\":\"Hotel 55\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"56\",\"HotelName\":\"Hotel 56\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"57\",\"HotelName\":\"Hotel 57\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"58\",\"HotelName\":\"Hotel 58\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"59\",\"HotelName\":\"Hotel 59\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"60\",\"HotelName\":\"Hotel 60\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"61\",\"HotelName\":\"Hotel 61\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"62\",\"HotelName\":\"Hotel 62\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"63\",\"HotelName\":\"Hotel 63\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"64\",\"HotelName\":\"Hotel 64\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"65\",\"HotelName\":\"Hotel 65\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"66\",\"HotelName\":\"Hotel 66\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"67\",\"HotelName\":\"Hotel 67\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"68\",\"HotelName\":\"Hotel 68\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"69\",\"HotelName\":\"Hotel 69\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"70\",\"HotelName\":\"Hotel 70\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"71\",\"HotelName\":\"Hotel 71\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"72\",\"HotelName\":\"Hotel 72\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"73\",\"HotelName\":\"Hotel 73\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"74\",\"HotelName\":\"Hotel 74\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"75\",\"HotelName\":\"Hotel 75\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"76\",\"HotelName\":\"Hotel 76\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"77\",\"HotelName\":\"Hotel 77\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"78\",\"HotelName\":\"Hotel 78\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"79\",\"HotelName\":\"Hotel 79\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"80\",\"HotelName\":\"Hotel 80\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"81\",\"HotelName\":\"Hotel 81\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"82\",\"HotelName\":\"Hotel 82\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"83\",\"HotelName\":\"Hotel 83\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"84\",\"HotelName\":\"Hotel 84\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"85\",\"HotelName\":\"Hotel 85\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"86\",\"HotelName\":\"Hotel 86\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"87\",\"HotelName\":\"Hotel 87\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"88\",\"HotelName\":\"Hotel 88\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"89\",\"HotelName\":\"Hotel 89\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"90\",\"HotelName\":\"Hotel 90\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"91\",\"HotelName\":\"Hotel 91\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"92\",\"HotelName\":\"Hotel 92\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"93\",\"HotelName\":\"Hotel 93\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"94\",\"HotelName\":\"Hotel 94\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"95\",\"HotelName\":\"Hotel 95\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"96\",\"HotelName\":\"Hotel 96\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"97\",\"HotelName\":\"Hotel 97\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"98\",\"HotelName\":\"Hotel 98\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"99\",\"HotelName\":\"Hotel 99\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"100\",\"HotelName\":\"Hotel 100\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "a717348f-763f-4abb-a230-68ca4354286c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5b4e0de8-540d-4565-98a7-cb1cfa37f387", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7115ce80-9d11-4c62-b2e1-589d1a42a78a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "13037", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5b4e0de8-540d-4565-98a7-cb1cfa37f387", + "request-id" : "7115ce80-9d11-4c62-b2e1-589d1a42a78a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:02 GMT", + "Date" : "Thu, 27 May 2021 21:10:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5b4e0de8-540d-4565-98a7-cb1cfa37f387", - "elapsed-time" : "10", + "client-request-id" : "7115ce80-9d11-4c62-b2e1-589d1a42a78a", + "elapsed-time" : "23", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "13045", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":150},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"101\",\"HotelName\":\"Hotel 101\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"102\",\"HotelName\":\"Hotel 102\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"103\",\"HotelName\":\"Hotel 103\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"104\",\"HotelName\":\"Hotel 104\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"105\",\"HotelName\":\"Hotel 105\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"106\",\"HotelName\":\"Hotel 106\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"107\",\"HotelName\":\"Hotel 107\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"108\",\"HotelName\":\"Hotel 108\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"109\",\"HotelName\":\"Hotel 109\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"110\",\"HotelName\":\"Hotel 110\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"111\",\"HotelName\":\"Hotel 111\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"112\",\"HotelName\":\"Hotel 112\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"113\",\"HotelName\":\"Hotel 113\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"114\",\"HotelName\":\"Hotel 114\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"115\",\"HotelName\":\"Hotel 115\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"116\",\"HotelName\":\"Hotel 116\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"117\",\"HotelName\":\"Hotel 117\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"118\",\"HotelName\":\"Hotel 118\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"119\",\"HotelName\":\"Hotel 119\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"120\",\"HotelName\":\"Hotel 120\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"121\",\"HotelName\":\"Hotel 121\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"122\",\"HotelName\":\"Hotel 122\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"123\",\"HotelName\":\"Hotel 123\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"124\",\"HotelName\":\"Hotel 124\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"125\",\"HotelName\":\"Hotel 125\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"126\",\"HotelName\":\"Hotel 126\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"127\",\"HotelName\":\"Hotel 127\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"128\",\"HotelName\":\"Hotel 128\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"129\",\"HotelName\":\"Hotel 129\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"130\",\"HotelName\":\"Hotel 130\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"131\",\"HotelName\":\"Hotel 131\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"132\",\"HotelName\":\"Hotel 132\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"133\",\"HotelName\":\"Hotel 133\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"134\",\"HotelName\":\"Hotel 134\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"135\",\"HotelName\":\"Hotel 135\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"136\",\"HotelName\":\"Hotel 136\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"137\",\"HotelName\":\"Hotel 137\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"138\",\"HotelName\":\"Hotel 138\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"139\",\"HotelName\":\"Hotel 139\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"140\",\"HotelName\":\"Hotel 140\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"141\",\"HotelName\":\"Hotel 141\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"142\",\"HotelName\":\"Hotel 142\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"143\",\"HotelName\":\"Hotel 143\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"144\",\"HotelName\":\"Hotel 144\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"145\",\"HotelName\":\"Hotel 145\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"146\",\"HotelName\":\"Hotel 146\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"147\",\"HotelName\":\"Hotel 147\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"148\",\"HotelName\":\"Hotel 148\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"149\",\"HotelName\":\"Hotel 149\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"150\",\"HotelName\":\"Hotel 150\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "5b4e0de8-540d-4565-98a7-cb1cfa37f387", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":150},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"101\",\"HotelName\":\"Hotel 101\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"102\",\"HotelName\":\"Hotel 102\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"103\",\"HotelName\":\"Hotel 103\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"104\",\"HotelName\":\"Hotel 104\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"105\",\"HotelName\":\"Hotel 105\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"106\",\"HotelName\":\"Hotel 106\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"107\",\"HotelName\":\"Hotel 107\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"108\",\"HotelName\":\"Hotel 108\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"109\",\"HotelName\":\"Hotel 109\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"110\",\"HotelName\":\"Hotel 110\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"111\",\"HotelName\":\"Hotel 111\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"112\",\"HotelName\":\"Hotel 112\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"113\",\"HotelName\":\"Hotel 113\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"114\",\"HotelName\":\"Hotel 114\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"115\",\"HotelName\":\"Hotel 115\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"116\",\"HotelName\":\"Hotel 116\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"117\",\"HotelName\":\"Hotel 117\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"118\",\"HotelName\":\"Hotel 118\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"119\",\"HotelName\":\"Hotel 119\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"120\",\"HotelName\":\"Hotel 120\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"121\",\"HotelName\":\"Hotel 121\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"122\",\"HotelName\":\"Hotel 122\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"123\",\"HotelName\":\"Hotel 123\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"124\",\"HotelName\":\"Hotel 124\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"125\",\"HotelName\":\"Hotel 125\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"126\",\"HotelName\":\"Hotel 126\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"127\",\"HotelName\":\"Hotel 127\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"128\",\"HotelName\":\"Hotel 128\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"129\",\"HotelName\":\"Hotel 129\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"130\",\"HotelName\":\"Hotel 130\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"131\",\"HotelName\":\"Hotel 131\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"132\",\"HotelName\":\"Hotel 132\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"133\",\"HotelName\":\"Hotel 133\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"134\",\"HotelName\":\"Hotel 134\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"135\",\"HotelName\":\"Hotel 135\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"136\",\"HotelName\":\"Hotel 136\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"137\",\"HotelName\":\"Hotel 137\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"138\",\"HotelName\":\"Hotel 138\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"139\",\"HotelName\":\"Hotel 139\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"140\",\"HotelName\":\"Hotel 140\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"141\",\"HotelName\":\"Hotel 141\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"142\",\"HotelName\":\"Hotel 142\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"143\",\"HotelName\":\"Hotel 143\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"144\",\"HotelName\":\"Hotel 144\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"145\",\"HotelName\":\"Hotel 145\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"146\",\"HotelName\":\"Hotel 146\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"147\",\"HotelName\":\"Hotel 147\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"148\",\"HotelName\":\"Hotel 148\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"149\",\"HotelName\":\"Hotel 149\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"150\",\"HotelName\":\"Hotel 150\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "7115ce80-9d11-4c62-b2e1-589d1a42a78a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b0557d8b-8e5d-4117-99a8-9d540fe7ac05", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e42610f3-0b68-43c8-8b99-eb8dd64a6aab", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12811", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b0557d8b-8e5d-4117-99a8-9d540fe7ac05", + "request-id" : "e42610f3-0b68-43c8-8b99-eb8dd64a6aab", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:03 GMT", + "Date" : "Thu, 27 May 2021 21:10:17 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b0557d8b-8e5d-4117-99a8-9d540fe7ac05", - "elapsed-time" : "11", + "client-request-id" : "e42610f3-0b68-43c8-8b99-eb8dd64a6aab", + "elapsed-time" : "13", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12811", "Body" : "{\"value\":[{\"@search.score\":1.0,\"HotelId\":\"151\",\"HotelName\":\"Hotel 151\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"152\",\"HotelName\":\"Hotel 152\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"153\",\"HotelName\":\"Hotel 153\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"154\",\"HotelName\":\"Hotel 154\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"155\",\"HotelName\":\"Hotel 155\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"156\",\"HotelName\":\"Hotel 156\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"157\",\"HotelName\":\"Hotel 157\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"158\",\"HotelName\":\"Hotel 158\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"159\",\"HotelName\":\"Hotel 159\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"160\",\"HotelName\":\"Hotel 160\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"161\",\"HotelName\":\"Hotel 161\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"162\",\"HotelName\":\"Hotel 162\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"163\",\"HotelName\":\"Hotel 163\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"164\",\"HotelName\":\"Hotel 164\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"165\",\"HotelName\":\"Hotel 165\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"166\",\"HotelName\":\"Hotel 166\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"167\",\"HotelName\":\"Hotel 167\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"168\",\"HotelName\":\"Hotel 168\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"169\",\"HotelName\":\"Hotel 169\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"170\",\"HotelName\":\"Hotel 170\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"171\",\"HotelName\":\"Hotel 171\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"172\",\"HotelName\":\"Hotel 172\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"173\",\"HotelName\":\"Hotel 173\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"174\",\"HotelName\":\"Hotel 174\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"175\",\"HotelName\":\"Hotel 175\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"176\",\"HotelName\":\"Hotel 176\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"177\",\"HotelName\":\"Hotel 177\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"178\",\"HotelName\":\"Hotel 178\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"179\",\"HotelName\":\"Hotel 179\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"180\",\"HotelName\":\"Hotel 180\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"181\",\"HotelName\":\"Hotel 181\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"182\",\"HotelName\":\"Hotel 182\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"183\",\"HotelName\":\"Hotel 183\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"184\",\"HotelName\":\"Hotel 184\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"185\",\"HotelName\":\"Hotel 185\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"186\",\"HotelName\":\"Hotel 186\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"187\",\"HotelName\":\"Hotel 187\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"188\",\"HotelName\":\"Hotel 188\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"189\",\"HotelName\":\"Hotel 189\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"190\",\"HotelName\":\"Hotel 190\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"191\",\"HotelName\":\"Hotel 191\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"192\",\"HotelName\":\"Hotel 192\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"193\",\"HotelName\":\"Hotel 193\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"194\",\"HotelName\":\"Hotel 194\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"195\",\"HotelName\":\"Hotel 195\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"196\",\"HotelName\":\"Hotel 196\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"197\",\"HotelName\":\"Hotel 197\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"198\",\"HotelName\":\"Hotel 198\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"199\",\"HotelName\":\"Hotel 199\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"200\",\"HotelName\":\"Hotel 200\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "b0557d8b-8e5d-4117-99a8-9d540fe7ac05", + "x-ms-client-request-id" : "e42610f3-0b68-43c8-8b99-eb8dd64a6aab", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "65ef66cd-b3b8-4598-94a0-39018cc24925", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "51917683-8ff1-4607-a1b2-4dd12865317a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12918", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "65ef66cd-b3b8-4598-94a0-39018cc24925", + "request-id" : "51917683-8ff1-4607-a1b2-4dd12865317a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:02 GMT", + "Date" : "Thu, 27 May 2021 21:10:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "65ef66cd-b3b8-4598-94a0-39018cc24925", - "elapsed-time" : "15", + "client-request-id" : "51917683-8ff1-4607-a1b2-4dd12865317a", + "elapsed-time" : "10", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12926", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":50},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"1\",\"HotelName\":\"Hotel 1\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"2\",\"HotelName\":\"Hotel 2\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"3\",\"HotelName\":\"Hotel 3\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"4\",\"HotelName\":\"Hotel 4\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"5\",\"HotelName\":\"Hotel 5\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"6\",\"HotelName\":\"Hotel 6\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"7\",\"HotelName\":\"Hotel 7\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"8\",\"HotelName\":\"Hotel 8\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"9\",\"HotelName\":\"Hotel 9\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"10\",\"HotelName\":\"Hotel 10\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"11\",\"HotelName\":\"Hotel 11\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"12\",\"HotelName\":\"Hotel 12\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"13\",\"HotelName\":\"Hotel 13\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"14\",\"HotelName\":\"Hotel 14\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"15\",\"HotelName\":\"Hotel 15\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"16\",\"HotelName\":\"Hotel 16\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"17\",\"HotelName\":\"Hotel 17\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"18\",\"HotelName\":\"Hotel 18\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"19\",\"HotelName\":\"Hotel 19\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"20\",\"HotelName\":\"Hotel 20\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"21\",\"HotelName\":\"Hotel 21\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"22\",\"HotelName\":\"Hotel 22\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"23\",\"HotelName\":\"Hotel 23\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"24\",\"HotelName\":\"Hotel 24\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"25\",\"HotelName\":\"Hotel 25\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"26\",\"HotelName\":\"Hotel 26\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"27\",\"HotelName\":\"Hotel 27\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"28\",\"HotelName\":\"Hotel 28\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"29\",\"HotelName\":\"Hotel 29\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"30\",\"HotelName\":\"Hotel 30\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"31\",\"HotelName\":\"Hotel 31\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"32\",\"HotelName\":\"Hotel 32\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"33\",\"HotelName\":\"Hotel 33\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"34\",\"HotelName\":\"Hotel 34\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"35\",\"HotelName\":\"Hotel 35\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"36\",\"HotelName\":\"Hotel 36\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"37\",\"HotelName\":\"Hotel 37\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"38\",\"HotelName\":\"Hotel 38\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"39\",\"HotelName\":\"Hotel 39\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"40\",\"HotelName\":\"Hotel 40\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"41\",\"HotelName\":\"Hotel 41\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"42\",\"HotelName\":\"Hotel 42\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"43\",\"HotelName\":\"Hotel 43\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"44\",\"HotelName\":\"Hotel 44\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"45\",\"HotelName\":\"Hotel 45\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"46\",\"HotelName\":\"Hotel 46\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"47\",\"HotelName\":\"Hotel 47\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"48\",\"HotelName\":\"Hotel 48\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"49\",\"HotelName\":\"Hotel 49\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"50\",\"HotelName\":\"Hotel 50\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "65ef66cd-b3b8-4598-94a0-39018cc24925", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":50},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"1\",\"HotelName\":\"Hotel 1\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"2\",\"HotelName\":\"Hotel 2\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"3\",\"HotelName\":\"Hotel 3\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"4\",\"HotelName\":\"Hotel 4\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"5\",\"HotelName\":\"Hotel 5\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"6\",\"HotelName\":\"Hotel 6\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"7\",\"HotelName\":\"Hotel 7\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"8\",\"HotelName\":\"Hotel 8\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"9\",\"HotelName\":\"Hotel 9\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"10\",\"HotelName\":\"Hotel 10\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"11\",\"HotelName\":\"Hotel 11\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"12\",\"HotelName\":\"Hotel 12\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"13\",\"HotelName\":\"Hotel 13\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"14\",\"HotelName\":\"Hotel 14\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"15\",\"HotelName\":\"Hotel 15\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"16\",\"HotelName\":\"Hotel 16\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"17\",\"HotelName\":\"Hotel 17\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"18\",\"HotelName\":\"Hotel 18\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"19\",\"HotelName\":\"Hotel 19\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"20\",\"HotelName\":\"Hotel 20\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"21\",\"HotelName\":\"Hotel 21\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"22\",\"HotelName\":\"Hotel 22\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"23\",\"HotelName\":\"Hotel 23\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"24\",\"HotelName\":\"Hotel 24\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"25\",\"HotelName\":\"Hotel 25\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"26\",\"HotelName\":\"Hotel 26\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"27\",\"HotelName\":\"Hotel 27\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"28\",\"HotelName\":\"Hotel 28\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"29\",\"HotelName\":\"Hotel 29\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"30\",\"HotelName\":\"Hotel 30\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"31\",\"HotelName\":\"Hotel 31\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"32\",\"HotelName\":\"Hotel 32\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"33\",\"HotelName\":\"Hotel 33\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"34\",\"HotelName\":\"Hotel 34\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"35\",\"HotelName\":\"Hotel 35\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"36\",\"HotelName\":\"Hotel 36\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"37\",\"HotelName\":\"Hotel 37\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"38\",\"HotelName\":\"Hotel 38\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"39\",\"HotelName\":\"Hotel 39\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"40\",\"HotelName\":\"Hotel 40\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"41\",\"HotelName\":\"Hotel 41\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"42\",\"HotelName\":\"Hotel 42\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"43\",\"HotelName\":\"Hotel 43\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"44\",\"HotelName\":\"Hotel 44\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"45\",\"HotelName\":\"Hotel 45\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"46\",\"HotelName\":\"Hotel 46\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"47\",\"HotelName\":\"Hotel 47\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"48\",\"HotelName\":\"Hotel 48\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"49\",\"HotelName\":\"Hotel 49\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"50\",\"HotelName\":\"Hotel 50\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "51917683-8ff1-4607-a1b2-4dd12865317a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7bace020-823e-4691-813f-c4d7c962b049", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "32844980-38df-4a5a-af31-3dbba35f4bf8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12939", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7bace020-823e-4691-813f-c4d7c962b049", + "request-id" : "32844980-38df-4a5a-af31-3dbba35f4bf8", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:03 GMT", + "Date" : "Thu, 27 May 2021 21:10:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7bace020-823e-4691-813f-c4d7c962b049", - "elapsed-time" : "13", + "client-request-id" : "32844980-38df-4a5a-af31-3dbba35f4bf8", + "elapsed-time" : "10", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12947", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":100},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"51\",\"HotelName\":\"Hotel 51\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"52\",\"HotelName\":\"Hotel 52\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"53\",\"HotelName\":\"Hotel 53\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"54\",\"HotelName\":\"Hotel 54\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"55\",\"HotelName\":\"Hotel 55\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"56\",\"HotelName\":\"Hotel 56\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"57\",\"HotelName\":\"Hotel 57\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"58\",\"HotelName\":\"Hotel 58\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"59\",\"HotelName\":\"Hotel 59\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"60\",\"HotelName\":\"Hotel 60\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"61\",\"HotelName\":\"Hotel 61\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"62\",\"HotelName\":\"Hotel 62\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"63\",\"HotelName\":\"Hotel 63\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"64\",\"HotelName\":\"Hotel 64\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"65\",\"HotelName\":\"Hotel 65\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"66\",\"HotelName\":\"Hotel 66\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"67\",\"HotelName\":\"Hotel 67\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"68\",\"HotelName\":\"Hotel 68\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"69\",\"HotelName\":\"Hotel 69\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"70\",\"HotelName\":\"Hotel 70\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"71\",\"HotelName\":\"Hotel 71\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"72\",\"HotelName\":\"Hotel 72\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"73\",\"HotelName\":\"Hotel 73\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"74\",\"HotelName\":\"Hotel 74\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"75\",\"HotelName\":\"Hotel 75\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"76\",\"HotelName\":\"Hotel 76\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"77\",\"HotelName\":\"Hotel 77\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"78\",\"HotelName\":\"Hotel 78\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"79\",\"HotelName\":\"Hotel 79\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"80\",\"HotelName\":\"Hotel 80\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"81\",\"HotelName\":\"Hotel 81\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"82\",\"HotelName\":\"Hotel 82\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"83\",\"HotelName\":\"Hotel 83\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"84\",\"HotelName\":\"Hotel 84\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"85\",\"HotelName\":\"Hotel 85\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"86\",\"HotelName\":\"Hotel 86\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"87\",\"HotelName\":\"Hotel 87\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"88\",\"HotelName\":\"Hotel 88\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"89\",\"HotelName\":\"Hotel 89\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"90\",\"HotelName\":\"Hotel 90\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"91\",\"HotelName\":\"Hotel 91\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"92\",\"HotelName\":\"Hotel 92\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"93\",\"HotelName\":\"Hotel 93\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"94\",\"HotelName\":\"Hotel 94\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"95\",\"HotelName\":\"Hotel 95\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"96\",\"HotelName\":\"Hotel 96\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"97\",\"HotelName\":\"Hotel 97\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"98\",\"HotelName\":\"Hotel 98\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"99\",\"HotelName\":\"Hotel 99\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"100\",\"HotelName\":\"Hotel 100\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "7bace020-823e-4691-813f-c4d7c962b049", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":100},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"51\",\"HotelName\":\"Hotel 51\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"52\",\"HotelName\":\"Hotel 52\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"53\",\"HotelName\":\"Hotel 53\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"54\",\"HotelName\":\"Hotel 54\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"55\",\"HotelName\":\"Hotel 55\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"56\",\"HotelName\":\"Hotel 56\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"57\",\"HotelName\":\"Hotel 57\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"58\",\"HotelName\":\"Hotel 58\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"59\",\"HotelName\":\"Hotel 59\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"60\",\"HotelName\":\"Hotel 60\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"61\",\"HotelName\":\"Hotel 61\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"62\",\"HotelName\":\"Hotel 62\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"63\",\"HotelName\":\"Hotel 63\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"64\",\"HotelName\":\"Hotel 64\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"65\",\"HotelName\":\"Hotel 65\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"66\",\"HotelName\":\"Hotel 66\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"67\",\"HotelName\":\"Hotel 67\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"68\",\"HotelName\":\"Hotel 68\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"69\",\"HotelName\":\"Hotel 69\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"70\",\"HotelName\":\"Hotel 70\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"71\",\"HotelName\":\"Hotel 71\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"72\",\"HotelName\":\"Hotel 72\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"73\",\"HotelName\":\"Hotel 73\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"74\",\"HotelName\":\"Hotel 74\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"75\",\"HotelName\":\"Hotel 75\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"76\",\"HotelName\":\"Hotel 76\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"77\",\"HotelName\":\"Hotel 77\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"78\",\"HotelName\":\"Hotel 78\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"79\",\"HotelName\":\"Hotel 79\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"80\",\"HotelName\":\"Hotel 80\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"81\",\"HotelName\":\"Hotel 81\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"82\",\"HotelName\":\"Hotel 82\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"83\",\"HotelName\":\"Hotel 83\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"84\",\"HotelName\":\"Hotel 84\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"85\",\"HotelName\":\"Hotel 85\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"86\",\"HotelName\":\"Hotel 86\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"87\",\"HotelName\":\"Hotel 87\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"88\",\"HotelName\":\"Hotel 88\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"89\",\"HotelName\":\"Hotel 89\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"90\",\"HotelName\":\"Hotel 90\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"91\",\"HotelName\":\"Hotel 91\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"92\",\"HotelName\":\"Hotel 92\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"93\",\"HotelName\":\"Hotel 93\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"94\",\"HotelName\":\"Hotel 94\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"95\",\"HotelName\":\"Hotel 95\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"96\",\"HotelName\":\"Hotel 96\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"97\",\"HotelName\":\"Hotel 97\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"98\",\"HotelName\":\"Hotel 98\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"99\",\"HotelName\":\"Hotel 99\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"100\",\"HotelName\":\"Hotel 100\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "32844980-38df-4a5a-af31-3dbba35f4bf8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7ca35b42-5b39-4978-9f1f-1a8a2ee7cf4f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3f04a42b-5e28-48ca-9741-86cff37e9b16", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "13037", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7ca35b42-5b39-4978-9f1f-1a8a2ee7cf4f", + "request-id" : "3f04a42b-5e28-48ca-9741-86cff37e9b16", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:02 GMT", + "Date" : "Thu, 27 May 2021 21:10:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7ca35b42-5b39-4978-9f1f-1a8a2ee7cf4f", - "elapsed-time" : "10", + "client-request-id" : "3f04a42b-5e28-48ca-9741-86cff37e9b16", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "13045", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":150},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"101\",\"HotelName\":\"Hotel 101\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"102\",\"HotelName\":\"Hotel 102\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"103\",\"HotelName\":\"Hotel 103\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"104\",\"HotelName\":\"Hotel 104\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"105\",\"HotelName\":\"Hotel 105\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"106\",\"HotelName\":\"Hotel 106\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"107\",\"HotelName\":\"Hotel 107\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"108\",\"HotelName\":\"Hotel 108\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"109\",\"HotelName\":\"Hotel 109\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"110\",\"HotelName\":\"Hotel 110\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"111\",\"HotelName\":\"Hotel 111\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"112\",\"HotelName\":\"Hotel 112\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"113\",\"HotelName\":\"Hotel 113\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"114\",\"HotelName\":\"Hotel 114\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"115\",\"HotelName\":\"Hotel 115\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"116\",\"HotelName\":\"Hotel 116\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"117\",\"HotelName\":\"Hotel 117\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"118\",\"HotelName\":\"Hotel 118\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"119\",\"HotelName\":\"Hotel 119\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"120\",\"HotelName\":\"Hotel 120\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"121\",\"HotelName\":\"Hotel 121\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"122\",\"HotelName\":\"Hotel 122\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"123\",\"HotelName\":\"Hotel 123\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"124\",\"HotelName\":\"Hotel 124\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"125\",\"HotelName\":\"Hotel 125\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"126\",\"HotelName\":\"Hotel 126\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"127\",\"HotelName\":\"Hotel 127\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"128\",\"HotelName\":\"Hotel 128\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"129\",\"HotelName\":\"Hotel 129\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"130\",\"HotelName\":\"Hotel 130\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"131\",\"HotelName\":\"Hotel 131\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"132\",\"HotelName\":\"Hotel 132\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"133\",\"HotelName\":\"Hotel 133\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"134\",\"HotelName\":\"Hotel 134\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"135\",\"HotelName\":\"Hotel 135\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"136\",\"HotelName\":\"Hotel 136\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"137\",\"HotelName\":\"Hotel 137\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"138\",\"HotelName\":\"Hotel 138\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"139\",\"HotelName\":\"Hotel 139\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"140\",\"HotelName\":\"Hotel 140\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"141\",\"HotelName\":\"Hotel 141\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"142\",\"HotelName\":\"Hotel 142\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"143\",\"HotelName\":\"Hotel 143\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"144\",\"HotelName\":\"Hotel 144\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"145\",\"HotelName\":\"Hotel 145\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"146\",\"HotelName\":\"Hotel 146\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"147\",\"HotelName\":\"Hotel 147\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"148\",\"HotelName\":\"Hotel 148\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"149\",\"HotelName\":\"Hotel 149\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"150\",\"HotelName\":\"Hotel 150\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "7ca35b42-5b39-4978-9f1f-1a8a2ee7cf4f", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":150},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"101\",\"HotelName\":\"Hotel 101\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"102\",\"HotelName\":\"Hotel 102\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"103\",\"HotelName\":\"Hotel 103\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"104\",\"HotelName\":\"Hotel 104\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"105\",\"HotelName\":\"Hotel 105\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"106\",\"HotelName\":\"Hotel 106\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"107\",\"HotelName\":\"Hotel 107\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"108\",\"HotelName\":\"Hotel 108\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"109\",\"HotelName\":\"Hotel 109\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"110\",\"HotelName\":\"Hotel 110\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"111\",\"HotelName\":\"Hotel 111\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"112\",\"HotelName\":\"Hotel 112\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"113\",\"HotelName\":\"Hotel 113\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"114\",\"HotelName\":\"Hotel 114\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"115\",\"HotelName\":\"Hotel 115\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"116\",\"HotelName\":\"Hotel 116\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"117\",\"HotelName\":\"Hotel 117\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"118\",\"HotelName\":\"Hotel 118\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"119\",\"HotelName\":\"Hotel 119\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"120\",\"HotelName\":\"Hotel 120\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"121\",\"HotelName\":\"Hotel 121\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"122\",\"HotelName\":\"Hotel 122\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"123\",\"HotelName\":\"Hotel 123\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"124\",\"HotelName\":\"Hotel 124\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"125\",\"HotelName\":\"Hotel 125\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"126\",\"HotelName\":\"Hotel 126\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"127\",\"HotelName\":\"Hotel 127\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"128\",\"HotelName\":\"Hotel 128\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"129\",\"HotelName\":\"Hotel 129\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"130\",\"HotelName\":\"Hotel 130\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"131\",\"HotelName\":\"Hotel 131\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"132\",\"HotelName\":\"Hotel 132\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"133\",\"HotelName\":\"Hotel 133\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"134\",\"HotelName\":\"Hotel 134\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"135\",\"HotelName\":\"Hotel 135\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"136\",\"HotelName\":\"Hotel 136\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"137\",\"HotelName\":\"Hotel 137\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"138\",\"HotelName\":\"Hotel 138\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"139\",\"HotelName\":\"Hotel 139\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"140\",\"HotelName\":\"Hotel 140\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"141\",\"HotelName\":\"Hotel 141\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"142\",\"HotelName\":\"Hotel 142\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"143\",\"HotelName\":\"Hotel 143\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"144\",\"HotelName\":\"Hotel 144\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"145\",\"HotelName\":\"Hotel 145\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"146\",\"HotelName\":\"Hotel 146\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"147\",\"HotelName\":\"Hotel 147\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"148\",\"HotelName\":\"Hotel 148\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"149\",\"HotelName\":\"Hotel 149\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"150\",\"HotelName\":\"Hotel 150\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "3f04a42b-5e28-48ca-9741-86cff37e9b16", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5e0db69-58d3-415a-aca6-3ceb51b45811", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "906969d0-4e77-456d-a60f-471918918473", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12811", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d5e0db69-58d3-415a-aca6-3ceb51b45811", + "request-id" : "906969d0-4e77-456d-a60f-471918918473", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:03 GMT", + "Date" : "Thu, 27 May 2021 21:10:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d5e0db69-58d3-415a-aca6-3ceb51b45811", + "client-request-id" : "906969d0-4e77-456d-a60f-471918918473", "elapsed-time" : "10", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12811", "Body" : "{\"value\":[{\"@search.score\":1.0,\"HotelId\":\"151\",\"HotelName\":\"Hotel 151\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"152\",\"HotelName\":\"Hotel 152\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"153\",\"HotelName\":\"Hotel 153\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"154\",\"HotelName\":\"Hotel 154\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"155\",\"HotelName\":\"Hotel 155\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"156\",\"HotelName\":\"Hotel 156\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"157\",\"HotelName\":\"Hotel 157\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"158\",\"HotelName\":\"Hotel 158\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"159\",\"HotelName\":\"Hotel 159\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"160\",\"HotelName\":\"Hotel 160\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"161\",\"HotelName\":\"Hotel 161\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"162\",\"HotelName\":\"Hotel 162\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"163\",\"HotelName\":\"Hotel 163\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"164\",\"HotelName\":\"Hotel 164\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"165\",\"HotelName\":\"Hotel 165\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"166\",\"HotelName\":\"Hotel 166\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"167\",\"HotelName\":\"Hotel 167\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"168\",\"HotelName\":\"Hotel 168\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"169\",\"HotelName\":\"Hotel 169\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"170\",\"HotelName\":\"Hotel 170\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"171\",\"HotelName\":\"Hotel 171\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"172\",\"HotelName\":\"Hotel 172\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"173\",\"HotelName\":\"Hotel 173\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"174\",\"HotelName\":\"Hotel 174\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"175\",\"HotelName\":\"Hotel 175\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"176\",\"HotelName\":\"Hotel 176\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"177\",\"HotelName\":\"Hotel 177\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"178\",\"HotelName\":\"Hotel 178\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"179\",\"HotelName\":\"Hotel 179\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"180\",\"HotelName\":\"Hotel 180\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"181\",\"HotelName\":\"Hotel 181\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"182\",\"HotelName\":\"Hotel 182\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"183\",\"HotelName\":\"Hotel 183\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"184\",\"HotelName\":\"Hotel 184\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"185\",\"HotelName\":\"Hotel 185\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"186\",\"HotelName\":\"Hotel 186\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"187\",\"HotelName\":\"Hotel 187\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"188\",\"HotelName\":\"Hotel 188\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"189\",\"HotelName\":\"Hotel 189\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"190\",\"HotelName\":\"Hotel 190\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"191\",\"HotelName\":\"Hotel 191\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"192\",\"HotelName\":\"Hotel 192\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"193\",\"HotelName\":\"Hotel 193\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"194\",\"HotelName\":\"Hotel 194\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"195\",\"HotelName\":\"Hotel 195\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"196\",\"HotelName\":\"Hotel 196\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"197\",\"HotelName\":\"Hotel 197\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"198\",\"HotelName\":\"Hotel 198\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"199\",\"HotelName\":\"Hotel 199\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"200\",\"HotelName\":\"Hotel 200\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "d5e0db69-58d3-415a-aca6-3ceb51b45811", + "x-ms-client-request-id" : "906969d0-4e77-456d-a60f-471918918473", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsedd907854fa7ec1394434')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentsb243323633f43c04b13e4')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5aabcdc-6f82-41a3-b561-8fe4ce7b667d" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2a40e769-39f6-4d12-8fdf-95df716ea822" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e5aabcdc-6f82-41a3-b561-8fe4ce7b667d", - "elapsed-time" : "548", + "client-request-id" : "2a40e769-39f6-4d12-8fdf-95df716ea822", + "elapsed-time" : "580", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "e5aabcdc-6f82-41a3-b561-8fe4ce7b667d", + "request-id" : "2a40e769-39f6-4d12-8fdf-95df716ea822", "StatusCode" : "204", - "x-ms-client-request-id" : "e5aabcdc-6f82-41a3-b561-8fe4ce7b667d", - "Date" : "Fri, 02 Apr 2021 22:32:04 GMT" + "x-ms-client-request-id" : "2a40e769-39f6-4d12-8fdf-95df716ea822", + "Date" : "Thu, 27 May 2021 21:10:19 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscangetpaginateddocumentsedd907854fa7ec1394434" ] + "variables" : [ "hotelscangetpaginateddocumentsb243323633f43c04b13e4" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.canGetPaginatedDocumentsWithSearchOptions.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.canGetPaginatedDocumentsWithSearchOptions.json index c87904f7336c..3c6fadd50c8f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.canGetPaginatedDocumentsWithSearchOptions.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.canGetPaginatedDocumentsWithSearchOptions.json @@ -1,405 +1,405 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "046aa3f4-5656-4a1c-8126-04977fa33b7e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "12b3bf1f-c638-458d-b54b-9ce3c820acc5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6500", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "046aa3f4-5656-4a1c-8126-04977fa33b7e", + "request-id" : "12b3bf1f-c638-458d-b54b-9ce3c820acc5", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:32:10 GMT", + "Date" : "Thu, 27 May 2021 21:10:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62727FB8592\"", - "client-request-id" : "046aa3f4-5656-4a1c-8126-04977fa33b7e", - "elapsed-time" : "1115", + "ETag" : "W/\"0x8D92153D9B2528D\"", + "client-request-id" : "12b3bf1f-c638-458d-b54b-9ce3c820acc5", + "elapsed-time" : "1488", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6949", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62727FB8592\\\"\",\"name\":\"hotelscangetpaginateddocumentswithsearchoptions3e5886711942\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "046aa3f4-5656-4a1c-8126-04977fa33b7e", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153D9B2528D\\\"\",\"name\":\"hotelscangetpaginateddocumentswithsearchoptions9c8715797d65\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "12b3bf1f-c638-458d-b54b-9ce3c820acc5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e9600e60-516f-4a80-ba75-6beeb264081b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "75c70e69-0ee6-4edd-93ad-0519f094ca70", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12903", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e9600e60-516f-4a80-ba75-6beeb264081b", + "request-id" : "75c70e69-0ee6-4edd-93ad-0519f094ca70", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:10 GMT", + "Date" : "Thu, 27 May 2021 21:10:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e9600e60-516f-4a80-ba75-6beeb264081b", - "elapsed-time" : "134", + "client-request-id" : "75c70e69-0ee6-4edd-93ad-0519f094ca70", + "elapsed-time" : "136", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12903", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"5\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"6\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"7\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"8\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"9\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"10\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"11\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"12\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"13\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"14\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"15\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"16\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"17\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"18\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"19\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"20\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"21\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"22\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"23\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"24\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"25\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"26\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"27\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"28\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"29\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"30\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"31\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"32\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"33\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"34\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"35\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"36\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"37\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"38\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"39\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"40\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"41\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"42\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"43\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"44\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"45\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"46\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"47\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"48\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"49\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"50\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"51\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"52\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"53\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"54\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"55\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"56\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"57\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"58\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"59\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"60\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"61\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"62\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"63\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"64\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"65\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"66\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"67\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"68\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"69\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"70\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"71\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"72\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"73\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"74\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"75\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"76\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"77\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"78\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"79\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"80\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"81\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"82\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"83\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"84\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"85\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"86\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"87\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"88\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"89\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"90\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"91\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"92\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"93\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"94\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"95\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"96\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"97\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"98\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"99\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"100\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"101\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"102\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"103\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"104\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"105\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"106\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"107\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"108\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"109\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"110\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"111\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"112\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"113\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"114\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"115\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"116\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"117\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"118\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"119\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"120\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"121\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"122\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"123\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"124\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"125\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"126\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"127\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"128\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"129\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"130\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"131\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"132\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"133\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"134\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"135\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"136\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"137\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"138\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"139\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"140\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"141\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"142\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"143\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"144\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"145\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"146\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"147\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"148\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"149\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"150\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"151\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"152\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"153\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"154\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"155\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"156\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"157\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"158\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"159\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"160\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"161\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"162\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"163\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"164\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"165\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"166\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"167\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"168\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"169\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"170\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"171\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"172\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"173\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"174\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"175\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"176\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"177\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"178\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"179\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"180\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"181\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"182\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"183\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"184\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"185\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"186\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"187\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"188\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"189\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"190\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"191\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"192\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"193\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"194\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"195\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"196\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"197\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"198\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"199\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"200\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "e9600e60-516f-4a80-ba75-6beeb264081b", + "x-ms-client-request-id" : "75c70e69-0ee6-4edd-93ad-0519f094ca70", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5235a7f4-e405-4da3-b952-678b09516689", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "cac5e996-72de-4f07-9b09-7814c4d059b8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12926", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5235a7f4-e405-4da3-b952-678b09516689", + "request-id" : "cac5e996-72de-4f07-9b09-7814c4d059b8", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:14 GMT", + "Date" : "Thu, 27 May 2021 21:10:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5235a7f4-e405-4da3-b952-678b09516689", - "elapsed-time" : "107", + "client-request-id" : "cac5e996-72de-4f07-9b09-7814c4d059b8", + "elapsed-time" : "86", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12934", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":50},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"1\",\"HotelName\":\"Hotel 1\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"2\",\"HotelName\":\"Hotel 2\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"3\",\"HotelName\":\"Hotel 3\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"4\",\"HotelName\":\"Hotel 4\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"5\",\"HotelName\":\"Hotel 5\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"6\",\"HotelName\":\"Hotel 6\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"7\",\"HotelName\":\"Hotel 7\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"8\",\"HotelName\":\"Hotel 8\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"9\",\"HotelName\":\"Hotel 9\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"10\",\"HotelName\":\"Hotel 10\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"11\",\"HotelName\":\"Hotel 11\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"12\",\"HotelName\":\"Hotel 12\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"13\",\"HotelName\":\"Hotel 13\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"14\",\"HotelName\":\"Hotel 14\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"15\",\"HotelName\":\"Hotel 15\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"16\",\"HotelName\":\"Hotel 16\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"17\",\"HotelName\":\"Hotel 17\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"18\",\"HotelName\":\"Hotel 18\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"19\",\"HotelName\":\"Hotel 19\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"20\",\"HotelName\":\"Hotel 20\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"21\",\"HotelName\":\"Hotel 21\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"22\",\"HotelName\":\"Hotel 22\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"23\",\"HotelName\":\"Hotel 23\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"24\",\"HotelName\":\"Hotel 24\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"25\",\"HotelName\":\"Hotel 25\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"26\",\"HotelName\":\"Hotel 26\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"27\",\"HotelName\":\"Hotel 27\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"28\",\"HotelName\":\"Hotel 28\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"29\",\"HotelName\":\"Hotel 29\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"30\",\"HotelName\":\"Hotel 30\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"31\",\"HotelName\":\"Hotel 31\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"32\",\"HotelName\":\"Hotel 32\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"33\",\"HotelName\":\"Hotel 33\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"34\",\"HotelName\":\"Hotel 34\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"35\",\"HotelName\":\"Hotel 35\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"36\",\"HotelName\":\"Hotel 36\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"37\",\"HotelName\":\"Hotel 37\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"38\",\"HotelName\":\"Hotel 38\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"39\",\"HotelName\":\"Hotel 39\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"40\",\"HotelName\":\"Hotel 40\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"41\",\"HotelName\":\"Hotel 41\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"42\",\"HotelName\":\"Hotel 42\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"43\",\"HotelName\":\"Hotel 43\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"44\",\"HotelName\":\"Hotel 44\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"45\",\"HotelName\":\"Hotel 45\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"46\",\"HotelName\":\"Hotel 46\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"47\",\"HotelName\":\"Hotel 47\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"48\",\"HotelName\":\"Hotel 48\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"49\",\"HotelName\":\"Hotel 49\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"50\",\"HotelName\":\"Hotel 50\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "5235a7f4-e405-4da3-b952-678b09516689", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":50},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"1\",\"HotelName\":\"Hotel 1\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"2\",\"HotelName\":\"Hotel 2\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"3\",\"HotelName\":\"Hotel 3\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"4\",\"HotelName\":\"Hotel 4\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"5\",\"HotelName\":\"Hotel 5\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"6\",\"HotelName\":\"Hotel 6\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"7\",\"HotelName\":\"Hotel 7\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"8\",\"HotelName\":\"Hotel 8\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"9\",\"HotelName\":\"Hotel 9\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"10\",\"HotelName\":\"Hotel 10\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"11\",\"HotelName\":\"Hotel 11\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"12\",\"HotelName\":\"Hotel 12\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"13\",\"HotelName\":\"Hotel 13\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"14\",\"HotelName\":\"Hotel 14\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"15\",\"HotelName\":\"Hotel 15\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"16\",\"HotelName\":\"Hotel 16\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"17\",\"HotelName\":\"Hotel 17\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"18\",\"HotelName\":\"Hotel 18\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"19\",\"HotelName\":\"Hotel 19\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"20\",\"HotelName\":\"Hotel 20\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"21\",\"HotelName\":\"Hotel 21\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"22\",\"HotelName\":\"Hotel 22\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"23\",\"HotelName\":\"Hotel 23\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"24\",\"HotelName\":\"Hotel 24\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"25\",\"HotelName\":\"Hotel 25\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"26\",\"HotelName\":\"Hotel 26\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"27\",\"HotelName\":\"Hotel 27\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"28\",\"HotelName\":\"Hotel 28\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"29\",\"HotelName\":\"Hotel 29\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"30\",\"HotelName\":\"Hotel 30\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"31\",\"HotelName\":\"Hotel 31\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"32\",\"HotelName\":\"Hotel 32\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"33\",\"HotelName\":\"Hotel 33\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"34\",\"HotelName\":\"Hotel 34\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"35\",\"HotelName\":\"Hotel 35\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"36\",\"HotelName\":\"Hotel 36\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"37\",\"HotelName\":\"Hotel 37\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"38\",\"HotelName\":\"Hotel 38\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"39\",\"HotelName\":\"Hotel 39\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"40\",\"HotelName\":\"Hotel 40\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"41\",\"HotelName\":\"Hotel 41\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"42\",\"HotelName\":\"Hotel 42\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"43\",\"HotelName\":\"Hotel 43\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"44\",\"HotelName\":\"Hotel 44\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"45\",\"HotelName\":\"Hotel 45\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"46\",\"HotelName\":\"Hotel 46\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"47\",\"HotelName\":\"Hotel 47\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"48\",\"HotelName\":\"Hotel 48\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"49\",\"HotelName\":\"Hotel 49\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"50\",\"HotelName\":\"Hotel 50\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "cac5e996-72de-4f07-9b09-7814c4d059b8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "17893032-03d0-4165-a13b-ad536e68b44f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b3c8cf3c-6b23-45de-96ee-3acd55bd0294", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12947", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "17893032-03d0-4165-a13b-ad536e68b44f", + "request-id" : "b3c8cf3c-6b23-45de-96ee-3acd55bd0294", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:14 GMT", + "Date" : "Thu, 27 May 2021 21:10:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "17893032-03d0-4165-a13b-ad536e68b44f", - "elapsed-time" : "21", + "client-request-id" : "b3c8cf3c-6b23-45de-96ee-3acd55bd0294", + "elapsed-time" : "19", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12955", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":100},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"51\",\"HotelName\":\"Hotel 51\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"52\",\"HotelName\":\"Hotel 52\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"53\",\"HotelName\":\"Hotel 53\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"54\",\"HotelName\":\"Hotel 54\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"55\",\"HotelName\":\"Hotel 55\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"56\",\"HotelName\":\"Hotel 56\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"57\",\"HotelName\":\"Hotel 57\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"58\",\"HotelName\":\"Hotel 58\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"59\",\"HotelName\":\"Hotel 59\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"60\",\"HotelName\":\"Hotel 60\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"61\",\"HotelName\":\"Hotel 61\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"62\",\"HotelName\":\"Hotel 62\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"63\",\"HotelName\":\"Hotel 63\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"64\",\"HotelName\":\"Hotel 64\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"65\",\"HotelName\":\"Hotel 65\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"66\",\"HotelName\":\"Hotel 66\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"67\",\"HotelName\":\"Hotel 67\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"68\",\"HotelName\":\"Hotel 68\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"69\",\"HotelName\":\"Hotel 69\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"70\",\"HotelName\":\"Hotel 70\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"71\",\"HotelName\":\"Hotel 71\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"72\",\"HotelName\":\"Hotel 72\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"73\",\"HotelName\":\"Hotel 73\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"74\",\"HotelName\":\"Hotel 74\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"75\",\"HotelName\":\"Hotel 75\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"76\",\"HotelName\":\"Hotel 76\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"77\",\"HotelName\":\"Hotel 77\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"78\",\"HotelName\":\"Hotel 78\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"79\",\"HotelName\":\"Hotel 79\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"80\",\"HotelName\":\"Hotel 80\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"81\",\"HotelName\":\"Hotel 81\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"82\",\"HotelName\":\"Hotel 82\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"83\",\"HotelName\":\"Hotel 83\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"84\",\"HotelName\":\"Hotel 84\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"85\",\"HotelName\":\"Hotel 85\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"86\",\"HotelName\":\"Hotel 86\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"87\",\"HotelName\":\"Hotel 87\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"88\",\"HotelName\":\"Hotel 88\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"89\",\"HotelName\":\"Hotel 89\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"90\",\"HotelName\":\"Hotel 90\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"91\",\"HotelName\":\"Hotel 91\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"92\",\"HotelName\":\"Hotel 92\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"93\",\"HotelName\":\"Hotel 93\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"94\",\"HotelName\":\"Hotel 94\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"95\",\"HotelName\":\"Hotel 95\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"96\",\"HotelName\":\"Hotel 96\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"97\",\"HotelName\":\"Hotel 97\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"98\",\"HotelName\":\"Hotel 98\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"99\",\"HotelName\":\"Hotel 99\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"100\",\"HotelName\":\"Hotel 100\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "17893032-03d0-4165-a13b-ad536e68b44f", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":100},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"51\",\"HotelName\":\"Hotel 51\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"52\",\"HotelName\":\"Hotel 52\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"53\",\"HotelName\":\"Hotel 53\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"54\",\"HotelName\":\"Hotel 54\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"55\",\"HotelName\":\"Hotel 55\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"56\",\"HotelName\":\"Hotel 56\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"57\",\"HotelName\":\"Hotel 57\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"58\",\"HotelName\":\"Hotel 58\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"59\",\"HotelName\":\"Hotel 59\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"60\",\"HotelName\":\"Hotel 60\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"61\",\"HotelName\":\"Hotel 61\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"62\",\"HotelName\":\"Hotel 62\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"63\",\"HotelName\":\"Hotel 63\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"64\",\"HotelName\":\"Hotel 64\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"65\",\"HotelName\":\"Hotel 65\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"66\",\"HotelName\":\"Hotel 66\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"67\",\"HotelName\":\"Hotel 67\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"68\",\"HotelName\":\"Hotel 68\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"69\",\"HotelName\":\"Hotel 69\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"70\",\"HotelName\":\"Hotel 70\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"71\",\"HotelName\":\"Hotel 71\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"72\",\"HotelName\":\"Hotel 72\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"73\",\"HotelName\":\"Hotel 73\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"74\",\"HotelName\":\"Hotel 74\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"75\",\"HotelName\":\"Hotel 75\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"76\",\"HotelName\":\"Hotel 76\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"77\",\"HotelName\":\"Hotel 77\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"78\",\"HotelName\":\"Hotel 78\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"79\",\"HotelName\":\"Hotel 79\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"80\",\"HotelName\":\"Hotel 80\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"81\",\"HotelName\":\"Hotel 81\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"82\",\"HotelName\":\"Hotel 82\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"83\",\"HotelName\":\"Hotel 83\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"84\",\"HotelName\":\"Hotel 84\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"85\",\"HotelName\":\"Hotel 85\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"86\",\"HotelName\":\"Hotel 86\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"87\",\"HotelName\":\"Hotel 87\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"88\",\"HotelName\":\"Hotel 88\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"89\",\"HotelName\":\"Hotel 89\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"90\",\"HotelName\":\"Hotel 90\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"91\",\"HotelName\":\"Hotel 91\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"92\",\"HotelName\":\"Hotel 92\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"93\",\"HotelName\":\"Hotel 93\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"94\",\"HotelName\":\"Hotel 94\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"95\",\"HotelName\":\"Hotel 95\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"96\",\"HotelName\":\"Hotel 96\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"97\",\"HotelName\":\"Hotel 97\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"98\",\"HotelName\":\"Hotel 98\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"99\",\"HotelName\":\"Hotel 99\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"100\",\"HotelName\":\"Hotel 100\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "b3c8cf3c-6b23-45de-96ee-3acd55bd0294", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b117f6d4-9f31-4218-a4f4-a25be8aca9db", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2e8db8a4-e9f1-4de9-b484-d89aa4072ee2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "13045", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b117f6d4-9f31-4218-a4f4-a25be8aca9db", + "request-id" : "2e8db8a4-e9f1-4de9-b484-d89aa4072ee2", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:14 GMT", + "Date" : "Thu, 27 May 2021 21:10:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b117f6d4-9f31-4218-a4f4-a25be8aca9db", - "elapsed-time" : "46", + "client-request-id" : "2e8db8a4-e9f1-4de9-b484-d89aa4072ee2", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "13053", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":150},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"101\",\"HotelName\":\"Hotel 101\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"102\",\"HotelName\":\"Hotel 102\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"103\",\"HotelName\":\"Hotel 103\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"104\",\"HotelName\":\"Hotel 104\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"105\",\"HotelName\":\"Hotel 105\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"106\",\"HotelName\":\"Hotel 106\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"107\",\"HotelName\":\"Hotel 107\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"108\",\"HotelName\":\"Hotel 108\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"109\",\"HotelName\":\"Hotel 109\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"110\",\"HotelName\":\"Hotel 110\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"111\",\"HotelName\":\"Hotel 111\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"112\",\"HotelName\":\"Hotel 112\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"113\",\"HotelName\":\"Hotel 113\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"114\",\"HotelName\":\"Hotel 114\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"115\",\"HotelName\":\"Hotel 115\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"116\",\"HotelName\":\"Hotel 116\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"117\",\"HotelName\":\"Hotel 117\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"118\",\"HotelName\":\"Hotel 118\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"119\",\"HotelName\":\"Hotel 119\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"120\",\"HotelName\":\"Hotel 120\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"121\",\"HotelName\":\"Hotel 121\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"122\",\"HotelName\":\"Hotel 122\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"123\",\"HotelName\":\"Hotel 123\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"124\",\"HotelName\":\"Hotel 124\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"125\",\"HotelName\":\"Hotel 125\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"126\",\"HotelName\":\"Hotel 126\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"127\",\"HotelName\":\"Hotel 127\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"128\",\"HotelName\":\"Hotel 128\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"129\",\"HotelName\":\"Hotel 129\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"130\",\"HotelName\":\"Hotel 130\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"131\",\"HotelName\":\"Hotel 131\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"132\",\"HotelName\":\"Hotel 132\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"133\",\"HotelName\":\"Hotel 133\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"134\",\"HotelName\":\"Hotel 134\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"135\",\"HotelName\":\"Hotel 135\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"136\",\"HotelName\":\"Hotel 136\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"137\",\"HotelName\":\"Hotel 137\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"138\",\"HotelName\":\"Hotel 138\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"139\",\"HotelName\":\"Hotel 139\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"140\",\"HotelName\":\"Hotel 140\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"141\",\"HotelName\":\"Hotel 141\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"142\",\"HotelName\":\"Hotel 142\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"143\",\"HotelName\":\"Hotel 143\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"144\",\"HotelName\":\"Hotel 144\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"145\",\"HotelName\":\"Hotel 145\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"146\",\"HotelName\":\"Hotel 146\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"147\",\"HotelName\":\"Hotel 147\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"148\",\"HotelName\":\"Hotel 148\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"149\",\"HotelName\":\"Hotel 149\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"150\",\"HotelName\":\"Hotel 150\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "b117f6d4-9f31-4218-a4f4-a25be8aca9db", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":150},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"101\",\"HotelName\":\"Hotel 101\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"102\",\"HotelName\":\"Hotel 102\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"103\",\"HotelName\":\"Hotel 103\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"104\",\"HotelName\":\"Hotel 104\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"105\",\"HotelName\":\"Hotel 105\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"106\",\"HotelName\":\"Hotel 106\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"107\",\"HotelName\":\"Hotel 107\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"108\",\"HotelName\":\"Hotel 108\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"109\",\"HotelName\":\"Hotel 109\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"110\",\"HotelName\":\"Hotel 110\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"111\",\"HotelName\":\"Hotel 111\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"112\",\"HotelName\":\"Hotel 112\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"113\",\"HotelName\":\"Hotel 113\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"114\",\"HotelName\":\"Hotel 114\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"115\",\"HotelName\":\"Hotel 115\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"116\",\"HotelName\":\"Hotel 116\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"117\",\"HotelName\":\"Hotel 117\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"118\",\"HotelName\":\"Hotel 118\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"119\",\"HotelName\":\"Hotel 119\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"120\",\"HotelName\":\"Hotel 120\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"121\",\"HotelName\":\"Hotel 121\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"122\",\"HotelName\":\"Hotel 122\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"123\",\"HotelName\":\"Hotel 123\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"124\",\"HotelName\":\"Hotel 124\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"125\",\"HotelName\":\"Hotel 125\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"126\",\"HotelName\":\"Hotel 126\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"127\",\"HotelName\":\"Hotel 127\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"128\",\"HotelName\":\"Hotel 128\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"129\",\"HotelName\":\"Hotel 129\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"130\",\"HotelName\":\"Hotel 130\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"131\",\"HotelName\":\"Hotel 131\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"132\",\"HotelName\":\"Hotel 132\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"133\",\"HotelName\":\"Hotel 133\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"134\",\"HotelName\":\"Hotel 134\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"135\",\"HotelName\":\"Hotel 135\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"136\",\"HotelName\":\"Hotel 136\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"137\",\"HotelName\":\"Hotel 137\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"138\",\"HotelName\":\"Hotel 138\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"139\",\"HotelName\":\"Hotel 139\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"140\",\"HotelName\":\"Hotel 140\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"141\",\"HotelName\":\"Hotel 141\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"142\",\"HotelName\":\"Hotel 142\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"143\",\"HotelName\":\"Hotel 143\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"144\",\"HotelName\":\"Hotel 144\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"145\",\"HotelName\":\"Hotel 145\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"146\",\"HotelName\":\"Hotel 146\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"147\",\"HotelName\":\"Hotel 147\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"148\",\"HotelName\":\"Hotel 148\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"149\",\"HotelName\":\"Hotel 149\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"150\",\"HotelName\":\"Hotel 150\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "2e8db8a4-e9f1-4de9-b484-d89aa4072ee2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d54840c7-7ebe-4a0d-93e7-e16855123d07", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "db39a035-b432-4bb9-b601-851a285be6b7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12811", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d54840c7-7ebe-4a0d-93e7-e16855123d07", + "request-id" : "db39a035-b432-4bb9-b601-851a285be6b7", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:14 GMT", + "Date" : "Thu, 27 May 2021 21:10:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d54840c7-7ebe-4a0d-93e7-e16855123d07", - "elapsed-time" : "14", + "client-request-id" : "db39a035-b432-4bb9-b601-851a285be6b7", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12811", "Body" : "{\"value\":[{\"@search.score\":1.0,\"HotelId\":\"151\",\"HotelName\":\"Hotel 151\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"152\",\"HotelName\":\"Hotel 152\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"153\",\"HotelName\":\"Hotel 153\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"154\",\"HotelName\":\"Hotel 154\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"155\",\"HotelName\":\"Hotel 155\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"156\",\"HotelName\":\"Hotel 156\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"157\",\"HotelName\":\"Hotel 157\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"158\",\"HotelName\":\"Hotel 158\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"159\",\"HotelName\":\"Hotel 159\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"160\",\"HotelName\":\"Hotel 160\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"161\",\"HotelName\":\"Hotel 161\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"162\",\"HotelName\":\"Hotel 162\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"163\",\"HotelName\":\"Hotel 163\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"164\",\"HotelName\":\"Hotel 164\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"165\",\"HotelName\":\"Hotel 165\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"166\",\"HotelName\":\"Hotel 166\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"167\",\"HotelName\":\"Hotel 167\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"168\",\"HotelName\":\"Hotel 168\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"169\",\"HotelName\":\"Hotel 169\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"170\",\"HotelName\":\"Hotel 170\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"171\",\"HotelName\":\"Hotel 171\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"172\",\"HotelName\":\"Hotel 172\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"173\",\"HotelName\":\"Hotel 173\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"174\",\"HotelName\":\"Hotel 174\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"175\",\"HotelName\":\"Hotel 175\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"176\",\"HotelName\":\"Hotel 176\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"177\",\"HotelName\":\"Hotel 177\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"178\",\"HotelName\":\"Hotel 178\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"179\",\"HotelName\":\"Hotel 179\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"180\",\"HotelName\":\"Hotel 180\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"181\",\"HotelName\":\"Hotel 181\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"182\",\"HotelName\":\"Hotel 182\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"183\",\"HotelName\":\"Hotel 183\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"184\",\"HotelName\":\"Hotel 184\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"185\",\"HotelName\":\"Hotel 185\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"186\",\"HotelName\":\"Hotel 186\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"187\",\"HotelName\":\"Hotel 187\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"188\",\"HotelName\":\"Hotel 188\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"189\",\"HotelName\":\"Hotel 189\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"190\",\"HotelName\":\"Hotel 190\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"191\",\"HotelName\":\"Hotel 191\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"192\",\"HotelName\":\"Hotel 192\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"193\",\"HotelName\":\"Hotel 193\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"194\",\"HotelName\":\"Hotel 194\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"195\",\"HotelName\":\"Hotel 195\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"196\",\"HotelName\":\"Hotel 196\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"197\",\"HotelName\":\"Hotel 197\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"198\",\"HotelName\":\"Hotel 198\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"199\",\"HotelName\":\"Hotel 199\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"200\",\"HotelName\":\"Hotel 200\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "d54840c7-7ebe-4a0d-93e7-e16855123d07", + "x-ms-client-request-id" : "db39a035-b432-4bb9-b601-851a285be6b7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "fe396b37-3743-4639-b2a4-651e8c780501", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "043d6d06-c675-4739-a6b7-aed2973cdb10", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12944", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "fe396b37-3743-4639-b2a4-651e8c780501", + "request-id" : "043d6d06-c675-4739-a6b7-aed2973cdb10", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:14 GMT", + "Date" : "Thu, 27 May 2021 21:10:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "fe396b37-3743-4639-b2a4-651e8c780501", - "elapsed-time" : "13", + "client-request-id" : "043d6d06-c675-4739-a6b7-aed2973cdb10", + "elapsed-time" : "10", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12952", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":60},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"11\",\"HotelName\":\"Hotel 11\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"12\",\"HotelName\":\"Hotel 12\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"13\",\"HotelName\":\"Hotel 13\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"14\",\"HotelName\":\"Hotel 14\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"15\",\"HotelName\":\"Hotel 15\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"16\",\"HotelName\":\"Hotel 16\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"17\",\"HotelName\":\"Hotel 17\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"18\",\"HotelName\":\"Hotel 18\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"19\",\"HotelName\":\"Hotel 19\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"20\",\"HotelName\":\"Hotel 20\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"21\",\"HotelName\":\"Hotel 21\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"22\",\"HotelName\":\"Hotel 22\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"23\",\"HotelName\":\"Hotel 23\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"24\",\"HotelName\":\"Hotel 24\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"25\",\"HotelName\":\"Hotel 25\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"26\",\"HotelName\":\"Hotel 26\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"27\",\"HotelName\":\"Hotel 27\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"28\",\"HotelName\":\"Hotel 28\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"29\",\"HotelName\":\"Hotel 29\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"30\",\"HotelName\":\"Hotel 30\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"31\",\"HotelName\":\"Hotel 31\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"32\",\"HotelName\":\"Hotel 32\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"33\",\"HotelName\":\"Hotel 33\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"34\",\"HotelName\":\"Hotel 34\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"35\",\"HotelName\":\"Hotel 35\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"36\",\"HotelName\":\"Hotel 36\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"37\",\"HotelName\":\"Hotel 37\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"38\",\"HotelName\":\"Hotel 38\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"39\",\"HotelName\":\"Hotel 39\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"40\",\"HotelName\":\"Hotel 40\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"41\",\"HotelName\":\"Hotel 41\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"42\",\"HotelName\":\"Hotel 42\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"43\",\"HotelName\":\"Hotel 43\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"44\",\"HotelName\":\"Hotel 44\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"45\",\"HotelName\":\"Hotel 45\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"46\",\"HotelName\":\"Hotel 46\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"47\",\"HotelName\":\"Hotel 47\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"48\",\"HotelName\":\"Hotel 48\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"49\",\"HotelName\":\"Hotel 49\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"50\",\"HotelName\":\"Hotel 50\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"51\",\"HotelName\":\"Hotel 51\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"52\",\"HotelName\":\"Hotel 52\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"53\",\"HotelName\":\"Hotel 53\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"54\",\"HotelName\":\"Hotel 54\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"55\",\"HotelName\":\"Hotel 55\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"56\",\"HotelName\":\"Hotel 56\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"57\",\"HotelName\":\"Hotel 57\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"58\",\"HotelName\":\"Hotel 58\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"59\",\"HotelName\":\"Hotel 59\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"60\",\"HotelName\":\"Hotel 60\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "fe396b37-3743-4639-b2a4-651e8c780501", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":60},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"11\",\"HotelName\":\"Hotel 11\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"12\",\"HotelName\":\"Hotel 12\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"13\",\"HotelName\":\"Hotel 13\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"14\",\"HotelName\":\"Hotel 14\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"15\",\"HotelName\":\"Hotel 15\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"16\",\"HotelName\":\"Hotel 16\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"17\",\"HotelName\":\"Hotel 17\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"18\",\"HotelName\":\"Hotel 18\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"19\",\"HotelName\":\"Hotel 19\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"20\",\"HotelName\":\"Hotel 20\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"21\",\"HotelName\":\"Hotel 21\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"22\",\"HotelName\":\"Hotel 22\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"23\",\"HotelName\":\"Hotel 23\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"24\",\"HotelName\":\"Hotel 24\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"25\",\"HotelName\":\"Hotel 25\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"26\",\"HotelName\":\"Hotel 26\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"27\",\"HotelName\":\"Hotel 27\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"28\",\"HotelName\":\"Hotel 28\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"29\",\"HotelName\":\"Hotel 29\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"30\",\"HotelName\":\"Hotel 30\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"31\",\"HotelName\":\"Hotel 31\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"32\",\"HotelName\":\"Hotel 32\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"33\",\"HotelName\":\"Hotel 33\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"34\",\"HotelName\":\"Hotel 34\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"35\",\"HotelName\":\"Hotel 35\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"36\",\"HotelName\":\"Hotel 36\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"37\",\"HotelName\":\"Hotel 37\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"38\",\"HotelName\":\"Hotel 38\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"39\",\"HotelName\":\"Hotel 39\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"40\",\"HotelName\":\"Hotel 40\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"41\",\"HotelName\":\"Hotel 41\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"42\",\"HotelName\":\"Hotel 42\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"43\",\"HotelName\":\"Hotel 43\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"44\",\"HotelName\":\"Hotel 44\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"45\",\"HotelName\":\"Hotel 45\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"46\",\"HotelName\":\"Hotel 46\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"47\",\"HotelName\":\"Hotel 47\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"48\",\"HotelName\":\"Hotel 48\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"49\",\"HotelName\":\"Hotel 49\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"50\",\"HotelName\":\"Hotel 50\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"51\",\"HotelName\":\"Hotel 51\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"52\",\"HotelName\":\"Hotel 52\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"53\",\"HotelName\":\"Hotel 53\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"54\",\"HotelName\":\"Hotel 54\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"55\",\"HotelName\":\"Hotel 55\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"56\",\"HotelName\":\"Hotel 56\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"57\",\"HotelName\":\"Hotel 57\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"58\",\"HotelName\":\"Hotel 58\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"59\",\"HotelName\":\"Hotel 59\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"60\",\"HotelName\":\"Hotel 60\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "043d6d06-c675-4739-a6b7-aed2973cdb10", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "06ca3b0f-43db-4288-bd05-a612b61fbfc0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f9cd14e3-71e3-4524-ad2a-a2007a0b77e3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12967", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "06ca3b0f-43db-4288-bd05-a612b61fbfc0", + "request-id" : "f9cd14e3-71e3-4524-ad2a-a2007a0b77e3", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:14 GMT", + "Date" : "Thu, 27 May 2021 21:10:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "06ca3b0f-43db-4288-bd05-a612b61fbfc0", - "elapsed-time" : "13", + "client-request-id" : "f9cd14e3-71e3-4524-ad2a-a2007a0b77e3", + "elapsed-time" : "10", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12975", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":110},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"61\",\"HotelName\":\"Hotel 61\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"62\",\"HotelName\":\"Hotel 62\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"63\",\"HotelName\":\"Hotel 63\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"64\",\"HotelName\":\"Hotel 64\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"65\",\"HotelName\":\"Hotel 65\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"66\",\"HotelName\":\"Hotel 66\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"67\",\"HotelName\":\"Hotel 67\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"68\",\"HotelName\":\"Hotel 68\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"69\",\"HotelName\":\"Hotel 69\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"70\",\"HotelName\":\"Hotel 70\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"71\",\"HotelName\":\"Hotel 71\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"72\",\"HotelName\":\"Hotel 72\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"73\",\"HotelName\":\"Hotel 73\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"74\",\"HotelName\":\"Hotel 74\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"75\",\"HotelName\":\"Hotel 75\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"76\",\"HotelName\":\"Hotel 76\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"77\",\"HotelName\":\"Hotel 77\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"78\",\"HotelName\":\"Hotel 78\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"79\",\"HotelName\":\"Hotel 79\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"80\",\"HotelName\":\"Hotel 80\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"81\",\"HotelName\":\"Hotel 81\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"82\",\"HotelName\":\"Hotel 82\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"83\",\"HotelName\":\"Hotel 83\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"84\",\"HotelName\":\"Hotel 84\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"85\",\"HotelName\":\"Hotel 85\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"86\",\"HotelName\":\"Hotel 86\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"87\",\"HotelName\":\"Hotel 87\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"88\",\"HotelName\":\"Hotel 88\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"89\",\"HotelName\":\"Hotel 89\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"90\",\"HotelName\":\"Hotel 90\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"91\",\"HotelName\":\"Hotel 91\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"92\",\"HotelName\":\"Hotel 92\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"93\",\"HotelName\":\"Hotel 93\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"94\",\"HotelName\":\"Hotel 94\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"95\",\"HotelName\":\"Hotel 95\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"96\",\"HotelName\":\"Hotel 96\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"97\",\"HotelName\":\"Hotel 97\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"98\",\"HotelName\":\"Hotel 98\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"99\",\"HotelName\":\"Hotel 99\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"100\",\"HotelName\":\"Hotel 100\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"101\",\"HotelName\":\"Hotel 101\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"102\",\"HotelName\":\"Hotel 102\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"103\",\"HotelName\":\"Hotel 103\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"104\",\"HotelName\":\"Hotel 104\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"105\",\"HotelName\":\"Hotel 105\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"106\",\"HotelName\":\"Hotel 106\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"107\",\"HotelName\":\"Hotel 107\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"108\",\"HotelName\":\"Hotel 108\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"109\",\"HotelName\":\"Hotel 109\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"110\",\"HotelName\":\"Hotel 110\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "06ca3b0f-43db-4288-bd05-a612b61fbfc0", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":110},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"61\",\"HotelName\":\"Hotel 61\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"62\",\"HotelName\":\"Hotel 62\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"63\",\"HotelName\":\"Hotel 63\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"64\",\"HotelName\":\"Hotel 64\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"65\",\"HotelName\":\"Hotel 65\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"66\",\"HotelName\":\"Hotel 66\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"67\",\"HotelName\":\"Hotel 67\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"68\",\"HotelName\":\"Hotel 68\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"69\",\"HotelName\":\"Hotel 69\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"70\",\"HotelName\":\"Hotel 70\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"71\",\"HotelName\":\"Hotel 71\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"72\",\"HotelName\":\"Hotel 72\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"73\",\"HotelName\":\"Hotel 73\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"74\",\"HotelName\":\"Hotel 74\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"75\",\"HotelName\":\"Hotel 75\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"76\",\"HotelName\":\"Hotel 76\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"77\",\"HotelName\":\"Hotel 77\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"78\",\"HotelName\":\"Hotel 78\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"79\",\"HotelName\":\"Hotel 79\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"80\",\"HotelName\":\"Hotel 80\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"81\",\"HotelName\":\"Hotel 81\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"82\",\"HotelName\":\"Hotel 82\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"83\",\"HotelName\":\"Hotel 83\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"84\",\"HotelName\":\"Hotel 84\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"85\",\"HotelName\":\"Hotel 85\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"86\",\"HotelName\":\"Hotel 86\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"87\",\"HotelName\":\"Hotel 87\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"88\",\"HotelName\":\"Hotel 88\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"89\",\"HotelName\":\"Hotel 89\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"90\",\"HotelName\":\"Hotel 90\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"91\",\"HotelName\":\"Hotel 91\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"92\",\"HotelName\":\"Hotel 92\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"93\",\"HotelName\":\"Hotel 93\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"94\",\"HotelName\":\"Hotel 94\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"95\",\"HotelName\":\"Hotel 95\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"96\",\"HotelName\":\"Hotel 96\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"97\",\"HotelName\":\"Hotel 97\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"98\",\"HotelName\":\"Hotel 98\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"99\",\"HotelName\":\"Hotel 99\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"100\",\"HotelName\":\"Hotel 100\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"101\",\"HotelName\":\"Hotel 101\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"102\",\"HotelName\":\"Hotel 102\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"103\",\"HotelName\":\"Hotel 103\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"104\",\"HotelName\":\"Hotel 104\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"105\",\"HotelName\":\"Hotel 105\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"106\",\"HotelName\":\"Hotel 106\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"107\",\"HotelName\":\"Hotel 107\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"108\",\"HotelName\":\"Hotel 108\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"109\",\"HotelName\":\"Hotel 109\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"110\",\"HotelName\":\"Hotel 110\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "f9cd14e3-71e3-4524-ad2a-a2007a0b77e3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "455fcaa0-a205-49dc-975c-a14d3f32ff18", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fdac5587-5f91-4e7d-8058-693698a6c8d4", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "13045", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "455fcaa0-a205-49dc-975c-a14d3f32ff18", + "request-id" : "fdac5587-5f91-4e7d-8058-693698a6c8d4", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:14 GMT", + "Date" : "Thu, 27 May 2021 21:10:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "455fcaa0-a205-49dc-975c-a14d3f32ff18", - "elapsed-time" : "14", + "client-request-id" : "fdac5587-5f91-4e7d-8058-693698a6c8d4", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "13053", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":160},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"111\",\"HotelName\":\"Hotel 111\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"112\",\"HotelName\":\"Hotel 112\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"113\",\"HotelName\":\"Hotel 113\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"114\",\"HotelName\":\"Hotel 114\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"115\",\"HotelName\":\"Hotel 115\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"116\",\"HotelName\":\"Hotel 116\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"117\",\"HotelName\":\"Hotel 117\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"118\",\"HotelName\":\"Hotel 118\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"119\",\"HotelName\":\"Hotel 119\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"120\",\"HotelName\":\"Hotel 120\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"121\",\"HotelName\":\"Hotel 121\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"122\",\"HotelName\":\"Hotel 122\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"123\",\"HotelName\":\"Hotel 123\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"124\",\"HotelName\":\"Hotel 124\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"125\",\"HotelName\":\"Hotel 125\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"126\",\"HotelName\":\"Hotel 126\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"127\",\"HotelName\":\"Hotel 127\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"128\",\"HotelName\":\"Hotel 128\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"129\",\"HotelName\":\"Hotel 129\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"130\",\"HotelName\":\"Hotel 130\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"131\",\"HotelName\":\"Hotel 131\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"132\",\"HotelName\":\"Hotel 132\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"133\",\"HotelName\":\"Hotel 133\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"134\",\"HotelName\":\"Hotel 134\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"135\",\"HotelName\":\"Hotel 135\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"136\",\"HotelName\":\"Hotel 136\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"137\",\"HotelName\":\"Hotel 137\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"138\",\"HotelName\":\"Hotel 138\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"139\",\"HotelName\":\"Hotel 139\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"140\",\"HotelName\":\"Hotel 140\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"141\",\"HotelName\":\"Hotel 141\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"142\",\"HotelName\":\"Hotel 142\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"143\",\"HotelName\":\"Hotel 143\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"144\",\"HotelName\":\"Hotel 144\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"145\",\"HotelName\":\"Hotel 145\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"146\",\"HotelName\":\"Hotel 146\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"147\",\"HotelName\":\"Hotel 147\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"148\",\"HotelName\":\"Hotel 148\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"149\",\"HotelName\":\"Hotel 149\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"150\",\"HotelName\":\"Hotel 150\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"151\",\"HotelName\":\"Hotel 151\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"152\",\"HotelName\":\"Hotel 152\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"153\",\"HotelName\":\"Hotel 153\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"154\",\"HotelName\":\"Hotel 154\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"155\",\"HotelName\":\"Hotel 155\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"156\",\"HotelName\":\"Hotel 156\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"157\",\"HotelName\":\"Hotel 157\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"158\",\"HotelName\":\"Hotel 158\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"159\",\"HotelName\":\"Hotel 159\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"160\",\"HotelName\":\"Hotel 160\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "455fcaa0-a205-49dc-975c-a14d3f32ff18", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":160},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"111\",\"HotelName\":\"Hotel 111\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"112\",\"HotelName\":\"Hotel 112\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"113\",\"HotelName\":\"Hotel 113\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"114\",\"HotelName\":\"Hotel 114\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"115\",\"HotelName\":\"Hotel 115\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"116\",\"HotelName\":\"Hotel 116\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"117\",\"HotelName\":\"Hotel 117\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"118\",\"HotelName\":\"Hotel 118\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"119\",\"HotelName\":\"Hotel 119\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"120\",\"HotelName\":\"Hotel 120\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"121\",\"HotelName\":\"Hotel 121\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"122\",\"HotelName\":\"Hotel 122\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"123\",\"HotelName\":\"Hotel 123\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"124\",\"HotelName\":\"Hotel 124\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"125\",\"HotelName\":\"Hotel 125\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"126\",\"HotelName\":\"Hotel 126\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"127\",\"HotelName\":\"Hotel 127\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"128\",\"HotelName\":\"Hotel 128\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"129\",\"HotelName\":\"Hotel 129\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"130\",\"HotelName\":\"Hotel 130\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"131\",\"HotelName\":\"Hotel 131\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"132\",\"HotelName\":\"Hotel 132\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"133\",\"HotelName\":\"Hotel 133\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"134\",\"HotelName\":\"Hotel 134\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"135\",\"HotelName\":\"Hotel 135\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"136\",\"HotelName\":\"Hotel 136\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"137\",\"HotelName\":\"Hotel 137\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"138\",\"HotelName\":\"Hotel 138\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"139\",\"HotelName\":\"Hotel 139\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"140\",\"HotelName\":\"Hotel 140\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"141\",\"HotelName\":\"Hotel 141\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"142\",\"HotelName\":\"Hotel 142\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"143\",\"HotelName\":\"Hotel 143\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"144\",\"HotelName\":\"Hotel 144\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"145\",\"HotelName\":\"Hotel 145\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"146\",\"HotelName\":\"Hotel 146\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"147\",\"HotelName\":\"Hotel 147\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"148\",\"HotelName\":\"Hotel 148\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"149\",\"HotelName\":\"Hotel 149\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"150\",\"HotelName\":\"Hotel 150\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"151\",\"HotelName\":\"Hotel 151\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"152\",\"HotelName\":\"Hotel 152\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"153\",\"HotelName\":\"Hotel 153\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"154\",\"HotelName\":\"Hotel 154\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"155\",\"HotelName\":\"Hotel 155\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"156\",\"HotelName\":\"Hotel 156\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"157\",\"HotelName\":\"Hotel 157\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"158\",\"HotelName\":\"Hotel 158\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"159\",\"HotelName\":\"Hotel 159\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"160\",\"HotelName\":\"Hotel 160\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "fdac5587-5f91-4e7d-8058-693698a6c8d4", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "fa33478e-3226-42e0-a2fe-8fd8ccc523a5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "51bb9f6d-4536-4be9-b5c8-84825e0dac4b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "10251", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "fa33478e-3226-42e0-a2fe-8fd8ccc523a5", + "request-id" : "51bb9f6d-4536-4be9-b5c8-84825e0dac4b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:14 GMT", + "Date" : "Thu, 27 May 2021 21:10:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "fa33478e-3226-42e0-a2fe-8fd8ccc523a5", + "client-request-id" : "51bb9f6d-4536-4be9-b5c8-84825e0dac4b", "elapsed-time" : "8", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "10251", "Body" : "{\"value\":[{\"@search.score\":1.0,\"HotelId\":\"161\",\"HotelName\":\"Hotel 161\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"162\",\"HotelName\":\"Hotel 162\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"163\",\"HotelName\":\"Hotel 163\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"164\",\"HotelName\":\"Hotel 164\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"165\",\"HotelName\":\"Hotel 165\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"166\",\"HotelName\":\"Hotel 166\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"167\",\"HotelName\":\"Hotel 167\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"168\",\"HotelName\":\"Hotel 168\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"169\",\"HotelName\":\"Hotel 169\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"170\",\"HotelName\":\"Hotel 170\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"171\",\"HotelName\":\"Hotel 171\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"172\",\"HotelName\":\"Hotel 172\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"173\",\"HotelName\":\"Hotel 173\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"174\",\"HotelName\":\"Hotel 174\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"175\",\"HotelName\":\"Hotel 175\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"176\",\"HotelName\":\"Hotel 176\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"177\",\"HotelName\":\"Hotel 177\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"178\",\"HotelName\":\"Hotel 178\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"179\",\"HotelName\":\"Hotel 179\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"180\",\"HotelName\":\"Hotel 180\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"181\",\"HotelName\":\"Hotel 181\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"182\",\"HotelName\":\"Hotel 182\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"183\",\"HotelName\":\"Hotel 183\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"184\",\"HotelName\":\"Hotel 184\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"185\",\"HotelName\":\"Hotel 185\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"186\",\"HotelName\":\"Hotel 186\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"187\",\"HotelName\":\"Hotel 187\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"188\",\"HotelName\":\"Hotel 188\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"189\",\"HotelName\":\"Hotel 189\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"190\",\"HotelName\":\"Hotel 190\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"191\",\"HotelName\":\"Hotel 191\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"192\",\"HotelName\":\"Hotel 192\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"193\",\"HotelName\":\"Hotel 193\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"194\",\"HotelName\":\"Hotel 194\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"195\",\"HotelName\":\"Hotel 195\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"196\",\"HotelName\":\"Hotel 196\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"197\",\"HotelName\":\"Hotel 197\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"198\",\"HotelName\":\"Hotel 198\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"199\",\"HotelName\":\"Hotel 199\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"200\",\"HotelName\":\"Hotel 200\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "fa33478e-3226-42e0-a2fe-8fd8ccc523a5", + "x-ms-client-request-id" : "51bb9f6d-4536-4be9-b5c8-84825e0dac4b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6215442b-a528-46de-ae3f-d0eb4dfe412f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9332a5a4-fe6d-4bad-b5e9-1ec931e5eca4", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12944", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6215442b-a528-46de-ae3f-d0eb4dfe412f", + "request-id" : "9332a5a4-fe6d-4bad-b5e9-1ec931e5eca4", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:14 GMT", + "Date" : "Thu, 27 May 2021 21:10:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6215442b-a528-46de-ae3f-d0eb4dfe412f", - "elapsed-time" : "13", + "client-request-id" : "9332a5a4-fe6d-4bad-b5e9-1ec931e5eca4", + "elapsed-time" : "10", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12952", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":80},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"31\",\"HotelName\":\"Hotel 31\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"32\",\"HotelName\":\"Hotel 32\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"33\",\"HotelName\":\"Hotel 33\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"34\",\"HotelName\":\"Hotel 34\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"35\",\"HotelName\":\"Hotel 35\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"36\",\"HotelName\":\"Hotel 36\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"37\",\"HotelName\":\"Hotel 37\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"38\",\"HotelName\":\"Hotel 38\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"39\",\"HotelName\":\"Hotel 39\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"40\",\"HotelName\":\"Hotel 40\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"41\",\"HotelName\":\"Hotel 41\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"42\",\"HotelName\":\"Hotel 42\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"43\",\"HotelName\":\"Hotel 43\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"44\",\"HotelName\":\"Hotel 44\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"45\",\"HotelName\":\"Hotel 45\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"46\",\"HotelName\":\"Hotel 46\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"47\",\"HotelName\":\"Hotel 47\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"48\",\"HotelName\":\"Hotel 48\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"49\",\"HotelName\":\"Hotel 49\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"50\",\"HotelName\":\"Hotel 50\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"51\",\"HotelName\":\"Hotel 51\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"52\",\"HotelName\":\"Hotel 52\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"53\",\"HotelName\":\"Hotel 53\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"54\",\"HotelName\":\"Hotel 54\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"55\",\"HotelName\":\"Hotel 55\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"56\",\"HotelName\":\"Hotel 56\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"57\",\"HotelName\":\"Hotel 57\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"58\",\"HotelName\":\"Hotel 58\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"59\",\"HotelName\":\"Hotel 59\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"60\",\"HotelName\":\"Hotel 60\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"61\",\"HotelName\":\"Hotel 61\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"62\",\"HotelName\":\"Hotel 62\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"63\",\"HotelName\":\"Hotel 63\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"64\",\"HotelName\":\"Hotel 64\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"65\",\"HotelName\":\"Hotel 65\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"66\",\"HotelName\":\"Hotel 66\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"67\",\"HotelName\":\"Hotel 67\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"68\",\"HotelName\":\"Hotel 68\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"69\",\"HotelName\":\"Hotel 69\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"70\",\"HotelName\":\"Hotel 70\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"71\",\"HotelName\":\"Hotel 71\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"72\",\"HotelName\":\"Hotel 72\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"73\",\"HotelName\":\"Hotel 73\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"74\",\"HotelName\":\"Hotel 74\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"75\",\"HotelName\":\"Hotel 75\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"76\",\"HotelName\":\"Hotel 76\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"77\",\"HotelName\":\"Hotel 77\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"78\",\"HotelName\":\"Hotel 78\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"79\",\"HotelName\":\"Hotel 79\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"80\",\"HotelName\":\"Hotel 80\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "6215442b-a528-46de-ae3f-d0eb4dfe412f", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":80},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"31\",\"HotelName\":\"Hotel 31\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"32\",\"HotelName\":\"Hotel 32\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"33\",\"HotelName\":\"Hotel 33\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"34\",\"HotelName\":\"Hotel 34\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"35\",\"HotelName\":\"Hotel 35\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"36\",\"HotelName\":\"Hotel 36\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"37\",\"HotelName\":\"Hotel 37\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"38\",\"HotelName\":\"Hotel 38\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"39\",\"HotelName\":\"Hotel 39\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"40\",\"HotelName\":\"Hotel 40\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"41\",\"HotelName\":\"Hotel 41\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"42\",\"HotelName\":\"Hotel 42\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"43\",\"HotelName\":\"Hotel 43\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"44\",\"HotelName\":\"Hotel 44\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"45\",\"HotelName\":\"Hotel 45\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"46\",\"HotelName\":\"Hotel 46\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"47\",\"HotelName\":\"Hotel 47\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"48\",\"HotelName\":\"Hotel 48\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"49\",\"HotelName\":\"Hotel 49\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"50\",\"HotelName\":\"Hotel 50\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"51\",\"HotelName\":\"Hotel 51\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"52\",\"HotelName\":\"Hotel 52\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"53\",\"HotelName\":\"Hotel 53\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"54\",\"HotelName\":\"Hotel 54\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"55\",\"HotelName\":\"Hotel 55\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"56\",\"HotelName\":\"Hotel 56\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"57\",\"HotelName\":\"Hotel 57\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"58\",\"HotelName\":\"Hotel 58\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"59\",\"HotelName\":\"Hotel 59\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"60\",\"HotelName\":\"Hotel 60\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"61\",\"HotelName\":\"Hotel 61\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"62\",\"HotelName\":\"Hotel 62\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"63\",\"HotelName\":\"Hotel 63\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"64\",\"HotelName\":\"Hotel 64\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"65\",\"HotelName\":\"Hotel 65\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"66\",\"HotelName\":\"Hotel 66\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"67\",\"HotelName\":\"Hotel 67\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"68\",\"HotelName\":\"Hotel 68\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"69\",\"HotelName\":\"Hotel 69\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"70\",\"HotelName\":\"Hotel 70\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"71\",\"HotelName\":\"Hotel 71\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"72\",\"HotelName\":\"Hotel 72\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"73\",\"HotelName\":\"Hotel 73\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"74\",\"HotelName\":\"Hotel 74\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"75\",\"HotelName\":\"Hotel 75\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"76\",\"HotelName\":\"Hotel 76\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"77\",\"HotelName\":\"Hotel 77\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"78\",\"HotelName\":\"Hotel 78\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"79\",\"HotelName\":\"Hotel 79\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"80\",\"HotelName\":\"Hotel 80\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "9332a5a4-fe6d-4bad-b5e9-1ec931e5eca4", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1838b9ce-c5de-4eea-b47d-bb1745dabd88", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "88a63af8-cb90-40fd-a0b7-a04487a21b38", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "13007", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1838b9ce-c5de-4eea-b47d-bb1745dabd88", + "request-id" : "88a63af8-cb90-40fd-a0b7-a04487a21b38", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:14 GMT", + "Date" : "Thu, 27 May 2021 21:10:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1838b9ce-c5de-4eea-b47d-bb1745dabd88", - "elapsed-time" : "10", + "client-request-id" : "88a63af8-cb90-40fd-a0b7-a04487a21b38", + "elapsed-time" : "12", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "13015", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":130},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"81\",\"HotelName\":\"Hotel 81\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"82\",\"HotelName\":\"Hotel 82\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"83\",\"HotelName\":\"Hotel 83\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"84\",\"HotelName\":\"Hotel 84\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"85\",\"HotelName\":\"Hotel 85\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"86\",\"HotelName\":\"Hotel 86\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"87\",\"HotelName\":\"Hotel 87\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"88\",\"HotelName\":\"Hotel 88\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"89\",\"HotelName\":\"Hotel 89\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"90\",\"HotelName\":\"Hotel 90\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"91\",\"HotelName\":\"Hotel 91\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"92\",\"HotelName\":\"Hotel 92\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"93\",\"HotelName\":\"Hotel 93\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"94\",\"HotelName\":\"Hotel 94\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"95\",\"HotelName\":\"Hotel 95\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"96\",\"HotelName\":\"Hotel 96\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"97\",\"HotelName\":\"Hotel 97\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"98\",\"HotelName\":\"Hotel 98\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"99\",\"HotelName\":\"Hotel 99\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"100\",\"HotelName\":\"Hotel 100\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"101\",\"HotelName\":\"Hotel 101\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"102\",\"HotelName\":\"Hotel 102\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"103\",\"HotelName\":\"Hotel 103\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"104\",\"HotelName\":\"Hotel 104\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"105\",\"HotelName\":\"Hotel 105\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"106\",\"HotelName\":\"Hotel 106\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"107\",\"HotelName\":\"Hotel 107\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"108\",\"HotelName\":\"Hotel 108\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"109\",\"HotelName\":\"Hotel 109\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"110\",\"HotelName\":\"Hotel 110\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"111\",\"HotelName\":\"Hotel 111\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"112\",\"HotelName\":\"Hotel 112\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"113\",\"HotelName\":\"Hotel 113\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"114\",\"HotelName\":\"Hotel 114\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"115\",\"HotelName\":\"Hotel 115\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"116\",\"HotelName\":\"Hotel 116\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"117\",\"HotelName\":\"Hotel 117\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"118\",\"HotelName\":\"Hotel 118\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"119\",\"HotelName\":\"Hotel 119\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"120\",\"HotelName\":\"Hotel 120\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"121\",\"HotelName\":\"Hotel 121\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"122\",\"HotelName\":\"Hotel 122\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"123\",\"HotelName\":\"Hotel 123\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"124\",\"HotelName\":\"Hotel 124\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"125\",\"HotelName\":\"Hotel 125\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"126\",\"HotelName\":\"Hotel 126\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"127\",\"HotelName\":\"Hotel 127\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"128\",\"HotelName\":\"Hotel 128\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"129\",\"HotelName\":\"Hotel 129\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"130\",\"HotelName\":\"Hotel 130\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "1838b9ce-c5de-4eea-b47d-bb1745dabd88", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":130},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"81\",\"HotelName\":\"Hotel 81\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"82\",\"HotelName\":\"Hotel 82\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"83\",\"HotelName\":\"Hotel 83\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"84\",\"HotelName\":\"Hotel 84\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"85\",\"HotelName\":\"Hotel 85\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"86\",\"HotelName\":\"Hotel 86\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"87\",\"HotelName\":\"Hotel 87\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"88\",\"HotelName\":\"Hotel 88\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"89\",\"HotelName\":\"Hotel 89\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"90\",\"HotelName\":\"Hotel 90\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"91\",\"HotelName\":\"Hotel 91\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"92\",\"HotelName\":\"Hotel 92\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"93\",\"HotelName\":\"Hotel 93\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"94\",\"HotelName\":\"Hotel 94\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"95\",\"HotelName\":\"Hotel 95\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"96\",\"HotelName\":\"Hotel 96\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"97\",\"HotelName\":\"Hotel 97\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"98\",\"HotelName\":\"Hotel 98\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"99\",\"HotelName\":\"Hotel 99\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"100\",\"HotelName\":\"Hotel 100\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"101\",\"HotelName\":\"Hotel 101\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"102\",\"HotelName\":\"Hotel 102\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"103\",\"HotelName\":\"Hotel 103\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"104\",\"HotelName\":\"Hotel 104\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"105\",\"HotelName\":\"Hotel 105\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"106\",\"HotelName\":\"Hotel 106\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"107\",\"HotelName\":\"Hotel 107\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"108\",\"HotelName\":\"Hotel 108\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"109\",\"HotelName\":\"Hotel 109\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"110\",\"HotelName\":\"Hotel 110\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"111\",\"HotelName\":\"Hotel 111\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"112\",\"HotelName\":\"Hotel 112\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"113\",\"HotelName\":\"Hotel 113\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"114\",\"HotelName\":\"Hotel 114\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"115\",\"HotelName\":\"Hotel 115\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"116\",\"HotelName\":\"Hotel 116\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"117\",\"HotelName\":\"Hotel 117\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"118\",\"HotelName\":\"Hotel 118\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"119\",\"HotelName\":\"Hotel 119\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"120\",\"HotelName\":\"Hotel 120\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"121\",\"HotelName\":\"Hotel 121\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"122\",\"HotelName\":\"Hotel 122\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"123\",\"HotelName\":\"Hotel 123\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"124\",\"HotelName\":\"Hotel 124\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"125\",\"HotelName\":\"Hotel 125\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"126\",\"HotelName\":\"Hotel 126\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"127\",\"HotelName\":\"Hotel 127\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"128\",\"HotelName\":\"Hotel 128\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"129\",\"HotelName\":\"Hotel 129\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"130\",\"HotelName\":\"Hotel 130\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "88a63af8-cb90-40fd-a0b7-a04487a21b38", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a948ba34-62b2-4afd-b080-7cd12a2bd71c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "339373be-38a7-4880-952c-93d3a39ecd61", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "13045", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a948ba34-62b2-4afd-b080-7cd12a2bd71c", + "request-id" : "339373be-38a7-4880-952c-93d3a39ecd61", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:14 GMT", + "Date" : "Thu, 27 May 2021 21:10:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a948ba34-62b2-4afd-b080-7cd12a2bd71c", - "elapsed-time" : "22", + "client-request-id" : "339373be-38a7-4880-952c-93d3a39ecd61", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "13053", - "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":180},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"131\",\"HotelName\":\"Hotel 131\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"132\",\"HotelName\":\"Hotel 132\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"133\",\"HotelName\":\"Hotel 133\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"134\",\"HotelName\":\"Hotel 134\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"135\",\"HotelName\":\"Hotel 135\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"136\",\"HotelName\":\"Hotel 136\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"137\",\"HotelName\":\"Hotel 137\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"138\",\"HotelName\":\"Hotel 138\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"139\",\"HotelName\":\"Hotel 139\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"140\",\"HotelName\":\"Hotel 140\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"141\",\"HotelName\":\"Hotel 141\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"142\",\"HotelName\":\"Hotel 142\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"143\",\"HotelName\":\"Hotel 143\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"144\",\"HotelName\":\"Hotel 144\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"145\",\"HotelName\":\"Hotel 145\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"146\",\"HotelName\":\"Hotel 146\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"147\",\"HotelName\":\"Hotel 147\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"148\",\"HotelName\":\"Hotel 148\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"149\",\"HotelName\":\"Hotel 149\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"150\",\"HotelName\":\"Hotel 150\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"151\",\"HotelName\":\"Hotel 151\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"152\",\"HotelName\":\"Hotel 152\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"153\",\"HotelName\":\"Hotel 153\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"154\",\"HotelName\":\"Hotel 154\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"155\",\"HotelName\":\"Hotel 155\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"156\",\"HotelName\":\"Hotel 156\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"157\",\"HotelName\":\"Hotel 157\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"158\",\"HotelName\":\"Hotel 158\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"159\",\"HotelName\":\"Hotel 159\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"160\",\"HotelName\":\"Hotel 160\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"161\",\"HotelName\":\"Hotel 161\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"162\",\"HotelName\":\"Hotel 162\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"163\",\"HotelName\":\"Hotel 163\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"164\",\"HotelName\":\"Hotel 164\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"165\",\"HotelName\":\"Hotel 165\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"166\",\"HotelName\":\"Hotel 166\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"167\",\"HotelName\":\"Hotel 167\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"168\",\"HotelName\":\"Hotel 168\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"169\",\"HotelName\":\"Hotel 169\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"170\",\"HotelName\":\"Hotel 170\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"171\",\"HotelName\":\"Hotel 171\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"172\",\"HotelName\":\"Hotel 172\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"173\",\"HotelName\":\"Hotel 173\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"174\",\"HotelName\":\"Hotel 174\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"175\",\"HotelName\":\"Hotel 175\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"176\",\"HotelName\":\"Hotel 176\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"177\",\"HotelName\":\"Hotel 177\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"178\",\"HotelName\":\"Hotel 178\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"179\",\"HotelName\":\"Hotel 179\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"180\",\"HotelName\":\"Hotel 180\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "a948ba34-62b2-4afd-b080-7cd12a2bd71c", + "Body" : "{\"@search.nextPageParameters\":{\"search\":\"*\",\"skip\":180},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"131\",\"HotelName\":\"Hotel 131\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"132\",\"HotelName\":\"Hotel 132\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"133\",\"HotelName\":\"Hotel 133\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"134\",\"HotelName\":\"Hotel 134\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"135\",\"HotelName\":\"Hotel 135\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"136\",\"HotelName\":\"Hotel 136\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"137\",\"HotelName\":\"Hotel 137\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"138\",\"HotelName\":\"Hotel 138\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"139\",\"HotelName\":\"Hotel 139\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"140\",\"HotelName\":\"Hotel 140\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"141\",\"HotelName\":\"Hotel 141\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"142\",\"HotelName\":\"Hotel 142\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"143\",\"HotelName\":\"Hotel 143\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"144\",\"HotelName\":\"Hotel 144\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"145\",\"HotelName\":\"Hotel 145\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"146\",\"HotelName\":\"Hotel 146\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"147\",\"HotelName\":\"Hotel 147\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"148\",\"HotelName\":\"Hotel 148\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"149\",\"HotelName\":\"Hotel 149\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"150\",\"HotelName\":\"Hotel 150\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"151\",\"HotelName\":\"Hotel 151\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"152\",\"HotelName\":\"Hotel 152\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"153\",\"HotelName\":\"Hotel 153\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"154\",\"HotelName\":\"Hotel 154\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"155\",\"HotelName\":\"Hotel 155\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"156\",\"HotelName\":\"Hotel 156\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"157\",\"HotelName\":\"Hotel 157\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"158\",\"HotelName\":\"Hotel 158\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"159\",\"HotelName\":\"Hotel 159\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"160\",\"HotelName\":\"Hotel 160\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"161\",\"HotelName\":\"Hotel 161\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"162\",\"HotelName\":\"Hotel 162\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"163\",\"HotelName\":\"Hotel 163\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"164\",\"HotelName\":\"Hotel 164\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"165\",\"HotelName\":\"Hotel 165\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"166\",\"HotelName\":\"Hotel 166\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"167\",\"HotelName\":\"Hotel 167\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"168\",\"HotelName\":\"Hotel 168\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"169\",\"HotelName\":\"Hotel 169\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"170\",\"HotelName\":\"Hotel 170\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"171\",\"HotelName\":\"Hotel 171\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"172\",\"HotelName\":\"Hotel 172\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"173\",\"HotelName\":\"Hotel 173\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"174\",\"HotelName\":\"Hotel 174\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"175\",\"HotelName\":\"Hotel 175\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"176\",\"HotelName\":\"Hotel 176\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"177\",\"HotelName\":\"Hotel 177\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"178\",\"HotelName\":\"Hotel 178\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"179\",\"HotelName\":\"Hotel 179\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"180\",\"HotelName\":\"Hotel 180\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "339373be-38a7-4880-952c-93d3a39ecd61", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "aae85451-ba42-4f6a-b2d9-488da4ddcab3", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "711452f9-9c23-44a4-bc8a-8ced8b5f1a9b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "5131", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "aae85451-ba42-4f6a-b2d9-488da4ddcab3", + "request-id" : "711452f9-9c23-44a4-bc8a-8ced8b5f1a9b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:14 GMT", + "Date" : "Thu, 27 May 2021 21:10:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "aae85451-ba42-4f6a-b2d9-488da4ddcab3", - "elapsed-time" : "11", + "client-request-id" : "711452f9-9c23-44a4-bc8a-8ced8b5f1a9b", + "elapsed-time" : "9", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "5131", "Body" : "{\"value\":[{\"@search.score\":1.0,\"HotelId\":\"181\",\"HotelName\":\"Hotel 181\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"182\",\"HotelName\":\"Hotel 182\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"183\",\"HotelName\":\"Hotel 183\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"184\",\"HotelName\":\"Hotel 184\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"185\",\"HotelName\":\"Hotel 185\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"186\",\"HotelName\":\"Hotel 186\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"187\",\"HotelName\":\"Hotel 187\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"188\",\"HotelName\":\"Hotel 188\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"189\",\"HotelName\":\"Hotel 189\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"190\",\"HotelName\":\"Hotel 190\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"191\",\"HotelName\":\"Hotel 191\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"192\",\"HotelName\":\"Hotel 192\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"193\",\"HotelName\":\"Hotel 193\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"194\",\"HotelName\":\"Hotel 194\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"195\",\"HotelName\":\"Hotel 195\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"196\",\"HotelName\":\"Hotel 196\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"197\",\"HotelName\":\"Hotel 197\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"198\",\"HotelName\":\"Hotel 198\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"199\",\"HotelName\":\"Hotel 199\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"200\",\"HotelName\":\"Hotel 200\",\"Description\":null,\"Description_fr\":null,\"Category\":null,\"Tags\":[],\"ParkingIncluded\":null,\"SmokingAllowed\":null,\"LastRenovationDate\":null,\"Rating\":null,\"Location\":null,\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "aae85451-ba42-4f6a-b2d9-488da4ddcab3", + "x-ms-client-request-id" : "711452f9-9c23-44a4-bc8a-8ced8b5f1a9b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions3e5886711942')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscangetpaginateddocumentswithsearchoptions9c8715797d65')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9cab5eef-71fe-4a83-abdf-191b1ed135e1" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "23e5ffa5-096c-4989-abff-e759c38075a6" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9cab5eef-71fe-4a83-abdf-191b1ed135e1", - "elapsed-time" : "534", + "client-request-id" : "23e5ffa5-096c-4989-abff-e759c38075a6", + "elapsed-time" : "518", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "9cab5eef-71fe-4a83-abdf-191b1ed135e1", + "request-id" : "23e5ffa5-096c-4989-abff-e759c38075a6", "StatusCode" : "204", - "x-ms-client-request-id" : "9cab5eef-71fe-4a83-abdf-191b1ed135e1", - "Date" : "Fri, 02 Apr 2021 22:32:15 GMT" + "x-ms-client-request-id" : "23e5ffa5-096c-4989-abff-e759c38075a6", + "Date" : "Thu, 27 May 2021 21:10:31 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscangetpaginateddocumentswithsearchoptions3e5886711942" ] + "variables" : [ "hotelscangetpaginateddocumentswithsearchoptions9c8715797d65" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.getDocumentThrowsWhenDocumentNotFound.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.getDocumentThrowsWhenDocumentNotFound.json index 99840a43dba4..9a6c2982334f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.getDocumentThrowsWhenDocumentNotFound.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.getDocumentThrowsWhenDocumentNotFound.json @@ -1,104 +1,76 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetdocumentthrowswhendocumentnotfound3097071631ab3c')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetdocumentthrowswhendocumentnotfound16981791b65f7d')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "14d2eef8-6cd9-4c4c-8fe9-a1ea14c12ecc", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c4f66311-5e95-4276-bb6c-8d34d790a6c1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6498", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "14d2eef8-6cd9-4c4c-8fe9-a1ea14c12ecc", + "request-id" : "c4f66311-5e95-4276-bb6c-8d34d790a6c1", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:31:28 GMT", + "Date" : "Thu, 27 May 2021 21:10:00 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6270EA8889D\"", - "client-request-id" : "14d2eef8-6cd9-4c4c-8fe9-a1ea14c12ecc", - "elapsed-time" : "1088", + "ETag" : "W/\"0x8D92153C9C4418C\"", + "client-request-id" : "c4f66311-5e95-4276-bb6c-8d34d790a6c1", + "elapsed-time" : "1485", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6947", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6270EA8889D\\\"\",\"name\":\"hotelsgetdocumentthrowswhendocumentnotfound3097071631ab3c\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "14d2eef8-6cd9-4c4c-8fe9-a1ea14c12ecc", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153C9C4418C\\\"\",\"name\":\"hotelsgetdocumentthrowswhendocumentnotfound16981791b65f7d\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "c4f66311-5e95-4276-bb6c-8d34d790a6c1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsgetdocumentthrowswhendocumentnotfound3097071631ab3c')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsgetdocumentthrowswhendocumentnotfound16981791b65f7d')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetdocumentthrowswhendocumentnotfound3097071631ab3c')//docs('1000000001')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetdocumentthrowswhendocumentnotfound16981791b65f7d')/docs('1000000001')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7c596e5c-5db9-426d-ae92-b87424bf25f2" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1ad97668-baf8-434c-8bd8-9bee122442b8" }, "Response" : { + "content-length" : "0", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7c596e5c-5db9-426d-ae92-b87424bf25f2", - "elapsed-time" : "72", + "client-request-id" : "1ad97668-baf8-434c-8bd8-9bee122442b8", + "elapsed-time" : "80", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "7c596e5c-5db9-426d-ae92-b87424bf25f2", - "Content-Length" : "0", + "request-id" : "1ad97668-baf8-434c-8bd8-9bee122442b8", "StatusCode" : "404", - "x-ms-client-request-id" : "7c596e5c-5db9-426d-ae92-b87424bf25f2", - "Date" : "Fri, 02 Apr 2021 22:31:28 GMT" + "x-ms-client-request-id" : "1ad97668-baf8-434c-8bd8-9bee122442b8", + "Date" : "Thu, 27 May 2021 21:10:00 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetdocumentthrowswhendocumentnotfound3097071631ab3c')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetdocumentthrowswhendocumentnotfound16981791b65f7d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a9f5fd0-d380-436c-bf7c-0fda6451f0e2" - }, - "Response" : { - "throttle-reason" : "rateLimitExceeded", - "Pragma" : "no-cache", - "retry-after" : "0", - "request-id" : "6a9f5fd0-d380-436c-bf7c-0fda6451f0e2", - "StatusCode" : "503", - "Date" : "Fri, 02 Apr 2021 22:31:42 GMT", - "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", - "Cache-Control" : "no-cache", - "client-request-id" : "6a9f5fd0-d380-436c-bf7c-0fda6451f0e2", - "elapsed-time" : "14403", - "OData-Version" : "4.0", - "Expires" : "-1", - "Content-Length" : "92", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"You are sending too many requests. Please try again later.\"}}", - "Content-Language" : "en", - "x-ms-client-request-id" : "6a9f5fd0-d380-436c-bf7c-0fda6451f0e2", - "Preference-Applied" : "odata.include-annotations=\"*\"", - "Content-Type" : "application/json; odata.metadata=minimal" - }, - "Exception" : null - }, { - "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetdocumentthrowswhendocumentnotfound3097071631ab3c')?api-version=2020-06-30-Preview", - "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a9f5fd0-d380-436c-bf7c-0fda6451f0e2" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6dd3809b-fa3c-48cb-a5d4-77355034bedc" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6a9f5fd0-d380-436c-bf7c-0fda6451f0e2", - "elapsed-time" : "559", + "client-request-id" : "6dd3809b-fa3c-48cb-a5d4-77355034bedc", + "elapsed-time" : "520", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "6a9f5fd0-d380-436c-bf7c-0fda6451f0e2", + "request-id" : "6dd3809b-fa3c-48cb-a5d4-77355034bedc", "StatusCode" : "204", - "x-ms-client-request-id" : "6a9f5fd0-d380-436c-bf7c-0fda6451f0e2", - "Date" : "Fri, 02 Apr 2021 22:31:53 GMT" + "x-ms-client-request-id" : "6dd3809b-fa3c-48cb-a5d4-77355034bedc", + "Date" : "Thu, 27 May 2021 21:10:00 GMT" }, "Exception" : null } ], - "variables" : [ "hotelsgetdocumentthrowswhendocumentnotfound3097071631ab3c" ] + "variables" : [ "hotelsgetdocumentthrowswhendocumentnotfound16981791b65f7d" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.getDocumentThrowsWhenRequestIsMalformed.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.getDocumentThrowsWhenRequestIsMalformed.json index 85fb0e50179d..afe46455c8a0 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.getDocumentThrowsWhenRequestIsMalformed.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchAsyncClientImplTest.getDocumentThrowsWhenRequestIsMalformed.json @@ -1,108 +1,108 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetdocumentthrowswhenrequestismalformed51860890cb124')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetdocumentthrowswhenrequestismalformed3f715715497c3')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5bb09df-dfdd-4cdc-9b98-cb279c30b7b0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1b2ea60a-fd0c-419b-8fa6-d93a555a1849", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6499", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e5bb09df-dfdd-4cdc-9b98-cb279c30b7b0", + "request-id" : "1b2ea60a-fd0c-419b-8fa6-d93a555a1849", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:32:05 GMT", + "Date" : "Thu, 27 May 2021 21:10:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62724F4EAAB\"", - "client-request-id" : "e5bb09df-dfdd-4cdc-9b98-cb279c30b7b0", - "elapsed-time" : "1227", + "ETag" : "W/\"0x8D92153D6763FDD\"", + "client-request-id" : "1b2ea60a-fd0c-419b-8fa6-d93a555a1849", + "elapsed-time" : "1764", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6948", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62724F4EAAB\\\"\",\"name\":\"hotelsgetdocumentthrowswhenrequestismalformed51860890cb124\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "e5bb09df-dfdd-4cdc-9b98-cb279c30b7b0", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153D6763FDD\\\"\",\"name\":\"hotelsgetdocumentthrowswhenrequestismalformed3f715715497c3\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "1b2ea60a-fd0c-419b-8fa6-d93a555a1849", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsgetdocumentthrowswhenrequestismalformed51860890cb124')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsgetdocumentthrowswhenrequestismalformed3f715715497c3')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetdocumentthrowswhenrequestismalformed51860890cb124')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetdocumentthrowswhenrequestismalformed3f715715497c3')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "00a8b597-e86a-4664-a5e4-4b4da4e937e2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "379000b3-0bcc-4191-93f0-c147c221074a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "74", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "00a8b597-e86a-4664-a5e4-4b4da4e937e2", + "request-id" : "379000b3-0bcc-4191-93f0-c147c221074a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:05 GMT", + "Date" : "Thu, 27 May 2021 21:10:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "00a8b597-e86a-4664-a5e4-4b4da4e937e2", - "elapsed-time" : "115", + "client-request-id" : "379000b3-0bcc-4191-93f0-c147c221074a", + "elapsed-time" : "110", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "74", "Body" : "{\"value\":[{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "00a8b597-e86a-4664-a5e4-4b4da4e937e2", + "x-ms-client-request-id" : "379000b3-0bcc-4191-93f0-c147c221074a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetdocumentthrowswhenrequestismalformed51860890cb124')//docs('2')?$select=HotelId%2CThisFieldDoesNotExist&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetdocumentthrowswhenrequestismalformed3f715715497c3')/docs('2')?$select=HotelId%2CThisFieldDoesNotExist&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7048a7ec-f224-45bd-be16-079fd20ddac0" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9a55442b-6015-4afe-a235-429421df16f4" }, "Response" : { + "content-length" : "163", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7048a7ec-f224-45bd-be16-079fd20ddac0", + "request-id" : "9a55442b-6015-4afe-a235-429421df16f4", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:32:09 GMT", + "Date" : "Thu, 27 May 2021 21:10:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7048a7ec-f224-45bd-be16-079fd20ddac0", - "elapsed-time" : "86", + "client-request-id" : "9a55442b-6015-4afe-a235-429421df16f4", + "elapsed-time" : "73", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "163", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"Invalid expression: Could not find a property named 'ThisFieldDoesNotExist' on type 'search.document'.\\r\\nParameter name: $select\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "7048a7ec-f224-45bd-be16-079fd20ddac0", + "x-ms-client-request-id" : "9a55442b-6015-4afe-a235-429421df16f4", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetdocumentthrowswhenrequestismalformed51860890cb124')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsgetdocumentthrowswhenrequestismalformed3f715715497c3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a2ed0358-4cb9-443a-9c22-f808b3a413a7" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b005ec3c-fb58-4a15-9244-b18f7ba3bfab" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a2ed0358-4cb9-443a-9c22-f808b3a413a7", - "elapsed-time" : "596", + "client-request-id" : "b005ec3c-fb58-4a15-9244-b18f7ba3bfab", + "elapsed-time" : "539", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "a2ed0358-4cb9-443a-9c22-f808b3a413a7", + "request-id" : "b005ec3c-fb58-4a15-9244-b18f7ba3bfab", "StatusCode" : "204", - "x-ms-client-request-id" : "a2ed0358-4cb9-443a-9c22-f808b3a413a7", - "Date" : "Fri, 02 Apr 2021 22:32:09 GMT" + "x-ms-client-request-id" : "b005ec3c-fb58-4a15-9244-b18f7ba3bfab", + "Date" : "Thu, 27 May 2021 21:10:25 GMT" }, "Exception" : null } ], - "variables" : [ "hotelsgetdocumentthrowswhenrequestismalformed51860890cb124" ] + "variables" : [ "hotelsgetdocumentthrowswhenrequestismalformed3f715715497c3" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.autoFlushBatchOnDelay.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.autoFlushBatchOnDelay.json index 454cfa7b1411..9e9a20c13bcf 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.autoFlushBatchOnDelay.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.autoFlushBatchOnDelay.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsautoflushbatchondelay32f51397c2a0d858167346')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsautoflushbatchondelaydc85482608d57418f2d142')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e3660adc-5d33-46a7-ad67-2d1558735843", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "80136130-2f58-4135-a808-8aac7d014cf3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6490", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e3660adc-5d33-46a7-ad67-2d1558735843", + "request-id" : "80136130-2f58-4135-a808-8aac7d014cf3", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:33:50 GMT", + "Date" : "Thu, 27 May 2021 21:12:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627638EAE9F\"", - "client-request-id" : "e3660adc-5d33-46a7-ad67-2d1558735843", - "elapsed-time" : "1112", + "ETag" : "W/\"0x8D9215415C7E6A8\"", + "client-request-id" : "80136130-2f58-4135-a808-8aac7d014cf3", + "elapsed-time" : "1477", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6939", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627638EAE9F\\\"\",\"name\":\"hotelsautoflushbatchondelay32f51397c2a0d858167346\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "e3660adc-5d33-46a7-ad67-2d1558735843", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215415C7E6A8\\\"\",\"name\":\"hotelsautoflushbatchondelaydc85482608d57418f2d142\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "80136130-2f58-4135-a808-8aac7d014cf3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsautoflushbatchondelay32f51397c2a0d858167346')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsautoflushbatchondelaydc85482608d57418f2d142')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsautoflushbatchondelay32f51397c2a0d858167346')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsautoflushbatchondelaydc85482608d57418f2d142')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f810f726-dc10-40c0-88a6-072fc78dea9b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "85196335-5bab-46c8-b964-36aa8b8ba6c5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "642", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f810f726-dc10-40c0-88a6-072fc78dea9b", + "request-id" : "85196335-5bab-46c8-b964-36aa8b8ba6c5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:50 GMT", + "Date" : "Thu, 27 May 2021 21:12:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f810f726-dc10-40c0-88a6-072fc78dea9b", - "elapsed-time" : "131", + "client-request-id" : "85196335-5bab-46c8-b964-36aa8b8ba6c5", + "elapsed-time" : "104", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "642", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"5\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"6\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"7\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"8\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"9\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"10\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "f810f726-dc10-40c0-88a6-072fc78dea9b", + "x-ms-client-request-id" : "85196335-5bab-46c8-b964-36aa8b8ba6c5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsautoflushbatchondelay32f51397c2a0d858167346')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsautoflushbatchondelaydc85482608d57418f2d142')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c94f5741-14a0-4b62-906e-38639cdee6a6" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7b98af39-2b91-4437-a92d-f5f88da4175b" }, "Response" : { + "content-length" : "5", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c94f5741-14a0-4b62-906e-38639cdee6a6", + "request-id" : "7b98af39-2b91-4437-a92d-f5f88da4175b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:55 GMT", + "Date" : "Thu, 27 May 2021 21:12:12 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c94f5741-14a0-4b62-906e-38639cdee6a6", - "elapsed-time" : "70", + "client-request-id" : "7b98af39-2b91-4437-a92d-f5f88da4175b", + "elapsed-time" : "164", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "5", "Body" : "10", - "x-ms-client-request-id" : "c94f5741-14a0-4b62-906e-38639cdee6a6", + "x-ms-client-request-id" : "7b98af39-2b91-4437-a92d-f5f88da4175b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "text/plain" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsautoflushbatchondelay32f51397c2a0d858167346')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsautoflushbatchondelaydc85482608d57418f2d142')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6c5a3d54-9c30-476e-bc93-b1115f975ccb" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7beb8450-3ec7-4b0b-bc1d-ba04973e7a18" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6c5a3d54-9c30-476e-bc93-b1115f975ccb", - "elapsed-time" : "553", + "client-request-id" : "7beb8450-3ec7-4b0b-bc1d-ba04973e7a18", + "elapsed-time" : "525", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "6c5a3d54-9c30-476e-bc93-b1115f975ccb", + "request-id" : "7beb8450-3ec7-4b0b-bc1d-ba04973e7a18", "StatusCode" : "204", - "x-ms-client-request-id" : "6c5a3d54-9c30-476e-bc93-b1115f975ccb", - "Date" : "Fri, 02 Apr 2021 22:33:55 GMT" + "x-ms-client-request-id" : "7beb8450-3ec7-4b0b-bc1d-ba04973e7a18", + "Date" : "Thu, 27 May 2021 21:12:12 GMT" }, "Exception" : null } ], - "variables" : [ "hotelsautoflushbatchondelay32f51397c2a0d858167346" ] + "variables" : [ "hotelsautoflushbatchondelaydc85482608d57418f2d142" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.autoFlushBatchOnSize.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.autoFlushBatchOnSize.json index 7032bb48d978..29e57ba90541 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.autoFlushBatchOnSize.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.autoFlushBatchOnSize.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsautoflushbatchonsize26054226080be859fceb44e')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsautoflushbatchonsize7fc2063658028208e85d4e6')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "415f987a-93e1-4217-a0dd-76c6826d8b57", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4e7b6ce5-335a-4040-8e74-aa0ffc3e4d13", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6490", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "415f987a-93e1-4217-a0dd-76c6826d8b57", + "request-id" : "4e7b6ce5-335a-4040-8e74-aa0ffc3e4d13", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:33:45 GMT", + "Date" : "Thu, 27 May 2021 21:12:01 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627601FF0BB\"", - "client-request-id" : "415f987a-93e1-4217-a0dd-76c6826d8b57", - "elapsed-time" : "1167", + "ETag" : "W/\"0x8D92154121E09F8\"", + "client-request-id" : "4e7b6ce5-335a-4040-8e74-aa0ffc3e4d13", + "elapsed-time" : "1529", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6939", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627601FF0BB\\\"\",\"name\":\"hotelsautoflushbatchonsize26054226080be859fceb44e\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "415f987a-93e1-4217-a0dd-76c6826d8b57", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154121E09F8\\\"\",\"name\":\"hotelsautoflushbatchonsize7fc2063658028208e85d4e6\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "4e7b6ce5-335a-4040-8e74-aa0ffc3e4d13", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsautoflushbatchonsize26054226080be859fceb44e')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsautoflushbatchonsize7fc2063658028208e85d4e6')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsautoflushbatchonsize26054226080be859fceb44e')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsautoflushbatchonsize7fc2063658028208e85d4e6')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "16211504-70cf-4791-b01e-d268d9e01960", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "30ff46f3-bfea-4cd4-b007-4369d0c54fd7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "642", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "16211504-70cf-4791-b01e-d268d9e01960", + "request-id" : "30ff46f3-bfea-4cd4-b007-4369d0c54fd7", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:45 GMT", + "Date" : "Thu, 27 May 2021 21:12:01 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "16211504-70cf-4791-b01e-d268d9e01960", - "elapsed-time" : "125", + "client-request-id" : "30ff46f3-bfea-4cd4-b007-4369d0c54fd7", + "elapsed-time" : "113", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "642", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"5\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"6\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"7\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"8\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"9\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"10\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "16211504-70cf-4791-b01e-d268d9e01960", + "x-ms-client-request-id" : "30ff46f3-bfea-4cd4-b007-4369d0c54fd7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsautoflushbatchonsize26054226080be859fceb44e')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsautoflushbatchonsize7fc2063658028208e85d4e6')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9ce5b4f-18eb-4f8c-ac43-10bd8a2a8c18" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5a137c80-c975-4764-b4a4-e4cb759b70cd" }, "Response" : { + "content-length" : "5", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c9ce5b4f-18eb-4f8c-ac43-10bd8a2a8c18", + "request-id" : "5a137c80-c975-4764-b4a4-e4cb759b70cd", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:48 GMT", + "Date" : "Thu, 27 May 2021 21:12:04 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c9ce5b4f-18eb-4f8c-ac43-10bd8a2a8c18", - "elapsed-time" : "68", + "client-request-id" : "5a137c80-c975-4764-b4a4-e4cb759b70cd", + "elapsed-time" : "69", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "5", "Body" : "10", - "x-ms-client-request-id" : "c9ce5b4f-18eb-4f8c-ac43-10bd8a2a8c18", + "x-ms-client-request-id" : "5a137c80-c975-4764-b4a4-e4cb759b70cd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "text/plain" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsautoflushbatchonsize26054226080be859fceb44e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsautoflushbatchonsize7fc2063658028208e85d4e6')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3a768d54-c011-410d-9ec4-0b44654157b5" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d164afb9-0b9c-4a6b-8b5c-127c09268a4c" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3a768d54-c011-410d-9ec4-0b44654157b5", - "elapsed-time" : "533", + "client-request-id" : "d164afb9-0b9c-4a6b-8b5c-127c09268a4c", + "elapsed-time" : "526", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "3a768d54-c011-410d-9ec4-0b44654157b5", + "request-id" : "d164afb9-0b9c-4a6b-8b5c-127c09268a4c", "StatusCode" : "204", - "x-ms-client-request-id" : "3a768d54-c011-410d-9ec4-0b44654157b5", - "Date" : "Fri, 02 Apr 2021 22:33:48 GMT" + "x-ms-client-request-id" : "d164afb9-0b9c-4a6b-8b5c-127c09268a4c", + "Date" : "Thu, 27 May 2021 21:12:05 GMT" }, "Exception" : null } ], - "variables" : [ "hotelsautoflushbatchonsize26054226080be859fceb44e" ] + "variables" : [ "hotelsautoflushbatchonsize7fc2063658028208e85d4e6" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchFlushesOnClose.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchFlushesOnClose.json index 4e862aec4ba5..7b1ab2922d72 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchFlushesOnClose.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchFlushesOnClose.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsbatchflushesonclose617941092c1e75e2c591413')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsbatchflushesonclose429990411aa0b4acac5b400')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1525146d-2297-440d-b78c-e022570ba3f9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "68a41915-9d4f-479f-8740-ba4f6997a420", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6489", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1525146d-2297-440d-b78c-e022570ba3f9", + "request-id" : "68a41915-9d4f-479f-8740-ba4f6997a420", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:32:18 GMT", + "Date" : "Thu, 27 May 2021 21:10:34 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6272C9933ED\"", - "client-request-id" : "1525146d-2297-440d-b78c-e022570ba3f9", - "elapsed-time" : "1076", + "ETag" : "W/\"0x8D92153DE6878D9\"", + "client-request-id" : "68a41915-9d4f-479f-8740-ba4f6997a420", + "elapsed-time" : "1491", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6938", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6272C9933ED\\\"\",\"name\":\"hotelsbatchflushesonclose617941092c1e75e2c591413\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "1525146d-2297-440d-b78c-e022570ba3f9", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153DE6878D9\\\"\",\"name\":\"hotelsbatchflushesonclose429990411aa0b4acac5b400\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "68a41915-9d4f-479f-8740-ba4f6997a420", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsbatchflushesonclose617941092c1e75e2c591413')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsbatchflushesonclose429990411aa0b4acac5b400')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsbatchflushesonclose617941092c1e75e2c591413')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsbatchflushesonclose429990411aa0b4acac5b400')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3791f7f1-8ada-4520-ace3-59d199e00401", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7e3c8388-8759-4d2b-8d61-41dafcbfc4b9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "642", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3791f7f1-8ada-4520-ace3-59d199e00401", + "request-id" : "7e3c8388-8759-4d2b-8d61-41dafcbfc4b9", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:18 GMT", + "Date" : "Thu, 27 May 2021 21:10:34 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3791f7f1-8ada-4520-ace3-59d199e00401", - "elapsed-time" : "177", + "client-request-id" : "7e3c8388-8759-4d2b-8d61-41dafcbfc4b9", + "elapsed-time" : "198", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "642", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"5\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"6\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"7\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"8\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"9\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"10\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "3791f7f1-8ada-4520-ace3-59d199e00401", + "x-ms-client-request-id" : "7e3c8388-8759-4d2b-8d61-41dafcbfc4b9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsbatchflushesonclose617941092c1e75e2c591413')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsbatchflushesonclose429990411aa0b4acac5b400')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b752a85-8346-4dca-9795-6dd950185624" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5735974b-ce93-4c01-a441-f95607a867a3" }, "Response" : { + "content-length" : "5", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8b752a85-8346-4dca-9795-6dd950185624", + "request-id" : "5735974b-ce93-4c01-a441-f95607a867a3", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:21 GMT", + "Date" : "Thu, 27 May 2021 21:10:37 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8b752a85-8346-4dca-9795-6dd950185624", - "elapsed-time" : "70", + "client-request-id" : "5735974b-ce93-4c01-a441-f95607a867a3", + "elapsed-time" : "73", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "5", "Body" : "10", - "x-ms-client-request-id" : "8b752a85-8346-4dca-9795-6dd950185624", + "x-ms-client-request-id" : "5735974b-ce93-4c01-a441-f95607a867a3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "text/plain" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsbatchflushesonclose617941092c1e75e2c591413')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsbatchflushesonclose429990411aa0b4acac5b400')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "dc1d552f-fa69-4943-945f-41dacf4d52af" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6e3e1cd9-b563-47b1-a96f-4a4664f0f7b0" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "dc1d552f-fa69-4943-945f-41dacf4d52af", - "elapsed-time" : "535", + "client-request-id" : "6e3e1cd9-b563-47b1-a96f-4a4664f0f7b0", + "elapsed-time" : "502", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "dc1d552f-fa69-4943-945f-41dacf4d52af", + "request-id" : "6e3e1cd9-b563-47b1-a96f-4a4664f0f7b0", "StatusCode" : "204", - "x-ms-client-request-id" : "dc1d552f-fa69-4943-945f-41dacf4d52af", - "Date" : "Fri, 02 Apr 2021 22:32:22 GMT" + "x-ms-client-request-id" : "6e3e1cd9-b563-47b1-a96f-4a4664f0f7b0", + "Date" : "Thu, 27 May 2021 21:10:38 GMT" }, "Exception" : null } ], - "variables" : [ "hotelsbatchflushesonclose617941092c1e75e2c591413" ] + "variables" : [ "hotelsbatchflushesonclose429990411aa0b4acac5b400" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchGetsDocumentsButNeverFlushes.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchGetsDocumentsButNeverFlushes.json index b1f9bc7ea145..dc22960f70ba 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchGetsDocumentsButNeverFlushes.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchGetsDocumentsButNeverFlushes.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsbatchgetsdocumentsbutneverflushes47f28910a1489599')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsbatchgetsdocumentsbutneverflushesc4465771306ecfde')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5cee19f-5c55-472e-87ce-cd6833187f33", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d5627a5d-8b72-4295-909e-ada81b4858e8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6496", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d5cee19f-5c55-472e-87ce-cd6833187f33", + "request-id" : "d5627a5d-8b72-4295-909e-ada81b4858e8", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:33:38 GMT", + "Date" : "Thu, 27 May 2021 21:11:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6275CA8A604\"", - "client-request-id" : "d5cee19f-5c55-472e-87ce-cd6833187f33", - "elapsed-time" : "1064", + "ETag" : "W/\"0x8D921540E6D755A\"", + "client-request-id" : "d5627a5d-8b72-4295-909e-ada81b4858e8", + "elapsed-time" : "1488", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6945", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6275CA8A604\\\"\",\"name\":\"hotelsbatchgetsdocumentsbutneverflushes47f28910a1489599\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "d5cee19f-5c55-472e-87ce-cd6833187f33", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921540E6D755A\\\"\",\"name\":\"hotelsbatchgetsdocumentsbutneverflushesc4465771306ecfde\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "d5627a5d-8b72-4295-909e-ada81b4858e8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsbatchgetsdocumentsbutneverflushes47f28910a1489599')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsbatchgetsdocumentsbutneverflushesc4465771306ecfde')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsbatchgetsdocumentsbutneverflushes47f28910a1489599')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsbatchgetsdocumentsbutneverflushesc4465771306ecfde')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "152fa0b7-e841-4983-b309-773ddf518e7e" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "06b7e2fd-65a4-4b74-af7e-f68b0028720a" }, "Response" : { + "content-length" : "4", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "152fa0b7-e841-4983-b309-773ddf518e7e", + "request-id" : "06b7e2fd-65a4-4b74-af7e-f68b0028720a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:42 GMT", + "Date" : "Thu, 27 May 2021 21:11:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "152fa0b7-e841-4983-b309-773ddf518e7e", - "elapsed-time" : "83", + "client-request-id" : "06b7e2fd-65a4-4b74-af7e-f68b0028720a", + "elapsed-time" : "71", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "4", "Body" : "0", - "x-ms-client-request-id" : "152fa0b7-e841-4983-b309-773ddf518e7e", + "x-ms-client-request-id" : "06b7e2fd-65a4-4b74-af7e-f68b0028720a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "text/plain" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsbatchgetsdocumentsbutneverflushes47f28910a1489599')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsbatchgetsdocumentsbutneverflushesc4465771306ecfde')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "efc84029-b4b8-490a-9e42-c37c89e3485e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8fbab84a-6255-4659-85af-35b12683a96a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "642", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "efc84029-b4b8-490a-9e42-c37c89e3485e", + "request-id" : "8fbab84a-6255-4659-85af-35b12683a96a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:42 GMT", + "Date" : "Thu, 27 May 2021 21:11:58 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "efc84029-b4b8-490a-9e42-c37c89e3485e", - "elapsed-time" : "114", + "client-request-id" : "8fbab84a-6255-4659-85af-35b12683a96a", + "elapsed-time" : "101", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "642", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"5\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"6\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"7\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"8\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"9\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"10\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "efc84029-b4b8-490a-9e42-c37c89e3485e", + "x-ms-client-request-id" : "8fbab84a-6255-4659-85af-35b12683a96a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsbatchgetsdocumentsbutneverflushes47f28910a1489599')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsbatchgetsdocumentsbutneverflushesc4465771306ecfde')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2d5d77c1-92e7-46ff-b03e-62a4812db07c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2ed30ac2-48e1-467d-abd5-40818da020b4" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2d5d77c1-92e7-46ff-b03e-62a4812db07c", - "elapsed-time" : "536", + "client-request-id" : "2ed30ac2-48e1-467d-abd5-40818da020b4", + "elapsed-time" : "494", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "2d5d77c1-92e7-46ff-b03e-62a4812db07c", + "request-id" : "2ed30ac2-48e1-467d-abd5-40818da020b4", "StatusCode" : "204", - "x-ms-client-request-id" : "2d5d77c1-92e7-46ff-b03e-62a4812db07c", - "Date" : "Fri, 02 Apr 2021 22:33:42 GMT" + "x-ms-client-request-id" : "2ed30ac2-48e1-467d-abd5-40818da020b4", + "Date" : "Thu, 27 May 2021 21:11:58 GMT" }, "Exception" : null } ], - "variables" : [ "hotelsbatchgetsdocumentsbutneverflushes47f28910a1489599" ] + "variables" : [ "hotelsbatchgetsdocumentsbutneverflushesc4465771306ecfde" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchHasSomeFailures.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchHasSomeFailures.json index 5355ffb03168..540cc72d08fc 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchHasSomeFailures.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchHasSomeFailures.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b3203859-856e-419e-9848-80a490e5ff94", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0a64314d-6a63-45bd-acfd-37e0869e6585", "Content-Type" : "application/json" }, "Response" : { diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchRetriesUntilLimit.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchRetriesUntilLimit.json index 8ad5919d1f61..b42346fa78c9 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchRetriesUntilLimit.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchRetriesUntilLimit.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e41f69b2-1911-4dab-8641-44ac126f0744", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3a01623d-68e8-4130-9267-36f9ad226d55", "Content-Type" : "application/json" }, "Response" : { @@ -16,10 +16,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e3d24002-255b-4d79-9356-c2b8cde2cbd1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9375d4d8-c076-4c85-9863-bedf7f7ee75f", "Content-Type" : "application/json" }, "Response" : { @@ -31,10 +31,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6d28dc5c-d380-4f35-8746-dd4c6d519af2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d6debfea-62a3-483e-80e9-968c5f2e543b", "Content-Type" : "application/json" }, "Response" : { @@ -46,10 +46,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "31d327b6-378d-41fc-bac5-5fbd2f07436d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "aa3b2bf7-b9dd-442f-b186-912b028ca2e0", "Content-Type" : "application/json" }, "Response" : { @@ -61,10 +61,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ecb27ec3-6ab7-475d-9818-09f3c4e6e866", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8163f5b9-0876-4c37-a2c3-577bbf63d338", "Content-Type" : "application/json" }, "Response" : { @@ -76,10 +76,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7f4ee442-5c25-473c-85e3-950347d45874", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "cd1d1525-226c-4073-b5b9-e56049ed7bb6", "Content-Type" : "application/json" }, "Response" : { @@ -91,10 +91,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "93bfb1d6-28eb-4232-90b8-42efcbc080f9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ae72f175-df9a-49cc-9d1b-f7f63dcf3fcb", "Content-Type" : "application/json" }, "Response" : { @@ -106,10 +106,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3d92d6ed-508f-4203-bd52-fa1cee0ebb6e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d0b62d07-b3dc-4d03-923b-af4d0f430962", "Content-Type" : "application/json" }, "Response" : { @@ -121,10 +121,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "348d6ef9-34a0-4365-b237-5f0bd96861da", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f24b7f08-bb6c-4fad-83c8-8c707eb31370", "Content-Type" : "application/json" }, "Response" : { @@ -136,10 +136,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "55d9e43f-8698-44f0-88e6-941a5799b29f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6518a3ab-f2c8-4fee-ab3a-6c080c2e82c9", "Content-Type" : "application/json" }, "Response" : { @@ -151,10 +151,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3d04e63-7c8e-4fa4-9180-336ed7f50066", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "52b7ebed-aca8-47d1-87b2-782260e7faf9", "Content-Type" : "application/json" }, "Response" : { diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchSplits.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchSplits.json index 3b9e21d9d3ad..fd7b94973b73 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchSplits.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchSplits.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "37b0bb63-7dbe-4973-89cc-27efbcd69a55", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0830321f-80e5-43f0-9a6f-4972258b20a8", "Content-Type" : "application/json" }, "Response" : { @@ -14,10 +14,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "684877eb-babb-4adc-9bbb-48095d3fa715", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "75faa727-8f87-45bf-969a-ed4888edc133", "Content-Type" : "application/json" }, "Response" : { @@ -29,10 +29,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f9b5361-9f15-4558-9de8-b7ffe4097b76", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "17d9d343-9a70-4719-8089-b6accab618c7", "Content-Type" : "application/json" }, "Response" : { diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchSplitsUntilOneAndFails.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchSplitsUntilOneAndFails.json index 0ade39149515..dc3019e8e5fa 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchSplitsUntilOneAndFails.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchSplitsUntilOneAndFails.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd560e0b-9e7a-4d49-ba05-b51d7b5f2944", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d549d0c2-6f15-496d-aec5-ae0873336db7", "Content-Type" : "application/json" }, "Response" : { @@ -14,10 +14,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "17fbe6b4-f24a-40a0-9ca3-58960d60729c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4b8dfeed-e37c-4bfe-a92c-8e5b3a3ffbca", "Content-Type" : "application/json" }, "Response" : { @@ -27,10 +27,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bccb22e6-d56b-4aed-9f4f-fa8c86784772", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d475b5fd-f731-41ac-ae78-274b071c6cde", "Content-Type" : "application/json" }, "Response" : { diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchSplitsUntilOneAndPartiallyFails.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchSplitsUntilOneAndPartiallyFails.json index 828371c456c5..479ef18c0d3a 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchSplitsUntilOneAndPartiallyFails.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchSplitsUntilOneAndPartiallyFails.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f65fee05-13d9-46cc-8d1e-b531578e9d42", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9cca1d01-3a59-40a6-b084-80439e7782f9", "Content-Type" : "application/json" }, "Response" : { @@ -14,10 +14,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "eb4997a1-17ea-4e94-8b1b-5cc626aaa8fc", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "674fe6ab-743b-4595-9216-3dc7294de654", "Content-Type" : "application/json" }, "Response" : { @@ -27,10 +27,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "42ea7c05-597a-4dae-89bd-17eac72e895d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6d4a36d4-c606-437f-a194-a9d5630cdb58", "Content-Type" : "application/json" }, "Response" : { diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchTakesAllNonDuplicateKeys.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchTakesAllNonDuplicateKeys.json index c4b49737b983..17d3361605da 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchTakesAllNonDuplicateKeys.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchTakesAllNonDuplicateKeys.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2e7e26a7-a01c-4dad-825f-dddd5a66f55c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5121b423-393f-4d23-b6a6-fba20916d824", "Content-Type" : "application/json" }, "Response" : { @@ -16,10 +16,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2626b9ad-4327-48ec-89d3-cd402c18786e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "af4f71cd-f3e0-43ad-b664-a557dd7ec541", "Content-Type" : "application/json" }, "Response" : { diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchWithDuplicateKeysBeingRetriedTakesAllNonDuplicateKeys.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchWithDuplicateKeysBeingRetriedTakesAllNonDuplicateKeys.json index 9417422fc142..d666241c5f73 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchWithDuplicateKeysBeingRetriedTakesAllNonDuplicateKeys.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.batchWithDuplicateKeysBeingRetriedTakesAllNonDuplicateKeys.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "255c2879-0bc6-4dec-a54e-4bc940275860", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "48224417-7586-4de4-8204-d5b090b2386b", "Content-Type" : "application/json" }, "Response" : { @@ -16,10 +16,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0402e8d6-ff0e-45af-9619-29926e1afac8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "594c1242-603c-486f-8d68-eaa8525f1149", "Content-Type" : "application/json" }, "Response" : { @@ -31,10 +31,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd3ccfe3-e98d-41ae-b064-da086bebc1b9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1af976f5-0722-4e1b-a276-74d292043623", "Content-Type" : "application/json" }, "Response" : { diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.closeWillWaitForAnyCurrentFlushesToCompleteBeforeRunning.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.closeWillWaitForAnyCurrentFlushesToCompleteBeforeRunning.json index a3bd06d9c835..b9a69eaf036a 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.closeWillWaitForAnyCurrentFlushesToCompleteBeforeRunning.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.closeWillWaitForAnyCurrentFlushesToCompleteBeforeRunning.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "90d13751-49bf-4345-8a0e-01cdc85b0eb9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "868bf6ea-b55d-4618-9c01-b7f61ce012ef", "Content-Type" : "application/json" }, "Response" : { @@ -16,10 +16,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c6f0fb9d-0c2d-493a-90df-4d8750243749", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b2044c35-6f0f-43f2-9ce8-069d5223b7c6", "Content-Type" : "application/json" }, "Response" : { diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.concurrentFlushesOnlyAllowsOneProcessor.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.concurrentFlushesOnlyAllowsOneProcessor.json index 6957176a3992..331700855f15 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.concurrentFlushesOnlyAllowsOneProcessor.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.concurrentFlushesOnlyAllowsOneProcessor.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "42225d62-c562-4970-baed-1d03c484fb9b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "05cf300b-f4e8-44a1-a472-0461b4f55d8b", "Content-Type" : "application/json" }, "Response" : { @@ -16,10 +16,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "840a2aa3-c354-4f1b-a543-fa8700dcbd7d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5d5ec63b-e56f-4310-8487-9163d68019d6", "Content-Type" : "application/json" }, "Response" : { diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.delayGrowsWith503BatchOperation.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.delayGrowsWith503BatchOperation.json index 71286cf5c53e..7458bda10d20 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.delayGrowsWith503BatchOperation.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.delayGrowsWith503BatchOperation.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e7a699b1-d26d-4b91-97cf-c7fb2390a3de", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "046c81c4-ac44-4c5b-9002-765d972e296b", "Content-Type" : "application/json" }, "Response" : { @@ -16,10 +16,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1314b9dd-9112-4563-893c-156dfb94a6d2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3f6e410a-74fb-4462-acfb-75c0b044db1b", "Content-Type" : "application/json" }, "Response" : { diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.delayGrowsWith503Response.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.delayGrowsWith503Response.json index a5d17f097b00..c4ceef32758f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.delayGrowsWith503Response.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.delayGrowsWith503Response.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "29e1e55f-1aab-41c2-a1e6-97bc2235a365", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "326af51d-d91c-44b9-b3e0-e807904e3aef", "Content-Type" : "application/json" }, "Response" : { @@ -14,10 +14,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "97cfd470-a157-4861-a5ea-e459d0a986bc", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "51ea4f1a-38b3-4487-80eb-8fa4821bec99", "Content-Type" : "application/json" }, "Response" : { diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.delayResetsAfterNo503s.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.delayResetsAfterNo503s.json index 5fc1492f6d83..f6e43ba70a4b 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.delayResetsAfterNo503s.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.delayResetsAfterNo503s.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e96d1470-ba6b-435b-ba16-e7d950b46fe6", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "95c17ad7-8bf4-46f3-9e18-928300dc51b5", "Content-Type" : "application/json" }, "Response" : { @@ -14,10 +14,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f406cd8c-57b6-4675-91b3-72ecb0438dc5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "50d60e1c-b6fe-42db-a7c0-3ad76104e913", "Content-Type" : "application/json" }, "Response" : { diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.flushBatch.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.flushBatch.json index a7500f999f18..f1e64f83097c 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.flushBatch.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.flushBatch.json @@ -1,107 +1,107 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsflushbatch219771975bba5a13e37047158ad4')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsflushbatch6f8443887c6b335e94ee450d9b54')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd1c2cd8-4ffe-454e-a198-9d2cf9055988", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d1cdf144-5f0b-4293-9a85-da561c3069dd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6485", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "bd1c2cd8-4ffe-454e-a198-9d2cf9055988", + "request-id" : "d1cdf144-5f0b-4293-9a85-da561c3069dd", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:32:27 GMT", + "Date" : "Thu, 27 May 2021 21:10:44 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62731F0DD05\"", - "client-request-id" : "bd1c2cd8-4ffe-454e-a198-9d2cf9055988", - "elapsed-time" : "1089", + "ETag" : "W/\"0x8D92153E3F77369\"", + "client-request-id" : "d1cdf144-5f0b-4293-9a85-da561c3069dd", + "elapsed-time" : "1469", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6934", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62731F0DD05\\\"\",\"name\":\"hotelsflushbatch219771975bba5a13e37047158ad4\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "bd1c2cd8-4ffe-454e-a198-9d2cf9055988", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153E3F77369\\\"\",\"name\":\"hotelsflushbatch6f8443887c6b335e94ee450d9b54\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "d1cdf144-5f0b-4293-9a85-da561c3069dd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsflushbatch219771975bba5a13e37047158ad4')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsflushbatch6f8443887c6b335e94ee450d9b54')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsflushbatch219771975bba5a13e37047158ad4')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsflushbatch6f8443887c6b335e94ee450d9b54')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b7d45042-6f5b-4f93-93ea-99eefb877e90", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5ffb6336-a531-44db-825d-2ba5899fe7da", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "642", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b7d45042-6f5b-4f93-93ea-99eefb877e90", + "request-id" : "5ffb6336-a531-44db-825d-2ba5899fe7da", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:27 GMT", + "Date" : "Thu, 27 May 2021 21:10:44 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b7d45042-6f5b-4f93-93ea-99eefb877e90", - "elapsed-time" : "172", + "client-request-id" : "5ffb6336-a531-44db-825d-2ba5899fe7da", + "elapsed-time" : "112", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "642", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"5\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"6\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"7\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"8\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"9\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"10\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "b7d45042-6f5b-4f93-93ea-99eefb877e90", + "x-ms-client-request-id" : "5ffb6336-a531-44db-825d-2ba5899fe7da", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsflushbatch219771975bba5a13e37047158ad4')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsflushbatch6f8443887c6b335e94ee450d9b54')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "62095955-164b-4774-bfff-ec5c0942bd85" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "43e62bcf-7447-4265-a312-3890cb749e44" }, "Response" : { + "content-length" : "5", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "62095955-164b-4774-bfff-ec5c0942bd85", + "request-id" : "43e62bcf-7447-4265-a312-3890cb749e44", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:30 GMT", + "Date" : "Thu, 27 May 2021 21:10:47 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "62095955-164b-4774-bfff-ec5c0942bd85", - "elapsed-time" : "130", + "client-request-id" : "43e62bcf-7447-4265-a312-3890cb749e44", + "elapsed-time" : "67", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "5", "Body" : "10", - "x-ms-client-request-id" : "62095955-164b-4774-bfff-ec5c0942bd85", + "x-ms-client-request-id" : "43e62bcf-7447-4265-a312-3890cb749e44", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "text/plain" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsflushbatch219771975bba5a13e37047158ad4')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsflushbatch6f8443887c6b335e94ee450d9b54')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9ab4d6d6-4211-4439-8a2b-66d33e61b18a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a031380e-0b11-414e-8a3a-04ba28d7804b" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9ab4d6d6-4211-4439-8a2b-66d33e61b18a", - "elapsed-time" : "525", + "client-request-id" : "a031380e-0b11-414e-8a3a-04ba28d7804b", + "elapsed-time" : "534", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "9ab4d6d6-4211-4439-8a2b-66d33e61b18a", + "request-id" : "a031380e-0b11-414e-8a3a-04ba28d7804b", "StatusCode" : "204", - "x-ms-client-request-id" : "9ab4d6d6-4211-4439-8a2b-66d33e61b18a", - "Date" : "Fri, 02 Apr 2021 22:32:31 GMT" + "x-ms-client-request-id" : "a031380e-0b11-414e-8a3a-04ba28d7804b", + "Date" : "Thu, 27 May 2021 21:10:47 GMT" }, "Exception" : null } ], - "variables" : [ "hotelsflushbatch219771975bba5a13e37047158ad4" ] + "variables" : [ "hotelsflushbatch6f8443887c6b335e94ee450d9b54" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.inFlightDocumentsAreRetried.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.inFlightDocumentsAreRetried.json index 9b55dac936e4..fa9f7813e67f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.inFlightDocumentsAreRetried.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.inFlightDocumentsAreRetried.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d17a06e3-7975-4edb-b49b-b975eeaa56b8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "755ea7e7-c624-4cc9-ab65-423ae6f32d8d", "Content-Type" : "application/json" }, "Response" : { diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.indexManyDocumentsOneLargeDocumentSet.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.indexManyDocumentsOneLargeDocumentSet.json index 2bbc449e12f1..3f22a78dac7a 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.indexManyDocumentsOneLargeDocumentSet.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.indexManyDocumentsOneLargeDocumentSet.json @@ -1,2780 +1,2780 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "468c2ac2-6cb9-4848-8e54-97aec92355c7", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "da89bf1e-a67c-4b64-ac79-99663c629e5f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6498", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "468c2ac2-6cb9-4848-8e54-97aec92355c7", + "request-id" : "da89bf1e-a67c-4b64-ac79-99663c629e5f", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:33:05 GMT", + "Date" : "Thu, 27 May 2021 21:11:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6274896B930\"", - "client-request-id" : "468c2ac2-6cb9-4848-8e54-97aec92355c7", - "elapsed-time" : "1090", + "ETag" : "W/\"0x8D92153FA752DBC\"", + "client-request-id" : "da89bf1e-a67c-4b64-ac79-99663c629e5f", + "elapsed-time" : "1494", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6947", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6274896B930\\\"\",\"name\":\"hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "468c2ac2-6cb9-4848-8e54-97aec92355c7", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153FA752DBC\\\"\",\"name\":\"hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "da89bf1e-a67c-4b64-ac79-99663c629e5f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0a5ed14-7d80-4fc8-bd3e-0fc3bd5f13d2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a15ece56-467a-49d1-b98e-5d207f20bdef", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "642", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d0a5ed14-7d80-4fc8-bd3e-0fc3bd5f13d2", + "request-id" : "a15ece56-467a-49d1-b98e-5d207f20bdef", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:05 GMT", + "Date" : "Thu, 27 May 2021 21:11:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d0a5ed14-7d80-4fc8-bd3e-0fc3bd5f13d2", - "elapsed-time" : "121", + "client-request-id" : "a15ece56-467a-49d1-b98e-5d207f20bdef", + "elapsed-time" : "107", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "642", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"5\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"6\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"7\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"8\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"9\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"10\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "d0a5ed14-7d80-4fc8-bd3e-0fc3bd5f13d2", + "x-ms-client-request-id" : "a15ece56-467a-49d1-b98e-5d207f20bdef", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b2bc1b60-9e85-4612-9a5a-4ea553303d1d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bb36235d-ceed-4be1-82b9-2f37bd69359b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "651", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b2bc1b60-9e85-4612-9a5a-4ea553303d1d", + "request-id" : "bb36235d-ceed-4be1-82b9-2f37bd69359b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:05 GMT", + "Date" : "Thu, 27 May 2021 21:11:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b2bc1b60-9e85-4612-9a5a-4ea553303d1d", - "elapsed-time" : "127", + "client-request-id" : "bb36235d-ceed-4be1-82b9-2f37bd69359b", + "elapsed-time" : "106", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "651", "Body" : "{\"value\":[{\"key\":\"11\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"12\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"13\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"14\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"15\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"16\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"17\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"18\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"19\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"20\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "b2bc1b60-9e85-4612-9a5a-4ea553303d1d", + "x-ms-client-request-id" : "bb36235d-ceed-4be1-82b9-2f37bd69359b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "324e0e6a-2bd9-498e-a63b-172579fd53c6", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "58b8b6c6-4534-4176-a242-aba48bf66d75", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "651", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "324e0e6a-2bd9-498e-a63b-172579fd53c6", + "request-id" : "58b8b6c6-4534-4176-a242-aba48bf66d75", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:05 GMT", + "Date" : "Thu, 27 May 2021 21:11:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "324e0e6a-2bd9-498e-a63b-172579fd53c6", - "elapsed-time" : "43", + "client-request-id" : "58b8b6c6-4534-4176-a242-aba48bf66d75", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "651", "Body" : "{\"value\":[{\"key\":\"21\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"22\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"23\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"24\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"25\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"26\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"27\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"28\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"29\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"30\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "324e0e6a-2bd9-498e-a63b-172579fd53c6", + "x-ms-client-request-id" : "58b8b6c6-4534-4176-a242-aba48bf66d75", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "703f45bf-0a88-47db-baab-bb9d899d0b9b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f035f3f0-3ea3-49e5-be4c-922020389861", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "651", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "703f45bf-0a88-47db-baab-bb9d899d0b9b", + "request-id" : "f035f3f0-3ea3-49e5-be4c-922020389861", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:05 GMT", + "Date" : "Thu, 27 May 2021 21:11:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "703f45bf-0a88-47db-baab-bb9d899d0b9b", - "elapsed-time" : "37", + "client-request-id" : "f035f3f0-3ea3-49e5-be4c-922020389861", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "651", "Body" : "{\"value\":[{\"key\":\"31\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"32\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"33\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"34\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"35\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"36\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"37\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"38\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"39\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"40\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "703f45bf-0a88-47db-baab-bb9d899d0b9b", + "x-ms-client-request-id" : "f035f3f0-3ea3-49e5-be4c-922020389861", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d4b0c3f6-d7d5-4af0-a3ee-922331a7b375", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "53dce8cb-c153-4913-bbc6-5a26b4834697", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "651", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d4b0c3f6-d7d5-4af0-a3ee-922331a7b375", + "request-id" : "53dce8cb-c153-4913-bbc6-5a26b4834697", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:05 GMT", + "Date" : "Thu, 27 May 2021 21:11:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d4b0c3f6-d7d5-4af0-a3ee-922331a7b375", - "elapsed-time" : "36", + "client-request-id" : "53dce8cb-c153-4913-bbc6-5a26b4834697", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "651", "Body" : "{\"value\":[{\"key\":\"41\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"42\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"43\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"44\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"45\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"46\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"47\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"48\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"49\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"50\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "d4b0c3f6-d7d5-4af0-a3ee-922331a7b375", + "x-ms-client-request-id" : "53dce8cb-c153-4913-bbc6-5a26b4834697", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b48d1ddc-5d6e-40b2-87aa-a504f1436a72", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fcb2a0ef-7824-426a-a8da-936bfc027d5c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "651", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b48d1ddc-5d6e-40b2-87aa-a504f1436a72", + "request-id" : "fcb2a0ef-7824-426a-a8da-936bfc027d5c", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:05 GMT", + "Date" : "Thu, 27 May 2021 21:11:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b48d1ddc-5d6e-40b2-87aa-a504f1436a72", - "elapsed-time" : "42", + "client-request-id" : "fcb2a0ef-7824-426a-a8da-936bfc027d5c", + "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "651", "Body" : "{\"value\":[{\"key\":\"51\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"52\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"53\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"54\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"55\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"56\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"57\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"58\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"59\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"60\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "b48d1ddc-5d6e-40b2-87aa-a504f1436a72", + "x-ms-client-request-id" : "fcb2a0ef-7824-426a-a8da-936bfc027d5c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e98938de-4f6b-46b8-b8c3-203e34721d23", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "833062f0-fe21-4605-a526-c23a7faad342", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "651", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e98938de-4f6b-46b8-b8c3-203e34721d23", + "request-id" : "833062f0-fe21-4605-a526-c23a7faad342", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:05 GMT", + "Date" : "Thu, 27 May 2021 21:11:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e98938de-4f6b-46b8-b8c3-203e34721d23", - "elapsed-time" : "31", + "client-request-id" : "833062f0-fe21-4605-a526-c23a7faad342", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "651", "Body" : "{\"value\":[{\"key\":\"61\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"62\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"63\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"64\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"65\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"66\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"67\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"68\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"69\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"70\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "e98938de-4f6b-46b8-b8c3-203e34721d23", + "x-ms-client-request-id" : "833062f0-fe21-4605-a526-c23a7faad342", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a1396fb5-562a-4e68-82ee-7f83e40dc3a8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "11dd795e-4a48-418a-a0ad-d2bdc75466c7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "651", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a1396fb5-562a-4e68-82ee-7f83e40dc3a8", + "request-id" : "11dd795e-4a48-418a-a0ad-d2bdc75466c7", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:05 GMT", + "Date" : "Thu, 27 May 2021 21:11:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a1396fb5-562a-4e68-82ee-7f83e40dc3a8", - "elapsed-time" : "37", + "client-request-id" : "11dd795e-4a48-418a-a0ad-d2bdc75466c7", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "651", "Body" : "{\"value\":[{\"key\":\"71\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"72\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"73\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"74\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"75\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"76\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"77\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"78\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"79\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"80\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "a1396fb5-562a-4e68-82ee-7f83e40dc3a8", + "x-ms-client-request-id" : "11dd795e-4a48-418a-a0ad-d2bdc75466c7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8644af6f-1f49-4268-972f-a2e75241bfa1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4b59f7b6-cc9c-4b37-9687-92de9cc438b9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "651", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8644af6f-1f49-4268-972f-a2e75241bfa1", + "request-id" : "4b59f7b6-cc9c-4b37-9687-92de9cc438b9", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:05 GMT", + "Date" : "Thu, 27 May 2021 21:11:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8644af6f-1f49-4268-972f-a2e75241bfa1", - "elapsed-time" : "42", + "client-request-id" : "4b59f7b6-cc9c-4b37-9687-92de9cc438b9", + "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "651", "Body" : "{\"value\":[{\"key\":\"81\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"82\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"83\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"84\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"85\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"86\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"87\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"88\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"89\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"90\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "8644af6f-1f49-4268-972f-a2e75241bfa1", + "x-ms-client-request-id" : "4b59f7b6-cc9c-4b37-9687-92de9cc438b9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6edb9ad4-45bc-4a89-8a51-0e3136fca928", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b6bab67e-0ffc-4bd0-8ad2-5cefd12a9ed3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "652", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6edb9ad4-45bc-4a89-8a51-0e3136fca928", + "request-id" : "b6bab67e-0ffc-4bd0-8ad2-5cefd12a9ed3", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:06 GMT", + "Date" : "Thu, 27 May 2021 21:11:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6edb9ad4-45bc-4a89-8a51-0e3136fca928", - "elapsed-time" : "34", + "client-request-id" : "b6bab67e-0ffc-4bd0-8ad2-5cefd12a9ed3", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "652", "Body" : "{\"value\":[{\"key\":\"91\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"92\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"93\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"94\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"95\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"96\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"97\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"98\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"99\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"100\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "6edb9ad4-45bc-4a89-8a51-0e3136fca928", + "x-ms-client-request-id" : "b6bab67e-0ffc-4bd0-8ad2-5cefd12a9ed3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ded717da-b186-468b-a065-0e4620638c91", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e8bc3c95-10e7-4dfb-b20a-147f1471b46e", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ded717da-b186-468b-a065-0e4620638c91", + "request-id" : "e8bc3c95-10e7-4dfb-b20a-147f1471b46e", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:05 GMT", + "Date" : "Thu, 27 May 2021 21:11:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ded717da-b186-468b-a065-0e4620638c91", - "elapsed-time" : "37", + "client-request-id" : "e8bc3c95-10e7-4dfb-b20a-147f1471b46e", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"101\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"102\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"103\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"104\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"105\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"106\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"107\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"108\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"109\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"110\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "ded717da-b186-468b-a065-0e4620638c91", + "x-ms-client-request-id" : "e8bc3c95-10e7-4dfb-b20a-147f1471b46e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3dfee059-bfcd-4b44-bbec-6ab4394ee963", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9b6bc99b-9332-40d0-ba9e-2f6e6ff39b27", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3dfee059-bfcd-4b44-bbec-6ab4394ee963", + "request-id" : "9b6bc99b-9332-40d0-ba9e-2f6e6ff39b27", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:06 GMT", + "Date" : "Thu, 27 May 2021 21:11:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3dfee059-bfcd-4b44-bbec-6ab4394ee963", - "elapsed-time" : "43", + "client-request-id" : "9b6bc99b-9332-40d0-ba9e-2f6e6ff39b27", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"111\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"112\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"113\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"114\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"115\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"116\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"117\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"118\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"119\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"120\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "3dfee059-bfcd-4b44-bbec-6ab4394ee963", + "x-ms-client-request-id" : "9b6bc99b-9332-40d0-ba9e-2f6e6ff39b27", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e60755ba-851e-4aa0-85d5-5d19c47c5adc", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c0b79627-a237-4643-bfba-15608007ddc1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e60755ba-851e-4aa0-85d5-5d19c47c5adc", + "request-id" : "c0b79627-a237-4643-bfba-15608007ddc1", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:05 GMT", + "Date" : "Thu, 27 May 2021 21:11:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e60755ba-851e-4aa0-85d5-5d19c47c5adc", - "elapsed-time" : "37", + "client-request-id" : "c0b79627-a237-4643-bfba-15608007ddc1", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"121\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"122\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"123\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"124\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"125\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"126\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"127\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"128\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"129\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"130\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "e60755ba-851e-4aa0-85d5-5d19c47c5adc", + "x-ms-client-request-id" : "c0b79627-a237-4643-bfba-15608007ddc1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a72855e-08f3-4100-96ec-43d3a0168d2a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5981d24a-1338-484b-a9c7-ebdd97a1e220", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6a72855e-08f3-4100-96ec-43d3a0168d2a", + "request-id" : "5981d24a-1338-484b-a9c7-ebdd97a1e220", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:06 GMT", + "Date" : "Thu, 27 May 2021 21:11:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6a72855e-08f3-4100-96ec-43d3a0168d2a", - "elapsed-time" : "38", + "client-request-id" : "5981d24a-1338-484b-a9c7-ebdd97a1e220", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"131\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"132\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"133\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"134\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"135\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"136\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"137\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"138\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"139\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"140\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "6a72855e-08f3-4100-96ec-43d3a0168d2a", + "x-ms-client-request-id" : "5981d24a-1338-484b-a9c7-ebdd97a1e220", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "55a127b6-1f96-4c9e-ac3a-23c2828b96d1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6c9d3df5-da72-4a1a-b06d-4d1f35af83c1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "55a127b6-1f96-4c9e-ac3a-23c2828b96d1", + "request-id" : "6c9d3df5-da72-4a1a-b06d-4d1f35af83c1", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:06 GMT", + "Date" : "Thu, 27 May 2021 21:11:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "55a127b6-1f96-4c9e-ac3a-23c2828b96d1", - "elapsed-time" : "34", + "client-request-id" : "6c9d3df5-da72-4a1a-b06d-4d1f35af83c1", + "elapsed-time" : "62", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"141\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"142\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"143\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"144\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"145\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"146\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"147\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"148\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"149\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"150\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "55a127b6-1f96-4c9e-ac3a-23c2828b96d1", + "x-ms-client-request-id" : "6c9d3df5-da72-4a1a-b06d-4d1f35af83c1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a1275af-8243-493a-87d3-62f63e014fcb", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d0bfc71a-b845-4735-800c-22d73c57706a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9a1275af-8243-493a-87d3-62f63e014fcb", + "request-id" : "d0bfc71a-b845-4735-800c-22d73c57706a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:06 GMT", + "Date" : "Thu, 27 May 2021 21:11:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9a1275af-8243-493a-87d3-62f63e014fcb", - "elapsed-time" : "45", + "client-request-id" : "d0bfc71a-b845-4735-800c-22d73c57706a", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"151\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"152\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"153\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"154\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"155\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"156\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"157\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"158\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"159\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"160\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "9a1275af-8243-493a-87d3-62f63e014fcb", + "x-ms-client-request-id" : "d0bfc71a-b845-4735-800c-22d73c57706a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca3d6bfd-f938-4140-a6f8-161506c9989b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9a5ca87c-67e5-4ca0-ae2d-7620ae0874d9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ca3d6bfd-f938-4140-a6f8-161506c9989b", + "request-id" : "9a5ca87c-67e5-4ca0-ae2d-7620ae0874d9", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:06 GMT", + "Date" : "Thu, 27 May 2021 21:11:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ca3d6bfd-f938-4140-a6f8-161506c9989b", - "elapsed-time" : "37", + "client-request-id" : "9a5ca87c-67e5-4ca0-ae2d-7620ae0874d9", + "elapsed-time" : "43", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"161\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"162\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"163\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"164\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"165\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"166\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"167\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"168\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"169\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"170\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "ca3d6bfd-f938-4140-a6f8-161506c9989b", + "x-ms-client-request-id" : "9a5ca87c-67e5-4ca0-ae2d-7620ae0874d9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b50cda8-06c0-4055-a052-92029d96106f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "03d1ee8f-d111-415b-8275-79979f6515fc", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7b50cda8-06c0-4055-a052-92029d96106f", + "request-id" : "03d1ee8f-d111-415b-8275-79979f6515fc", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:06 GMT", + "Date" : "Thu, 27 May 2021 21:11:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7b50cda8-06c0-4055-a052-92029d96106f", - "elapsed-time" : "38", + "client-request-id" : "03d1ee8f-d111-415b-8275-79979f6515fc", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"171\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"172\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"173\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"174\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"175\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"176\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"177\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"178\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"179\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"180\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "7b50cda8-06c0-4055-a052-92029d96106f", + "x-ms-client-request-id" : "03d1ee8f-d111-415b-8275-79979f6515fc", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d6de845f-a955-4610-9047-86dab925097c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "caaa4edd-15f0-44e2-82be-dd60782e74d2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d6de845f-a955-4610-9047-86dab925097c", + "request-id" : "caaa4edd-15f0-44e2-82be-dd60782e74d2", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:06 GMT", + "Date" : "Thu, 27 May 2021 21:11:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d6de845f-a955-4610-9047-86dab925097c", - "elapsed-time" : "33", + "client-request-id" : "caaa4edd-15f0-44e2-82be-dd60782e74d2", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"181\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"182\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"183\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"184\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"185\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"186\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"187\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"188\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"189\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"190\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "d6de845f-a955-4610-9047-86dab925097c", + "x-ms-client-request-id" : "caaa4edd-15f0-44e2-82be-dd60782e74d2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ced64c85-1b76-4ec8-9112-27492b8caedd", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "802c28d8-f22d-4e01-bbd1-7c3789266e67", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ced64c85-1b76-4ec8-9112-27492b8caedd", + "request-id" : "802c28d8-f22d-4e01-bbd1-7c3789266e67", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:06 GMT", + "Date" : "Thu, 27 May 2021 21:11:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ced64c85-1b76-4ec8-9112-27492b8caedd", - "elapsed-time" : "42", + "client-request-id" : "802c28d8-f22d-4e01-bbd1-7c3789266e67", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"191\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"192\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"193\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"194\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"195\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"196\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"197\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"198\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"199\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"200\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "ced64c85-1b76-4ec8-9112-27492b8caedd", + "x-ms-client-request-id" : "802c28d8-f22d-4e01-bbd1-7c3789266e67", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1946439f-ea71-4616-8f7e-edc68703effe", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3b9ebacc-30f3-49dc-be9c-a8d511517276", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1946439f-ea71-4616-8f7e-edc68703effe", + "request-id" : "3b9ebacc-30f3-49dc-be9c-a8d511517276", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:06 GMT", + "Date" : "Thu, 27 May 2021 21:11:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1946439f-ea71-4616-8f7e-edc68703effe", - "elapsed-time" : "39", + "client-request-id" : "3b9ebacc-30f3-49dc-be9c-a8d511517276", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"201\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"202\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"203\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"204\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"205\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"206\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"207\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"208\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"209\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"210\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "1946439f-ea71-4616-8f7e-edc68703effe", + "x-ms-client-request-id" : "3b9ebacc-30f3-49dc-be9c-a8d511517276", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5f0d5224-8ee9-439c-84c6-1a549dabbca0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "734deaa8-f8b8-4207-8217-8aa49bffa098", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5f0d5224-8ee9-439c-84c6-1a549dabbca0", + "request-id" : "734deaa8-f8b8-4207-8217-8aa49bffa098", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:06 GMT", + "Date" : "Thu, 27 May 2021 21:11:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5f0d5224-8ee9-439c-84c6-1a549dabbca0", - "elapsed-time" : "32", + "client-request-id" : "734deaa8-f8b8-4207-8217-8aa49bffa098", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"211\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"212\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"213\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"214\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"215\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"216\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"217\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"218\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"219\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"220\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "5f0d5224-8ee9-439c-84c6-1a549dabbca0", + "x-ms-client-request-id" : "734deaa8-f8b8-4207-8217-8aa49bffa098", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c27d288-cb5f-43ae-8f5c-20caabf263bc", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f5179c7c-a7e9-436f-9a3e-77aa195bebdd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0c27d288-cb5f-43ae-8f5c-20caabf263bc", + "request-id" : "f5179c7c-a7e9-436f-9a3e-77aa195bebdd", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:06 GMT", + "Date" : "Thu, 27 May 2021 21:11:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0c27d288-cb5f-43ae-8f5c-20caabf263bc", - "elapsed-time" : "32", + "client-request-id" : "f5179c7c-a7e9-436f-9a3e-77aa195bebdd", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"221\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"222\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"223\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"224\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"225\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"226\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"227\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"228\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"229\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"230\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "0c27d288-cb5f-43ae-8f5c-20caabf263bc", + "x-ms-client-request-id" : "f5179c7c-a7e9-436f-9a3e-77aa195bebdd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ec9964b1-1f22-45ea-bbd9-ce63b42088b0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "dc9506d2-ebb7-452f-8fba-ba5fef8faece", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ec9964b1-1f22-45ea-bbd9-ce63b42088b0", + "request-id" : "dc9506d2-ebb7-452f-8fba-ba5fef8faece", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:06 GMT", + "Date" : "Thu, 27 May 2021 21:11:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ec9964b1-1f22-45ea-bbd9-ce63b42088b0", - "elapsed-time" : "40", + "client-request-id" : "dc9506d2-ebb7-452f-8fba-ba5fef8faece", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"231\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"232\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"233\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"234\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"235\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"236\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"237\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"238\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"239\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"240\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "ec9964b1-1f22-45ea-bbd9-ce63b42088b0", + "x-ms-client-request-id" : "dc9506d2-ebb7-452f-8fba-ba5fef8faece", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2cde75ab-2972-462f-b811-6c047118c9b1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c402f11e-3b6c-4f3e-aa92-387d8b9edfea", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2cde75ab-2972-462f-b811-6c047118c9b1", + "request-id" : "c402f11e-3b6c-4f3e-aa92-387d8b9edfea", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:06 GMT", + "Date" : "Thu, 27 May 2021 21:11:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2cde75ab-2972-462f-b811-6c047118c9b1", - "elapsed-time" : "38", + "client-request-id" : "c402f11e-3b6c-4f3e-aa92-387d8b9edfea", + "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"241\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"242\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"243\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"244\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"245\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"246\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"247\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"248\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"249\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"250\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "2cde75ab-2972-462f-b811-6c047118c9b1", + "x-ms-client-request-id" : "c402f11e-3b6c-4f3e-aa92-387d8b9edfea", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b04b1f9d-38db-40d5-afe9-b098917be81f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "69c98f16-162b-4df4-bc7d-458f0ef36dff", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b04b1f9d-38db-40d5-afe9-b098917be81f", + "request-id" : "69c98f16-162b-4df4-bc7d-458f0ef36dff", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:07 GMT", + "Date" : "Thu, 27 May 2021 21:11:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b04b1f9d-38db-40d5-afe9-b098917be81f", - "elapsed-time" : "36", + "client-request-id" : "69c98f16-162b-4df4-bc7d-458f0ef36dff", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"251\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"252\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"253\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"254\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"255\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"256\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"257\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"258\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"259\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"260\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "b04b1f9d-38db-40d5-afe9-b098917be81f", + "x-ms-client-request-id" : "69c98f16-162b-4df4-bc7d-458f0ef36dff", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "fad4cedd-89f1-4d3a-ab29-4d9cd282448c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "68a69608-42c8-46d0-a334-76611e055861", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "fad4cedd-89f1-4d3a-ab29-4d9cd282448c", + "request-id" : "68a69608-42c8-46d0-a334-76611e055861", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:06 GMT", + "Date" : "Thu, 27 May 2021 21:11:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "fad4cedd-89f1-4d3a-ab29-4d9cd282448c", - "elapsed-time" : "41", + "client-request-id" : "68a69608-42c8-46d0-a334-76611e055861", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"261\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"262\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"263\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"264\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"265\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"266\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"267\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"268\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"269\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"270\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "fad4cedd-89f1-4d3a-ab29-4d9cd282448c", + "x-ms-client-request-id" : "68a69608-42c8-46d0-a334-76611e055861", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2609237b-07e3-4cde-b36b-fb96b7a24d86", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "473d0a05-c0fd-4327-b57e-fb4768ccfe68", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2609237b-07e3-4cde-b36b-fb96b7a24d86", + "request-id" : "473d0a05-c0fd-4327-b57e-fb4768ccfe68", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:07 GMT", + "Date" : "Thu, 27 May 2021 21:11:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2609237b-07e3-4cde-b36b-fb96b7a24d86", - "elapsed-time" : "51", + "client-request-id" : "473d0a05-c0fd-4327-b57e-fb4768ccfe68", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"271\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"272\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"273\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"274\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"275\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"276\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"277\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"278\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"279\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"280\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "2609237b-07e3-4cde-b36b-fb96b7a24d86", + "x-ms-client-request-id" : "473d0a05-c0fd-4327-b57e-fb4768ccfe68", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "71d323d6-1785-4160-b053-cb8a179b6bb8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3d238276-30a7-44bf-a333-1804e1eeca91", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "71d323d6-1785-4160-b053-cb8a179b6bb8", + "request-id" : "3d238276-30a7-44bf-a333-1804e1eeca91", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:07 GMT", + "Date" : "Thu, 27 May 2021 21:11:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "71d323d6-1785-4160-b053-cb8a179b6bb8", - "elapsed-time" : "45", + "client-request-id" : "3d238276-30a7-44bf-a333-1804e1eeca91", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"281\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"282\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"283\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"284\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"285\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"286\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"287\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"288\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"289\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"290\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "71d323d6-1785-4160-b053-cb8a179b6bb8", + "x-ms-client-request-id" : "3d238276-30a7-44bf-a333-1804e1eeca91", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f4bf66c8-4a35-452d-ab97-7283fd73dd50", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "482f683a-2419-4419-800e-3f37357fbeee", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f4bf66c8-4a35-452d-ab97-7283fd73dd50", + "request-id" : "482f683a-2419-4419-800e-3f37357fbeee", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:07 GMT", + "Date" : "Thu, 27 May 2021 21:11:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f4bf66c8-4a35-452d-ab97-7283fd73dd50", - "elapsed-time" : "38", + "client-request-id" : "482f683a-2419-4419-800e-3f37357fbeee", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"291\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"292\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"293\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"294\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"295\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"296\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"297\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"298\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"299\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"300\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "f4bf66c8-4a35-452d-ab97-7283fd73dd50", + "x-ms-client-request-id" : "482f683a-2419-4419-800e-3f37357fbeee", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8e04461-a0fa-45d5-87b1-ee6d155858a7", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8af72a22-7581-42ce-aaf5-c26c28feb4c7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e8e04461-a0fa-45d5-87b1-ee6d155858a7", + "request-id" : "8af72a22-7581-42ce-aaf5-c26c28feb4c7", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:07 GMT", + "Date" : "Thu, 27 May 2021 21:11:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e8e04461-a0fa-45d5-87b1-ee6d155858a7", - "elapsed-time" : "73", + "client-request-id" : "8af72a22-7581-42ce-aaf5-c26c28feb4c7", + "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"301\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"302\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"303\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"304\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"305\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"306\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"307\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"308\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"309\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"310\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "e8e04461-a0fa-45d5-87b1-ee6d155858a7", + "x-ms-client-request-id" : "8af72a22-7581-42ce-aaf5-c26c28feb4c7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c65295dc-3bed-410d-830a-844eb9f9449c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "28d8bb5e-941c-4d16-a1f7-9624897d9d52", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c65295dc-3bed-410d-830a-844eb9f9449c", + "request-id" : "28d8bb5e-941c-4d16-a1f7-9624897d9d52", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:07 GMT", + "Date" : "Thu, 27 May 2021 21:11:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c65295dc-3bed-410d-830a-844eb9f9449c", - "elapsed-time" : "43", + "client-request-id" : "28d8bb5e-941c-4d16-a1f7-9624897d9d52", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"311\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"312\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"313\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"314\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"315\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"316\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"317\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"318\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"319\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"320\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "c65295dc-3bed-410d-830a-844eb9f9449c", + "x-ms-client-request-id" : "28d8bb5e-941c-4d16-a1f7-9624897d9d52", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0b8e84e-3591-436f-b59a-214cf49b5740", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "cd6472ea-c9e5-4320-bafc-72a40eb78fd4", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d0b8e84e-3591-436f-b59a-214cf49b5740", + "request-id" : "cd6472ea-c9e5-4320-bafc-72a40eb78fd4", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:07 GMT", + "Date" : "Thu, 27 May 2021 21:11:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d0b8e84e-3591-436f-b59a-214cf49b5740", - "elapsed-time" : "48", + "client-request-id" : "cd6472ea-c9e5-4320-bafc-72a40eb78fd4", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"321\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"322\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"323\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"324\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"325\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"326\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"327\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"328\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"329\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"330\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "d0b8e84e-3591-436f-b59a-214cf49b5740", + "x-ms-client-request-id" : "cd6472ea-c9e5-4320-bafc-72a40eb78fd4", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3ef623c3-a8c0-4ebe-96e9-ca8489234657", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "66f8725c-05df-4ff6-9eb4-3c2ee029ee6a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3ef623c3-a8c0-4ebe-96e9-ca8489234657", + "request-id" : "66f8725c-05df-4ff6-9eb4-3c2ee029ee6a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:07 GMT", + "Date" : "Thu, 27 May 2021 21:11:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3ef623c3-a8c0-4ebe-96e9-ca8489234657", - "elapsed-time" : "45", + "client-request-id" : "66f8725c-05df-4ff6-9eb4-3c2ee029ee6a", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"331\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"332\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"333\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"334\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"335\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"336\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"337\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"338\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"339\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"340\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "3ef623c3-a8c0-4ebe-96e9-ca8489234657", + "x-ms-client-request-id" : "66f8725c-05df-4ff6-9eb4-3c2ee029ee6a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "dbde153c-624e-462e-af00-9069dcdf9027", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9e5a470f-51e0-4dc8-9609-e6169e9501cc", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "dbde153c-624e-462e-af00-9069dcdf9027", + "request-id" : "9e5a470f-51e0-4dc8-9609-e6169e9501cc", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:07 GMT", + "Date" : "Thu, 27 May 2021 21:11:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "dbde153c-624e-462e-af00-9069dcdf9027", - "elapsed-time" : "35", + "client-request-id" : "9e5a470f-51e0-4dc8-9609-e6169e9501cc", + "elapsed-time" : "37", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"341\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"342\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"343\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"344\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"345\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"346\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"347\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"348\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"349\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"350\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "dbde153c-624e-462e-af00-9069dcdf9027", + "x-ms-client-request-id" : "9e5a470f-51e0-4dc8-9609-e6169e9501cc", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8a44c87-de8e-47f2-8254-fcf665bdf6a0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6d3dc948-c116-4802-9861-df67ff0f9ecc", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e8a44c87-de8e-47f2-8254-fcf665bdf6a0", + "request-id" : "6d3dc948-c116-4802-9861-df67ff0f9ecc", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:07 GMT", + "Date" : "Thu, 27 May 2021 21:11:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e8a44c87-de8e-47f2-8254-fcf665bdf6a0", - "elapsed-time" : "42", + "client-request-id" : "6d3dc948-c116-4802-9861-df67ff0f9ecc", + "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"351\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"352\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"353\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"354\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"355\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"356\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"357\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"358\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"359\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"360\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "e8a44c87-de8e-47f2-8254-fcf665bdf6a0", + "x-ms-client-request-id" : "6d3dc948-c116-4802-9861-df67ff0f9ecc", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e1e4311-2963-41c8-94b8-84d7d64957ea", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "31b6b2dd-04be-4ea9-8df6-e170e84e8cf7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0e1e4311-2963-41c8-94b8-84d7d64957ea", + "request-id" : "31b6b2dd-04be-4ea9-8df6-e170e84e8cf7", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:07 GMT", + "Date" : "Thu, 27 May 2021 21:11:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0e1e4311-2963-41c8-94b8-84d7d64957ea", - "elapsed-time" : "37", + "client-request-id" : "31b6b2dd-04be-4ea9-8df6-e170e84e8cf7", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"361\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"362\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"363\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"364\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"365\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"366\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"367\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"368\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"369\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"370\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "0e1e4311-2963-41c8-94b8-84d7d64957ea", + "x-ms-client-request-id" : "31b6b2dd-04be-4ea9-8df6-e170e84e8cf7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f105611b-c50f-4b44-b5af-51ec9153f152", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "86a08592-f4ba-4701-9e7a-fcd4b3bdc584", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f105611b-c50f-4b44-b5af-51ec9153f152", + "request-id" : "86a08592-f4ba-4701-9e7a-fcd4b3bdc584", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:07 GMT", + "Date" : "Thu, 27 May 2021 21:11:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f105611b-c50f-4b44-b5af-51ec9153f152", - "elapsed-time" : "41", + "client-request-id" : "86a08592-f4ba-4701-9e7a-fcd4b3bdc584", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"371\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"372\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"373\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"374\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"375\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"376\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"377\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"378\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"379\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"380\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "f105611b-c50f-4b44-b5af-51ec9153f152", + "x-ms-client-request-id" : "86a08592-f4ba-4701-9e7a-fcd4b3bdc584", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "34c60b96-e619-4875-925c-1d42a389942d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "55435a5b-7a35-4422-80e6-7cfe4282bbfd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "34c60b96-e619-4875-925c-1d42a389942d", + "request-id" : "55435a5b-7a35-4422-80e6-7cfe4282bbfd", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:07 GMT", + "Date" : "Thu, 27 May 2021 21:11:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "34c60b96-e619-4875-925c-1d42a389942d", - "elapsed-time" : "38", + "client-request-id" : "55435a5b-7a35-4422-80e6-7cfe4282bbfd", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"381\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"382\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"383\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"384\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"385\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"386\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"387\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"388\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"389\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"390\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "34c60b96-e619-4875-925c-1d42a389942d", + "x-ms-client-request-id" : "55435a5b-7a35-4422-80e6-7cfe4282bbfd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "19fe0f99-1011-4d50-bd4b-d72bf7e82739", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "60380165-1eaf-4753-ab5f-37a61258aa1c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "19fe0f99-1011-4d50-bd4b-d72bf7e82739", + "request-id" : "60380165-1eaf-4753-ab5f-37a61258aa1c", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:08 GMT", + "Date" : "Thu, 27 May 2021 21:11:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "19fe0f99-1011-4d50-bd4b-d72bf7e82739", - "elapsed-time" : "39", + "client-request-id" : "60380165-1eaf-4753-ab5f-37a61258aa1c", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"391\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"392\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"393\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"394\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"395\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"396\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"397\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"398\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"399\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"400\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "19fe0f99-1011-4d50-bd4b-d72bf7e82739", + "x-ms-client-request-id" : "60380165-1eaf-4753-ab5f-37a61258aa1c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "eb573057-9d09-4890-9ebd-7648b9eb4dfd", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "298d030b-d232-4880-827a-d7275200d4a5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "eb573057-9d09-4890-9ebd-7648b9eb4dfd", + "request-id" : "298d030b-d232-4880-827a-d7275200d4a5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:07 GMT", + "Date" : "Thu, 27 May 2021 21:11:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "eb573057-9d09-4890-9ebd-7648b9eb4dfd", - "elapsed-time" : "40", + "client-request-id" : "298d030b-d232-4880-827a-d7275200d4a5", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"401\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"402\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"403\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"404\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"405\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"406\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"407\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"408\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"409\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"410\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "eb573057-9d09-4890-9ebd-7648b9eb4dfd", + "x-ms-client-request-id" : "298d030b-d232-4880-827a-d7275200d4a5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "fe521090-0f8c-4a4e-85c6-f290bcdc4e40", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "96377e10-9e14-4c85-97ab-2b50ec430ac3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "fe521090-0f8c-4a4e-85c6-f290bcdc4e40", + "request-id" : "96377e10-9e14-4c85-97ab-2b50ec430ac3", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:08 GMT", + "Date" : "Thu, 27 May 2021 21:11:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "fe521090-0f8c-4a4e-85c6-f290bcdc4e40", - "elapsed-time" : "39", + "client-request-id" : "96377e10-9e14-4c85-97ab-2b50ec430ac3", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"411\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"412\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"413\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"414\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"415\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"416\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"417\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"418\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"419\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"420\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "fe521090-0f8c-4a4e-85c6-f290bcdc4e40", + "x-ms-client-request-id" : "96377e10-9e14-4c85-97ab-2b50ec430ac3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "db206558-60fa-4c8f-9c83-2c685f5f44e9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "58f8c71a-a910-41d0-bf62-791ee5b03373", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "db206558-60fa-4c8f-9c83-2c685f5f44e9", + "request-id" : "58f8c71a-a910-41d0-bf62-791ee5b03373", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:08 GMT", + "Date" : "Thu, 27 May 2021 21:11:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "db206558-60fa-4c8f-9c83-2c685f5f44e9", - "elapsed-time" : "33", + "client-request-id" : "58f8c71a-a910-41d0-bf62-791ee5b03373", + "elapsed-time" : "40", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"421\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"422\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"423\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"424\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"425\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"426\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"427\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"428\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"429\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"430\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "db206558-60fa-4c8f-9c83-2c685f5f44e9", + "x-ms-client-request-id" : "58f8c71a-a910-41d0-bf62-791ee5b03373", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e07885e-9dce-4922-afa9-70706fdc7155", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "84e58317-72bf-4c0a-80c8-17226e2b0480", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4e07885e-9dce-4922-afa9-70706fdc7155", + "request-id" : "84e58317-72bf-4c0a-80c8-17226e2b0480", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:08 GMT", + "Date" : "Thu, 27 May 2021 21:11:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4e07885e-9dce-4922-afa9-70706fdc7155", - "elapsed-time" : "36", + "client-request-id" : "84e58317-72bf-4c0a-80c8-17226e2b0480", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"431\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"432\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"433\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"434\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"435\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"436\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"437\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"438\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"439\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"440\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "4e07885e-9dce-4922-afa9-70706fdc7155", + "x-ms-client-request-id" : "84e58317-72bf-4c0a-80c8-17226e2b0480", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1672c963-34ce-4b30-94ed-3ba7b9c45066", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f487a0aa-17d2-456d-91ba-82b62ea80144", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1672c963-34ce-4b30-94ed-3ba7b9c45066", + "request-id" : "f487a0aa-17d2-456d-91ba-82b62ea80144", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:08 GMT", + "Date" : "Thu, 27 May 2021 21:11:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1672c963-34ce-4b30-94ed-3ba7b9c45066", - "elapsed-time" : "36", + "client-request-id" : "f487a0aa-17d2-456d-91ba-82b62ea80144", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"441\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"442\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"443\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"444\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"445\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"446\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"447\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"448\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"449\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"450\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "1672c963-34ce-4b30-94ed-3ba7b9c45066", + "x-ms-client-request-id" : "f487a0aa-17d2-456d-91ba-82b62ea80144", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d5cba6ad-0ca9-4be3-9138-08d15612fa4c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3757a852-4dd5-4ab5-9bc8-5baad6cab36c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d5cba6ad-0ca9-4be3-9138-08d15612fa4c", + "request-id" : "3757a852-4dd5-4ab5-9bc8-5baad6cab36c", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:08 GMT", + "Date" : "Thu, 27 May 2021 21:11:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d5cba6ad-0ca9-4be3-9138-08d15612fa4c", - "elapsed-time" : "45", + "client-request-id" : "3757a852-4dd5-4ab5-9bc8-5baad6cab36c", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"451\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"452\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"453\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"454\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"455\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"456\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"457\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"458\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"459\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"460\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "d5cba6ad-0ca9-4be3-9138-08d15612fa4c", + "x-ms-client-request-id" : "3757a852-4dd5-4ab5-9bc8-5baad6cab36c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "882f6bf0-a3fe-4fa6-ba82-0f6cecf9e45e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3fcc7a02-2379-4f81-82d8-88010147cbb9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "882f6bf0-a3fe-4fa6-ba82-0f6cecf9e45e", + "request-id" : "3fcc7a02-2379-4f81-82d8-88010147cbb9", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:08 GMT", + "Date" : "Thu, 27 May 2021 21:11:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "882f6bf0-a3fe-4fa6-ba82-0f6cecf9e45e", - "elapsed-time" : "37", + "client-request-id" : "3fcc7a02-2379-4f81-82d8-88010147cbb9", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"461\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"462\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"463\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"464\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"465\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"466\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"467\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"468\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"469\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"470\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "882f6bf0-a3fe-4fa6-ba82-0f6cecf9e45e", + "x-ms-client-request-id" : "3fcc7a02-2379-4f81-82d8-88010147cbb9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a7086607-c689-45f6-86ec-344cb4407cac", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9967143c-e678-43a9-8fad-91c1e559f84c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a7086607-c689-45f6-86ec-344cb4407cac", + "request-id" : "9967143c-e678-43a9-8fad-91c1e559f84c", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:08 GMT", + "Date" : "Thu, 27 May 2021 21:11:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a7086607-c689-45f6-86ec-344cb4407cac", - "elapsed-time" : "37", + "client-request-id" : "9967143c-e678-43a9-8fad-91c1e559f84c", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"471\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"472\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"473\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"474\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"475\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"476\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"477\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"478\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"479\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"480\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "a7086607-c689-45f6-86ec-344cb4407cac", + "x-ms-client-request-id" : "9967143c-e678-43a9-8fad-91c1e559f84c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8dfe4c8e-ad44-4a4d-b1c0-e619b5847b4f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "50239a91-26a8-4a0d-92c0-8c7a3a7f90b6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8dfe4c8e-ad44-4a4d-b1c0-e619b5847b4f", + "request-id" : "50239a91-26a8-4a0d-92c0-8c7a3a7f90b6", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:08 GMT", + "Date" : "Thu, 27 May 2021 21:11:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8dfe4c8e-ad44-4a4d-b1c0-e619b5847b4f", - "elapsed-time" : "53", + "client-request-id" : "50239a91-26a8-4a0d-92c0-8c7a3a7f90b6", + "elapsed-time" : "38", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"481\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"482\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"483\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"484\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"485\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"486\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"487\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"488\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"489\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"490\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "8dfe4c8e-ad44-4a4d-b1c0-e619b5847b4f", + "x-ms-client-request-id" : "50239a91-26a8-4a0d-92c0-8c7a3a7f90b6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2887aa10-73f1-473f-b377-d6e4b9190c48", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5d6256ad-407e-408b-b029-0564d6ef360f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2887aa10-73f1-473f-b377-d6e4b9190c48", + "request-id" : "5d6256ad-407e-408b-b029-0564d6ef360f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:08 GMT", + "Date" : "Thu, 27 May 2021 21:11:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2887aa10-73f1-473f-b377-d6e4b9190c48", - "elapsed-time" : "40", + "client-request-id" : "5d6256ad-407e-408b-b029-0564d6ef360f", + "elapsed-time" : "64", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"491\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"492\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"493\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"494\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"495\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"496\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"497\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"498\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"499\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"500\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "2887aa10-73f1-473f-b377-d6e4b9190c48", + "x-ms-client-request-id" : "5d6256ad-407e-408b-b029-0564d6ef360f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d31a9681-79b4-4083-b66e-89be5976d130", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3d3fae18-1fe8-485c-ab7d-d060b675b9b9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d31a9681-79b4-4083-b66e-89be5976d130", + "request-id" : "3d3fae18-1fe8-485c-ab7d-d060b675b9b9", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:08 GMT", + "Date" : "Thu, 27 May 2021 21:11:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d31a9681-79b4-4083-b66e-89be5976d130", - "elapsed-time" : "37", + "client-request-id" : "3d3fae18-1fe8-485c-ab7d-d060b675b9b9", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"501\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"502\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"503\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"504\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"505\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"506\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"507\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"508\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"509\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"510\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "d31a9681-79b4-4083-b66e-89be5976d130", + "x-ms-client-request-id" : "3d3fae18-1fe8-485c-ab7d-d060b675b9b9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a672b1fe-07dc-4987-8c54-657f14555042", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9a891db4-3459-4e87-8ae4-3807f33c8d5f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a672b1fe-07dc-4987-8c54-657f14555042", + "request-id" : "9a891db4-3459-4e87-8ae4-3807f33c8d5f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:08 GMT", + "Date" : "Thu, 27 May 2021 21:11:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a672b1fe-07dc-4987-8c54-657f14555042", - "elapsed-time" : "35", + "client-request-id" : "9a891db4-3459-4e87-8ae4-3807f33c8d5f", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"511\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"512\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"513\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"514\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"515\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"516\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"517\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"518\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"519\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"520\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "a672b1fe-07dc-4987-8c54-657f14555042", + "x-ms-client-request-id" : "9a891db4-3459-4e87-8ae4-3807f33c8d5f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d4740bd3-0e92-40ce-a292-f7c56f2ee4ae", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "14a01cca-52d0-4df2-8e1d-32d0880c4d5f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d4740bd3-0e92-40ce-a292-f7c56f2ee4ae", + "request-id" : "14a01cca-52d0-4df2-8e1d-32d0880c4d5f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:08 GMT", + "Date" : "Thu, 27 May 2021 21:11:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d4740bd3-0e92-40ce-a292-f7c56f2ee4ae", - "elapsed-time" : "83", + "client-request-id" : "14a01cca-52d0-4df2-8e1d-32d0880c4d5f", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"521\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"522\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"523\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"524\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"525\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"526\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"527\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"528\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"529\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"530\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "d4740bd3-0e92-40ce-a292-f7c56f2ee4ae", + "x-ms-client-request-id" : "14a01cca-52d0-4df2-8e1d-32d0880c4d5f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6332bca1-193c-4340-bf41-783da857d738", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2d9bc959-160b-4fbf-9097-181aaaf756b1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6332bca1-193c-4340-bf41-783da857d738", + "request-id" : "2d9bc959-160b-4fbf-9097-181aaaf756b1", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:09 GMT", + "Date" : "Thu, 27 May 2021 21:11:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6332bca1-193c-4340-bf41-783da857d738", - "elapsed-time" : "51", + "client-request-id" : "2d9bc959-160b-4fbf-9097-181aaaf756b1", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"531\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"532\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"533\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"534\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"535\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"536\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"537\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"538\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"539\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"540\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "6332bca1-193c-4340-bf41-783da857d738", + "x-ms-client-request-id" : "2d9bc959-160b-4fbf-9097-181aaaf756b1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e598d08e-962c-41ed-8ce2-82b901e16b14", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fca5461b-fed1-45cc-b5a3-c5b951a977bd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e598d08e-962c-41ed-8ce2-82b901e16b14", + "request-id" : "fca5461b-fed1-45cc-b5a3-c5b951a977bd", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:08 GMT", + "Date" : "Thu, 27 May 2021 21:11:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e598d08e-962c-41ed-8ce2-82b901e16b14", - "elapsed-time" : "35", + "client-request-id" : "fca5461b-fed1-45cc-b5a3-c5b951a977bd", + "elapsed-time" : "42", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"541\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"542\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"543\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"544\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"545\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"546\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"547\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"548\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"549\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"550\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "e598d08e-962c-41ed-8ce2-82b901e16b14", + "x-ms-client-request-id" : "fca5461b-fed1-45cc-b5a3-c5b951a977bd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "16da47fc-87c5-49db-a95d-d26e7149f0ec", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4b31bb7b-806c-49df-b7be-cb3ff50edf5a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "16da47fc-87c5-49db-a95d-d26e7149f0ec", + "request-id" : "4b31bb7b-806c-49df-b7be-cb3ff50edf5a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:09 GMT", + "Date" : "Thu, 27 May 2021 21:11:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "16da47fc-87c5-49db-a95d-d26e7149f0ec", - "elapsed-time" : "39", + "client-request-id" : "4b31bb7b-806c-49df-b7be-cb3ff50edf5a", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"551\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"552\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"553\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"554\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"555\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"556\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"557\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"558\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"559\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"560\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "16da47fc-87c5-49db-a95d-d26e7149f0ec", + "x-ms-client-request-id" : "4b31bb7b-806c-49df-b7be-cb3ff50edf5a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4cdf08c0-bddf-4bb6-817a-f614778848a5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d5be347e-8b5e-4b53-95ca-4bb86ed7e97a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4cdf08c0-bddf-4bb6-817a-f614778848a5", + "request-id" : "d5be347e-8b5e-4b53-95ca-4bb86ed7e97a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:09 GMT", + "Date" : "Thu, 27 May 2021 21:11:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4cdf08c0-bddf-4bb6-817a-f614778848a5", - "elapsed-time" : "36", + "client-request-id" : "d5be347e-8b5e-4b53-95ca-4bb86ed7e97a", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"561\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"562\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"563\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"564\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"565\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"566\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"567\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"568\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"569\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"570\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "4cdf08c0-bddf-4bb6-817a-f614778848a5", + "x-ms-client-request-id" : "d5be347e-8b5e-4b53-95ca-4bb86ed7e97a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d88ada96-9ca9-48ab-8880-0d1cbb75ee43", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2673fe9e-8272-4c11-b7d1-3026e95edd1c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d88ada96-9ca9-48ab-8880-0d1cbb75ee43", + "request-id" : "2673fe9e-8272-4c11-b7d1-3026e95edd1c", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:09 GMT", + "Date" : "Thu, 27 May 2021 21:11:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d88ada96-9ca9-48ab-8880-0d1cbb75ee43", - "elapsed-time" : "46", + "client-request-id" : "2673fe9e-8272-4c11-b7d1-3026e95edd1c", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"571\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"572\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"573\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"574\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"575\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"576\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"577\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"578\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"579\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"580\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "d88ada96-9ca9-48ab-8880-0d1cbb75ee43", + "x-ms-client-request-id" : "2673fe9e-8272-4c11-b7d1-3026e95edd1c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d341febc-9fe6-41b3-812e-61e7f89b56af", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "01f3727c-c988-4430-a558-36c4b644eb66", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d341febc-9fe6-41b3-812e-61e7f89b56af", + "request-id" : "01f3727c-c988-4430-a558-36c4b644eb66", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:09 GMT", + "Date" : "Thu, 27 May 2021 21:11:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d341febc-9fe6-41b3-812e-61e7f89b56af", - "elapsed-time" : "43", + "client-request-id" : "01f3727c-c988-4430-a558-36c4b644eb66", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"581\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"582\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"583\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"584\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"585\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"586\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"587\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"588\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"589\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"590\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "d341febc-9fe6-41b3-812e-61e7f89b56af", + "x-ms-client-request-id" : "01f3727c-c988-4430-a558-36c4b644eb66", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e740edee-b6c2-4351-8ab4-fd284ed91cb3", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "90284b88-1c33-4bf0-a3ad-baadd90f5c2d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e740edee-b6c2-4351-8ab4-fd284ed91cb3", + "request-id" : "90284b88-1c33-4bf0-a3ad-baadd90f5c2d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:09 GMT", + "Date" : "Thu, 27 May 2021 21:11:24 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e740edee-b6c2-4351-8ab4-fd284ed91cb3", - "elapsed-time" : "54", + "client-request-id" : "90284b88-1c33-4bf0-a3ad-baadd90f5c2d", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"591\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"592\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"593\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"594\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"595\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"596\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"597\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"598\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"599\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"600\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "e740edee-b6c2-4351-8ab4-fd284ed91cb3", + "x-ms-client-request-id" : "90284b88-1c33-4bf0-a3ad-baadd90f5c2d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "38168f74-9b6a-459a-88cd-4ba7b8c20f98", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "95f6b36b-8e3f-4ad5-b983-b1823c66a9f1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "38168f74-9b6a-459a-88cd-4ba7b8c20f98", + "request-id" : "95f6b36b-8e3f-4ad5-b983-b1823c66a9f1", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:09 GMT", + "Date" : "Thu, 27 May 2021 21:11:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "38168f74-9b6a-459a-88cd-4ba7b8c20f98", - "elapsed-time" : "39", + "client-request-id" : "95f6b36b-8e3f-4ad5-b983-b1823c66a9f1", + "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"601\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"602\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"603\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"604\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"605\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"606\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"607\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"608\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"609\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"610\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "38168f74-9b6a-459a-88cd-4ba7b8c20f98", + "x-ms-client-request-id" : "95f6b36b-8e3f-4ad5-b983-b1823c66a9f1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "363a6447-7c62-4de8-88ef-a74b08e7957c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "74a36ff0-061f-4553-8948-47ac50661e5b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "363a6447-7c62-4de8-88ef-a74b08e7957c", + "request-id" : "74a36ff0-061f-4553-8948-47ac50661e5b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:09 GMT", + "Date" : "Thu, 27 May 2021 21:11:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "363a6447-7c62-4de8-88ef-a74b08e7957c", - "elapsed-time" : "38", + "client-request-id" : "74a36ff0-061f-4553-8948-47ac50661e5b", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"611\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"612\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"613\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"614\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"615\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"616\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"617\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"618\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"619\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"620\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "363a6447-7c62-4de8-88ef-a74b08e7957c", + "x-ms-client-request-id" : "74a36ff0-061f-4553-8948-47ac50661e5b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3195d39-9160-48f2-90c8-1c22a2fed57a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "83a739b9-1f6f-4333-aa52-0cfacdad94eb", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f3195d39-9160-48f2-90c8-1c22a2fed57a", + "request-id" : "83a739b9-1f6f-4333-aa52-0cfacdad94eb", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:09 GMT", + "Date" : "Thu, 27 May 2021 21:11:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f3195d39-9160-48f2-90c8-1c22a2fed57a", - "elapsed-time" : "44", + "client-request-id" : "83a739b9-1f6f-4333-aa52-0cfacdad94eb", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"621\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"622\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"623\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"624\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"625\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"626\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"627\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"628\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"629\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"630\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "f3195d39-9160-48f2-90c8-1c22a2fed57a", + "x-ms-client-request-id" : "83a739b9-1f6f-4333-aa52-0cfacdad94eb", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "303d4b5d-7d38-41c6-a99b-2d2264ae746f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d9c3c139-81dc-40c1-988e-135fbcd72e9a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "303d4b5d-7d38-41c6-a99b-2d2264ae746f", + "request-id" : "d9c3c139-81dc-40c1-988e-135fbcd72e9a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:09 GMT", + "Date" : "Thu, 27 May 2021 21:11:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "303d4b5d-7d38-41c6-a99b-2d2264ae746f", - "elapsed-time" : "35", + "client-request-id" : "d9c3c139-81dc-40c1-988e-135fbcd72e9a", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"631\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"632\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"633\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"634\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"635\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"636\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"637\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"638\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"639\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"640\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "303d4b5d-7d38-41c6-a99b-2d2264ae746f", + "x-ms-client-request-id" : "d9c3c139-81dc-40c1-988e-135fbcd72e9a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b7423bc-cfa4-4219-8847-646e207dfd07", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e57cf434-711b-40ad-88d0-800411c6b7cb", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6b7423bc-cfa4-4219-8847-646e207dfd07", + "request-id" : "e57cf434-711b-40ad-88d0-800411c6b7cb", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:09 GMT", + "Date" : "Thu, 27 May 2021 21:11:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6b7423bc-cfa4-4219-8847-646e207dfd07", - "elapsed-time" : "37", + "client-request-id" : "e57cf434-711b-40ad-88d0-800411c6b7cb", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"641\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"642\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"643\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"644\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"645\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"646\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"647\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"648\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"649\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"650\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "6b7423bc-cfa4-4219-8847-646e207dfd07", + "x-ms-client-request-id" : "e57cf434-711b-40ad-88d0-800411c6b7cb", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ef4efb55-4d80-4d63-b64e-877b77fa44f0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4d1653a4-6bb6-4133-8aee-edeb2f337830", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ef4efb55-4d80-4d63-b64e-877b77fa44f0", + "request-id" : "4d1653a4-6bb6-4133-8aee-edeb2f337830", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:09 GMT", + "Date" : "Thu, 27 May 2021 21:11:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ef4efb55-4d80-4d63-b64e-877b77fa44f0", - "elapsed-time" : "39", + "client-request-id" : "4d1653a4-6bb6-4133-8aee-edeb2f337830", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"651\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"652\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"653\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"654\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"655\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"656\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"657\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"658\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"659\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"660\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "ef4efb55-4d80-4d63-b64e-877b77fa44f0", + "x-ms-client-request-id" : "4d1653a4-6bb6-4133-8aee-edeb2f337830", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "feaf4f7c-b151-4b97-a5dd-c4de46202f80", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c65e3c1d-0bac-49f9-a7cc-af9fa81d87d4", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "feaf4f7c-b151-4b97-a5dd-c4de46202f80", + "request-id" : "c65e3c1d-0bac-49f9-a7cc-af9fa81d87d4", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:09 GMT", + "Date" : "Thu, 27 May 2021 21:11:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "feaf4f7c-b151-4b97-a5dd-c4de46202f80", - "elapsed-time" : "38", + "client-request-id" : "c65e3c1d-0bac-49f9-a7cc-af9fa81d87d4", + "elapsed-time" : "37", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"661\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"662\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"663\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"664\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"665\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"666\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"667\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"668\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"669\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"670\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "feaf4f7c-b151-4b97-a5dd-c4de46202f80", + "x-ms-client-request-id" : "c65e3c1d-0bac-49f9-a7cc-af9fa81d87d4", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9b437223-f9ab-4b31-8f13-bf1290e70da3", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b52a0347-7d4e-4735-a819-8432465bc13f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9b437223-f9ab-4b31-8f13-bf1290e70da3", + "request-id" : "b52a0347-7d4e-4735-a819-8432465bc13f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:09 GMT", + "Date" : "Thu, 27 May 2021 21:11:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9b437223-f9ab-4b31-8f13-bf1290e70da3", - "elapsed-time" : "42", + "client-request-id" : "b52a0347-7d4e-4735-a819-8432465bc13f", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"671\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"672\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"673\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"674\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"675\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"676\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"677\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"678\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"679\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"680\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "9b437223-f9ab-4b31-8f13-bf1290e70da3", + "x-ms-client-request-id" : "b52a0347-7d4e-4735-a819-8432465bc13f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ea94fddc-1491-42dd-ab33-50a2bf20c041", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1645a11b-6f2d-49a5-bd88-23cc5d53be2b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ea94fddc-1491-42dd-ab33-50a2bf20c041", + "request-id" : "1645a11b-6f2d-49a5-bd88-23cc5d53be2b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:09 GMT", + "Date" : "Thu, 27 May 2021 21:11:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ea94fddc-1491-42dd-ab33-50a2bf20c041", - "elapsed-time" : "50", + "client-request-id" : "1645a11b-6f2d-49a5-bd88-23cc5d53be2b", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"681\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"682\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"683\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"684\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"685\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"686\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"687\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"688\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"689\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"690\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "ea94fddc-1491-42dd-ab33-50a2bf20c041", + "x-ms-client-request-id" : "1645a11b-6f2d-49a5-bd88-23cc5d53be2b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "069d4202-0c9b-42c3-898c-b53fe6cade59", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0a748668-12d7-4671-9071-82c7a9e5fd3f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "069d4202-0c9b-42c3-898c-b53fe6cade59", + "request-id" : "0a748668-12d7-4671-9071-82c7a9e5fd3f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:10 GMT", + "Date" : "Thu, 27 May 2021 21:11:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "069d4202-0c9b-42c3-898c-b53fe6cade59", - "elapsed-time" : "38", + "client-request-id" : "0a748668-12d7-4671-9071-82c7a9e5fd3f", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"691\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"692\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"693\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"694\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"695\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"696\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"697\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"698\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"699\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"700\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "069d4202-0c9b-42c3-898c-b53fe6cade59", + "x-ms-client-request-id" : "0a748668-12d7-4671-9071-82c7a9e5fd3f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "de139391-442b-49f7-ad54-5896d3d7e47b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "64cf92fa-f5f5-4e45-9247-4cb9b30b47be", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "de139391-442b-49f7-ad54-5896d3d7e47b", + "request-id" : "64cf92fa-f5f5-4e45-9247-4cb9b30b47be", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:09 GMT", + "Date" : "Thu, 27 May 2021 21:11:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "de139391-442b-49f7-ad54-5896d3d7e47b", - "elapsed-time" : "38", + "client-request-id" : "64cf92fa-f5f5-4e45-9247-4cb9b30b47be", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"701\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"702\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"703\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"704\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"705\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"706\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"707\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"708\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"709\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"710\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "de139391-442b-49f7-ad54-5896d3d7e47b", + "x-ms-client-request-id" : "64cf92fa-f5f5-4e45-9247-4cb9b30b47be", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5495dd9a-24fb-467d-9e35-308568d288f7", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c4373e3f-4024-4bbf-ba4a-04a5c7f20548", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5495dd9a-24fb-467d-9e35-308568d288f7", + "request-id" : "c4373e3f-4024-4bbf-ba4a-04a5c7f20548", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:10 GMT", + "Date" : "Thu, 27 May 2021 21:11:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5495dd9a-24fb-467d-9e35-308568d288f7", - "elapsed-time" : "47", + "client-request-id" : "c4373e3f-4024-4bbf-ba4a-04a5c7f20548", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"711\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"712\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"713\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"714\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"715\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"716\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"717\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"718\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"719\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"720\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "5495dd9a-24fb-467d-9e35-308568d288f7", + "x-ms-client-request-id" : "c4373e3f-4024-4bbf-ba4a-04a5c7f20548", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "05b71446-9fff-437b-93a3-36c783c7cabe", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "31c54dcf-ba41-4ee1-9ccb-ebf6d91eacca", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "05b71446-9fff-437b-93a3-36c783c7cabe", + "request-id" : "31c54dcf-ba41-4ee1-9ccb-ebf6d91eacca", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:10 GMT", + "Date" : "Thu, 27 May 2021 21:11:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "05b71446-9fff-437b-93a3-36c783c7cabe", - "elapsed-time" : "38", + "client-request-id" : "31c54dcf-ba41-4ee1-9ccb-ebf6d91eacca", + "elapsed-time" : "39", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"721\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"722\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"723\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"724\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"725\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"726\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"727\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"728\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"729\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"730\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "05b71446-9fff-437b-93a3-36c783c7cabe", + "x-ms-client-request-id" : "31c54dcf-ba41-4ee1-9ccb-ebf6d91eacca", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f38cee1c-3fc3-432a-8184-a7570b37ff1e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3d006968-9886-41a5-b38d-7a3c2c3fc3e7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f38cee1c-3fc3-432a-8184-a7570b37ff1e", + "request-id" : "3d006968-9886-41a5-b38d-7a3c2c3fc3e7", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:10 GMT", + "Date" : "Thu, 27 May 2021 21:11:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f38cee1c-3fc3-432a-8184-a7570b37ff1e", - "elapsed-time" : "43", + "client-request-id" : "3d006968-9886-41a5-b38d-7a3c2c3fc3e7", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"731\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"732\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"733\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"734\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"735\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"736\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"737\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"738\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"739\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"740\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "f38cee1c-3fc3-432a-8184-a7570b37ff1e", + "x-ms-client-request-id" : "3d006968-9886-41a5-b38d-7a3c2c3fc3e7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5a8f581-67e7-490d-b2c6-aa3e9da6e6d9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a84a4a81-8011-4ab3-8472-2793a7b8bd00", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f5a8f581-67e7-490d-b2c6-aa3e9da6e6d9", + "request-id" : "a84a4a81-8011-4ab3-8472-2793a7b8bd00", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:10 GMT", + "Date" : "Thu, 27 May 2021 21:11:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f5a8f581-67e7-490d-b2c6-aa3e9da6e6d9", - "elapsed-time" : "36", + "client-request-id" : "a84a4a81-8011-4ab3-8472-2793a7b8bd00", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"741\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"742\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"743\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"744\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"745\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"746\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"747\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"748\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"749\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"750\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "f5a8f581-67e7-490d-b2c6-aa3e9da6e6d9", + "x-ms-client-request-id" : "a84a4a81-8011-4ab3-8472-2793a7b8bd00", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d5feb94-42bd-450f-8b78-4ed515aade59", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "47477f80-fedb-41e3-8a0f-2b6d5b294696", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7d5feb94-42bd-450f-8b78-4ed515aade59", + "request-id" : "47477f80-fedb-41e3-8a0f-2b6d5b294696", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:10 GMT", + "Date" : "Thu, 27 May 2021 21:11:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7d5feb94-42bd-450f-8b78-4ed515aade59", - "elapsed-time" : "39", + "client-request-id" : "47477f80-fedb-41e3-8a0f-2b6d5b294696", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"751\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"752\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"753\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"754\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"755\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"756\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"757\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"758\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"759\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"760\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "7d5feb94-42bd-450f-8b78-4ed515aade59", + "x-ms-client-request-id" : "47477f80-fedb-41e3-8a0f-2b6d5b294696", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a097afa6-c513-4fff-bd85-d4e94399749b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5aab97d2-25d3-4a51-b1ce-b01ccccf588a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a097afa6-c513-4fff-bd85-d4e94399749b", + "request-id" : "5aab97d2-25d3-4a51-b1ce-b01ccccf588a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:10 GMT", + "Date" : "Thu, 27 May 2021 21:11:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a097afa6-c513-4fff-bd85-d4e94399749b", - "elapsed-time" : "81", + "client-request-id" : "5aab97d2-25d3-4a51-b1ce-b01ccccf588a", + "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"761\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"762\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"763\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"764\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"765\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"766\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"767\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"768\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"769\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"770\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "a097afa6-c513-4fff-bd85-d4e94399749b", + "x-ms-client-request-id" : "5aab97d2-25d3-4a51-b1ce-b01ccccf588a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "aed0b032-d408-48f2-ab61-1f376b43a682", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "16747ba3-24a4-43ca-8aab-3d7b25b8345f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "aed0b032-d408-48f2-ab61-1f376b43a682", + "request-id" : "16747ba3-24a4-43ca-8aab-3d7b25b8345f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:10 GMT", + "Date" : "Thu, 27 May 2021 21:11:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "aed0b032-d408-48f2-ab61-1f376b43a682", - "elapsed-time" : "40", + "client-request-id" : "16747ba3-24a4-43ca-8aab-3d7b25b8345f", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"771\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"772\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"773\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"774\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"775\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"776\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"777\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"778\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"779\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"780\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "aed0b032-d408-48f2-ab61-1f376b43a682", + "x-ms-client-request-id" : "16747ba3-24a4-43ca-8aab-3d7b25b8345f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "81e466d4-5dbd-4c17-a57e-b7bfca1f43b1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0554bbde-5129-44e2-b5f8-99227e476378", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "81e466d4-5dbd-4c17-a57e-b7bfca1f43b1", + "request-id" : "0554bbde-5129-44e2-b5f8-99227e476378", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:10 GMT", + "Date" : "Thu, 27 May 2021 21:11:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "81e466d4-5dbd-4c17-a57e-b7bfca1f43b1", - "elapsed-time" : "36", + "client-request-id" : "0554bbde-5129-44e2-b5f8-99227e476378", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"781\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"782\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"783\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"784\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"785\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"786\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"787\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"788\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"789\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"790\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "81e466d4-5dbd-4c17-a57e-b7bfca1f43b1", + "x-ms-client-request-id" : "0554bbde-5129-44e2-b5f8-99227e476378", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "055cac0a-6b25-4f1b-8cdf-b201dbd3c225", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8085532b-3a55-44c3-84c8-6751b2c7a91c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "055cac0a-6b25-4f1b-8cdf-b201dbd3c225", + "request-id" : "8085532b-3a55-44c3-84c8-6751b2c7a91c", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:10 GMT", + "Date" : "Thu, 27 May 2021 21:11:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "055cac0a-6b25-4f1b-8cdf-b201dbd3c225", - "elapsed-time" : "44", + "client-request-id" : "8085532b-3a55-44c3-84c8-6751b2c7a91c", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"791\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"792\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"793\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"794\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"795\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"796\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"797\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"798\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"799\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"800\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "055cac0a-6b25-4f1b-8cdf-b201dbd3c225", + "x-ms-client-request-id" : "8085532b-3a55-44c3-84c8-6751b2c7a91c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3e2c593b-b814-4361-9bca-3eecdac5e579", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "dab41500-a0f5-4ff0-a49c-30757dd804fd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3e2c593b-b814-4361-9bca-3eecdac5e579", + "request-id" : "dab41500-a0f5-4ff0-a49c-30757dd804fd", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:10 GMT", + "Date" : "Thu, 27 May 2021 21:11:27 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3e2c593b-b814-4361-9bca-3eecdac5e579", - "elapsed-time" : "37", + "client-request-id" : "dab41500-a0f5-4ff0-a49c-30757dd804fd", + "elapsed-time" : "40", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"801\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"802\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"803\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"804\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"805\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"806\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"807\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"808\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"809\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"810\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "3e2c593b-b814-4361-9bca-3eecdac5e579", + "x-ms-client-request-id" : "dab41500-a0f5-4ff0-a49c-30757dd804fd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9e491969-9199-4926-a553-0ca442a855f0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a0636808-f195-47e7-b685-8b8f2dc4c217", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9e491969-9199-4926-a553-0ca442a855f0", + "request-id" : "a0636808-f195-47e7-b685-8b8f2dc4c217", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:10 GMT", + "Date" : "Thu, 27 May 2021 21:11:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9e491969-9199-4926-a553-0ca442a855f0", - "elapsed-time" : "35", + "client-request-id" : "a0636808-f195-47e7-b685-8b8f2dc4c217", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"811\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"812\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"813\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"814\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"815\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"816\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"817\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"818\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"819\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"820\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "9e491969-9199-4926-a553-0ca442a855f0", + "x-ms-client-request-id" : "a0636808-f195-47e7-b685-8b8f2dc4c217", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4b948852-695d-4a6d-ad80-30bc35a06ebc", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e339b7e6-1b0d-4138-a6dd-9a8d2c4c2d2b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4b948852-695d-4a6d-ad80-30bc35a06ebc", + "request-id" : "e339b7e6-1b0d-4138-a6dd-9a8d2c4c2d2b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:10 GMT", + "Date" : "Thu, 27 May 2021 21:11:27 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4b948852-695d-4a6d-ad80-30bc35a06ebc", - "elapsed-time" : "34", + "client-request-id" : "e339b7e6-1b0d-4138-a6dd-9a8d2c4c2d2b", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"821\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"822\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"823\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"824\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"825\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"826\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"827\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"828\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"829\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"830\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "4b948852-695d-4a6d-ad80-30bc35a06ebc", + "x-ms-client-request-id" : "e339b7e6-1b0d-4138-a6dd-9a8d2c4c2d2b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "abb41cc9-ed4d-4c47-82eb-c57018c2f103", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b225f19b-90fa-4d3a-a7ca-eba9d5a171c5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "abb41cc9-ed4d-4c47-82eb-c57018c2f103", + "request-id" : "b225f19b-90fa-4d3a-a7ca-eba9d5a171c5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:11 GMT", + "Date" : "Thu, 27 May 2021 21:11:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "abb41cc9-ed4d-4c47-82eb-c57018c2f103", - "elapsed-time" : "34", + "client-request-id" : "b225f19b-90fa-4d3a-a7ca-eba9d5a171c5", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"831\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"832\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"833\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"834\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"835\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"836\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"837\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"838\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"839\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"840\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "abb41cc9-ed4d-4c47-82eb-c57018c2f103", + "x-ms-client-request-id" : "b225f19b-90fa-4d3a-a7ca-eba9d5a171c5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f22b3fbd-1d9b-40a8-8c38-2ef385c017e5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "29ae2e45-1b39-44fa-9ea5-2eb1011df95e", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f22b3fbd-1d9b-40a8-8c38-2ef385c017e5", + "request-id" : "29ae2e45-1b39-44fa-9ea5-2eb1011df95e", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:11 GMT", + "Date" : "Thu, 27 May 2021 21:11:27 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f22b3fbd-1d9b-40a8-8c38-2ef385c017e5", - "elapsed-time" : "43", + "client-request-id" : "29ae2e45-1b39-44fa-9ea5-2eb1011df95e", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"841\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"842\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"843\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"844\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"845\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"846\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"847\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"848\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"849\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"850\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "f22b3fbd-1d9b-40a8-8c38-2ef385c017e5", + "x-ms-client-request-id" : "29ae2e45-1b39-44fa-9ea5-2eb1011df95e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "42ec074c-93b6-413f-9e9b-d35bc8cd2073", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fd7d825f-6a51-4c62-affc-f2840bef9761", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "42ec074c-93b6-413f-9e9b-d35bc8cd2073", + "request-id" : "fd7d825f-6a51-4c62-affc-f2840bef9761", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:11 GMT", + "Date" : "Thu, 27 May 2021 21:11:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "42ec074c-93b6-413f-9e9b-d35bc8cd2073", - "elapsed-time" : "36", + "client-request-id" : "fd7d825f-6a51-4c62-affc-f2840bef9761", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"851\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"852\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"853\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"854\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"855\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"856\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"857\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"858\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"859\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"860\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "42ec074c-93b6-413f-9e9b-d35bc8cd2073", + "x-ms-client-request-id" : "fd7d825f-6a51-4c62-affc-f2840bef9761", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f744b10d-317e-46f2-917f-b2f7f08e6993", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "aaa6175b-aa4e-40df-b05d-96a003605681", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f744b10d-317e-46f2-917f-b2f7f08e6993", + "request-id" : "aaa6175b-aa4e-40df-b05d-96a003605681", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:11 GMT", + "Date" : "Thu, 27 May 2021 21:11:27 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f744b10d-317e-46f2-917f-b2f7f08e6993", - "elapsed-time" : "38", + "client-request-id" : "aaa6175b-aa4e-40df-b05d-96a003605681", + "elapsed-time" : "40", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"861\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"862\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"863\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"864\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"865\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"866\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"867\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"868\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"869\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"870\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "f744b10d-317e-46f2-917f-b2f7f08e6993", + "x-ms-client-request-id" : "aaa6175b-aa4e-40df-b05d-96a003605681", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "84b57fc8-2af0-4476-a070-397df5fdb9e5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "49767abb-8f3c-4395-89f3-653db9d86f35", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "84b57fc8-2af0-4476-a070-397df5fdb9e5", + "request-id" : "49767abb-8f3c-4395-89f3-653db9d86f35", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:11 GMT", + "Date" : "Thu, 27 May 2021 21:11:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "84b57fc8-2af0-4476-a070-397df5fdb9e5", - "elapsed-time" : "45", + "client-request-id" : "49767abb-8f3c-4395-89f3-653db9d86f35", + "elapsed-time" : "43", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"871\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"872\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"873\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"874\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"875\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"876\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"877\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"878\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"879\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"880\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "84b57fc8-2af0-4476-a070-397df5fdb9e5", + "x-ms-client-request-id" : "49767abb-8f3c-4395-89f3-653db9d86f35", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e9931b55-3583-4d6f-acdd-6b78b75725bb", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "597b7f82-2194-4e2a-badc-0164e0cfbb81", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e9931b55-3583-4d6f-acdd-6b78b75725bb", + "request-id" : "597b7f82-2194-4e2a-badc-0164e0cfbb81", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:11 GMT", + "Date" : "Thu, 27 May 2021 21:11:27 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e9931b55-3583-4d6f-acdd-6b78b75725bb", - "elapsed-time" : "40", + "client-request-id" : "597b7f82-2194-4e2a-badc-0164e0cfbb81", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"881\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"882\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"883\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"884\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"885\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"886\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"887\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"888\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"889\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"890\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "e9931b55-3583-4d6f-acdd-6b78b75725bb", + "x-ms-client-request-id" : "597b7f82-2194-4e2a-badc-0164e0cfbb81", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c7b65e55-f09a-47ef-b4ca-bfb665365e2d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ff2584e2-ffa3-4730-b3d9-341920b3cecc", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c7b65e55-f09a-47ef-b4ca-bfb665365e2d", + "request-id" : "ff2584e2-ffa3-4730-b3d9-341920b3cecc", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:11 GMT", + "Date" : "Thu, 27 May 2021 21:11:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c7b65e55-f09a-47ef-b4ca-bfb665365e2d", - "elapsed-time" : "54", + "client-request-id" : "ff2584e2-ffa3-4730-b3d9-341920b3cecc", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"891\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"892\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"893\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"894\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"895\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"896\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"897\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"898\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"899\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"900\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "c7b65e55-f09a-47ef-b4ca-bfb665365e2d", + "x-ms-client-request-id" : "ff2584e2-ffa3-4730-b3d9-341920b3cecc", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0663520-77f4-47fd-acd2-ad802b8d86c4", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2b95eba7-947d-411f-9f6f-2d5f6f276087", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c0663520-77f4-47fd-acd2-ad802b8d86c4", + "request-id" : "2b95eba7-947d-411f-9f6f-2d5f6f276087", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:11 GMT", + "Date" : "Thu, 27 May 2021 21:11:27 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c0663520-77f4-47fd-acd2-ad802b8d86c4", - "elapsed-time" : "42", + "client-request-id" : "2b95eba7-947d-411f-9f6f-2d5f6f276087", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"901\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"902\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"903\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"904\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"905\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"906\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"907\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"908\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"909\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"910\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "c0663520-77f4-47fd-acd2-ad802b8d86c4", + "x-ms-client-request-id" : "2b95eba7-947d-411f-9f6f-2d5f6f276087", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ec0336cc-750e-4cf9-8e23-e5e309ede8de", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6fae9b27-cdb6-4a31-b0f2-bf15008b8968", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ec0336cc-750e-4cf9-8e23-e5e309ede8de", + "request-id" : "6fae9b27-cdb6-4a31-b0f2-bf15008b8968", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:11 GMT", + "Date" : "Thu, 27 May 2021 21:11:26 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ec0336cc-750e-4cf9-8e23-e5e309ede8de", - "elapsed-time" : "44", + "client-request-id" : "6fae9b27-cdb6-4a31-b0f2-bf15008b8968", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"911\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"912\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"913\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"914\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"915\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"916\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"917\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"918\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"919\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"920\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "ec0336cc-750e-4cf9-8e23-e5e309ede8de", + "x-ms-client-request-id" : "6fae9b27-cdb6-4a31-b0f2-bf15008b8968", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e9d8f56b-951c-4b78-8d71-8c8342759810", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7ee36e0f-6bd2-4c59-82b3-9d84b3625dc3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e9d8f56b-951c-4b78-8d71-8c8342759810", + "request-id" : "7ee36e0f-6bd2-4c59-82b3-9d84b3625dc3", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:11 GMT", + "Date" : "Thu, 27 May 2021 21:11:27 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e9d8f56b-951c-4b78-8d71-8c8342759810", - "elapsed-time" : "40", + "client-request-id" : "7ee36e0f-6bd2-4c59-82b3-9d84b3625dc3", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"921\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"922\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"923\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"924\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"925\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"926\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"927\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"928\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"929\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"930\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "e9d8f56b-951c-4b78-8d71-8c8342759810", + "x-ms-client-request-id" : "7ee36e0f-6bd2-4c59-82b3-9d84b3625dc3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "45ed14bc-64c9-480d-89e9-826a11788699", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ec16b295-f13e-4f9a-84d1-87c9a2cd5aca", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "45ed14bc-64c9-480d-89e9-826a11788699", + "request-id" : "ec16b295-f13e-4f9a-84d1-87c9a2cd5aca", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:11 GMT", + "Date" : "Thu, 27 May 2021 21:11:28 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "45ed14bc-64c9-480d-89e9-826a11788699", - "elapsed-time" : "38", + "client-request-id" : "ec16b295-f13e-4f9a-84d1-87c9a2cd5aca", + "elapsed-time" : "37", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"931\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"932\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"933\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"934\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"935\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"936\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"937\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"938\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"939\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"940\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "45ed14bc-64c9-480d-89e9-826a11788699", + "x-ms-client-request-id" : "ec16b295-f13e-4f9a-84d1-87c9a2cd5aca", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b7eb1df6-ee7f-437f-8b47-d082e78c969c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9af00f43-f274-4c30-be47-a277fd2481e3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b7eb1df6-ee7f-437f-8b47-d082e78c969c", + "request-id" : "9af00f43-f274-4c30-be47-a277fd2481e3", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:11 GMT", + "Date" : "Thu, 27 May 2021 21:11:27 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b7eb1df6-ee7f-437f-8b47-d082e78c969c", - "elapsed-time" : "40", + "client-request-id" : "9af00f43-f274-4c30-be47-a277fd2481e3", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"941\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"942\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"943\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"944\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"945\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"946\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"947\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"948\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"949\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"950\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "b7eb1df6-ee7f-437f-8b47-d082e78c969c", + "x-ms-client-request-id" : "9af00f43-f274-4c30-be47-a277fd2481e3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3ce2717f-d6ae-4479-9456-dd7b07f41655", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5c1b0bdf-5efd-4fe2-a4a0-e70b52c2b0ae", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3ce2717f-d6ae-4479-9456-dd7b07f41655", + "request-id" : "5c1b0bdf-5efd-4fe2-a4a0-e70b52c2b0ae", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:11 GMT", + "Date" : "Thu, 27 May 2021 21:11:28 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3ce2717f-d6ae-4479-9456-dd7b07f41655", - "elapsed-time" : "35", + "client-request-id" : "5c1b0bdf-5efd-4fe2-a4a0-e70b52c2b0ae", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"951\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"952\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"953\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"954\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"955\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"956\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"957\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"958\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"959\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"960\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "3ce2717f-d6ae-4479-9456-dd7b07f41655", + "x-ms-client-request-id" : "5c1b0bdf-5efd-4fe2-a4a0-e70b52c2b0ae", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a815297-ef9a-45da-b4f8-b4118ba62541", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "59b1112a-d709-4d59-87e5-a5541f822f6a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9a815297-ef9a-45da-b4f8-b4118ba62541", + "request-id" : "59b1112a-d709-4d59-87e5-a5541f822f6a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:11 GMT", + "Date" : "Thu, 27 May 2021 21:11:28 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9a815297-ef9a-45da-b4f8-b4118ba62541", - "elapsed-time" : "40", + "client-request-id" : "59b1112a-d709-4d59-87e5-a5541f822f6a", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"961\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"962\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"963\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"964\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"965\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"966\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"967\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"968\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"969\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"970\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "9a815297-ef9a-45da-b4f8-b4118ba62541", + "x-ms-client-request-id" : "59b1112a-d709-4d59-87e5-a5541f822f6a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1bef77ce-4140-4049-8975-c8b6eea5db98", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b9a5712e-4b3c-424f-892f-dc4f9170e375", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1bef77ce-4140-4049-8975-c8b6eea5db98", + "request-id" : "b9a5712e-4b3c-424f-892f-dc4f9170e375", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:12 GMT", + "Date" : "Thu, 27 May 2021 21:11:28 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1bef77ce-4140-4049-8975-c8b6eea5db98", - "elapsed-time" : "43", + "client-request-id" : "b9a5712e-4b3c-424f-892f-dc4f9170e375", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"971\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"972\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"973\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"974\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"975\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"976\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"977\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"978\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"979\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"980\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "1bef77ce-4140-4049-8975-c8b6eea5db98", + "x-ms-client-request-id" : "b9a5712e-4b3c-424f-892f-dc4f9170e375", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f7f537d-4f69-4dde-ab2e-3d8d39d719be", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "84102e8a-2473-4772-b442-24c2b6e86380", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4f7f537d-4f69-4dde-ab2e-3d8d39d719be", + "request-id" : "84102e8a-2473-4772-b442-24c2b6e86380", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:12 GMT", + "Date" : "Thu, 27 May 2021 21:11:28 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4f7f537d-4f69-4dde-ab2e-3d8d39d719be", - "elapsed-time" : "41", + "client-request-id" : "84102e8a-2473-4772-b442-24c2b6e86380", + "elapsed-time" : "42", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"981\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"982\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"983\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"984\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"985\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"986\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"987\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"988\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"989\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"990\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "4f7f537d-4f69-4dde-ab2e-3d8d39d719be", + "x-ms-client-request-id" : "84102e8a-2473-4772-b442-24c2b6e86380", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "765c0500-86f8-44e4-9352-9701d4a6a46a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "82a8a8b6-e550-4798-b4ce-8ca329247f9d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "662", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "765c0500-86f8-44e4-9352-9701d4a6a46a", + "request-id" : "82a8a8b6-e550-4798-b4ce-8ca329247f9d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:12 GMT", + "Date" : "Thu, 27 May 2021 21:11:28 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "765c0500-86f8-44e4-9352-9701d4a6a46a", - "elapsed-time" : "36", + "client-request-id" : "82a8a8b6-e550-4798-b4ce-8ca329247f9d", + "elapsed-time" : "63", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "662", "Body" : "{\"value\":[{\"key\":\"991\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"992\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"993\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"994\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"995\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"996\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"997\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"998\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"999\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1000\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "765c0500-86f8-44e4-9352-9701d4a6a46a", + "x-ms-client-request-id" : "82a8a8b6-e550-4798-b4ce-8ca329247f9d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4865b2ea-5eb4-4556-a840-3e91891fc7b3" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8a799ac3-5afe-42bd-94a1-5c874019f8d2" }, "Response" : { + "content-length" : "7", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4865b2ea-5eb4-4556-a840-3e91891fc7b3", + "request-id" : "8a799ac3-5afe-42bd-94a1-5c874019f8d2", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:35 GMT", + "Date" : "Thu, 27 May 2021 21:11:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4865b2ea-5eb4-4556-a840-3e91891fc7b3", - "elapsed-time" : "62", + "client-request-id" : "8a799ac3-5afe-42bd-94a1-5c874019f8d2", + "elapsed-time" : "80", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "7", "Body" : "1000", - "x-ms-client-request-id" : "4865b2ea-5eb4-4556-a840-3e91891fc7b3", + "x-ms-client-request-id" : "8a799ac3-5afe-42bd-94a1-5c874019f8d2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "text/plain" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c9b43cb0-7a76-4b04-8151-3140d4111472" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0a765ef5-aa87-4ef7-b869-62a7697b4b91" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c9b43cb0-7a76-4b04-8151-3140d4111472", - "elapsed-time" : "539", + "client-request-id" : "0a765ef5-aa87-4ef7-b869-62a7697b4b91", + "elapsed-time" : "574", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "c9b43cb0-7a76-4b04-8151-3140d4111472", + "request-id" : "0a765ef5-aa87-4ef7-b869-62a7697b4b91", "StatusCode" : "204", - "x-ms-client-request-id" : "c9b43cb0-7a76-4b04-8151-3140d4111472", - "Date" : "Fri, 02 Apr 2021 22:33:35 GMT" + "x-ms-client-request-id" : "0a765ef5-aa87-4ef7-b869-62a7697b4b91", + "Date" : "Thu, 27 May 2021 21:11:51 GMT" }, "Exception" : null } ], - "variables" : [ "hotelsindexmanydocumentsonelargedocumentsetd1a10120436cba" ] + "variables" : [ "hotelsindexmanydocumentsonelargedocumentsete7144540f6db8d" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.indexManyDocumentsSmallDocumentSets.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.indexManyDocumentsSmallDocumentSets.json index 1b814fabe392..3468c5338aae 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.indexManyDocumentsSmallDocumentSets.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.indexManyDocumentsSmallDocumentSets.json @@ -1,2780 +1,2780 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd7f2949-4ad9-4dae-b701-7cc6ef9ca27a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "69db364e-5748-45ac-94ea-9a383785a8a0", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6497", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "bd7f2949-4ad9-4dae-b701-7cc6ef9ca27a", + "request-id" : "69db364e-5748-45ac-94ea-9a383785a8a0", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:32:33 GMT", + "Date" : "Thu, 27 May 2021 21:10:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62735715112\"", - "client-request-id" : "bd7f2949-4ad9-4dae-b701-7cc6ef9ca27a", - "elapsed-time" : "1085", + "ETag" : "W/\"0x8D92153E79C1EFC\"", + "client-request-id" : "69db364e-5748-45ac-94ea-9a383785a8a0", + "elapsed-time" : "1448", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6946", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62735715112\\\"\",\"name\":\"hotelsindexmanydocumentssmalldocumentsets0b409519a66a526\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "bd7f2949-4ad9-4dae-b701-7cc6ef9ca27a", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92153E79C1EFC\\\"\",\"name\":\"hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "69db364e-5748-45ac-94ea-9a383785a8a0", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b785d4e3-f09b-493d-9bc7-8eda2ecd2892", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c811c912-cae2-4a7f-8cb4-7c266b11060c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "642", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b785d4e3-f09b-493d-9bc7-8eda2ecd2892", + "request-id" : "c811c912-cae2-4a7f-8cb4-7c266b11060c", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:33 GMT", + "Date" : "Thu, 27 May 2021 21:10:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b785d4e3-f09b-493d-9bc7-8eda2ecd2892", - "elapsed-time" : "122", + "client-request-id" : "c811c912-cae2-4a7f-8cb4-7c266b11060c", + "elapsed-time" : "107", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "642", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"5\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"6\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"7\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"8\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"9\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"10\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "b785d4e3-f09b-493d-9bc7-8eda2ecd2892", + "x-ms-client-request-id" : "c811c912-cae2-4a7f-8cb4-7c266b11060c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7b927cc4-0209-48f8-9e72-d261ab647654", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ac173ad6-6a9a-4a69-b247-bf823d279595", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "651", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7b927cc4-0209-48f8-9e72-d261ab647654", + "request-id" : "ac173ad6-6a9a-4a69-b247-bf823d279595", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:33 GMT", + "Date" : "Thu, 27 May 2021 21:10:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7b927cc4-0209-48f8-9e72-d261ab647654", - "elapsed-time" : "105", + "client-request-id" : "ac173ad6-6a9a-4a69-b247-bf823d279595", + "elapsed-time" : "98", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "651", "Body" : "{\"value\":[{\"key\":\"11\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"12\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"13\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"14\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"15\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"16\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"17\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"18\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"19\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"20\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "7b927cc4-0209-48f8-9e72-d261ab647654", + "x-ms-client-request-id" : "ac173ad6-6a9a-4a69-b247-bf823d279595", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "48ad4d84-61f1-4aee-9858-5aca34820b7d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "994fcd77-3e3a-4221-a0c7-42a83afce82d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "651", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "48ad4d84-61f1-4aee-9858-5aca34820b7d", + "request-id" : "994fcd77-3e3a-4221-a0c7-42a83afce82d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:33 GMT", + "Date" : "Thu, 27 May 2021 21:10:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "48ad4d84-61f1-4aee-9858-5aca34820b7d", - "elapsed-time" : "50", + "client-request-id" : "994fcd77-3e3a-4221-a0c7-42a83afce82d", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "651", "Body" : "{\"value\":[{\"key\":\"21\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"22\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"23\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"24\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"25\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"26\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"27\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"28\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"29\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"30\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "48ad4d84-61f1-4aee-9858-5aca34820b7d", + "x-ms-client-request-id" : "994fcd77-3e3a-4221-a0c7-42a83afce82d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e84ff411-8395-428c-aa19-ec217229770e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2b6a7965-e138-460a-ba61-5a4b9c5c04cf", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "651", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e84ff411-8395-428c-aa19-ec217229770e", + "request-id" : "2b6a7965-e138-460a-ba61-5a4b9c5c04cf", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:33 GMT", + "Date" : "Thu, 27 May 2021 21:10:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e84ff411-8395-428c-aa19-ec217229770e", - "elapsed-time" : "38", + "client-request-id" : "2b6a7965-e138-460a-ba61-5a4b9c5c04cf", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "651", "Body" : "{\"value\":[{\"key\":\"31\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"32\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"33\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"34\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"35\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"36\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"37\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"38\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"39\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"40\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "e84ff411-8395-428c-aa19-ec217229770e", + "x-ms-client-request-id" : "2b6a7965-e138-460a-ba61-5a4b9c5c04cf", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "980ca64b-4376-491d-8b6a-3ee411600547", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a3a7aafd-ff30-4dff-9cd5-a77a07f82064", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "651", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "980ca64b-4376-491d-8b6a-3ee411600547", + "request-id" : "a3a7aafd-ff30-4dff-9cd5-a77a07f82064", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:33 GMT", + "Date" : "Thu, 27 May 2021 21:10:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "980ca64b-4376-491d-8b6a-3ee411600547", - "elapsed-time" : "38", + "client-request-id" : "a3a7aafd-ff30-4dff-9cd5-a77a07f82064", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "651", "Body" : "{\"value\":[{\"key\":\"41\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"42\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"43\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"44\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"45\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"46\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"47\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"48\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"49\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"50\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "980ca64b-4376-491d-8b6a-3ee411600547", + "x-ms-client-request-id" : "a3a7aafd-ff30-4dff-9cd5-a77a07f82064", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ab117bbc-5367-4560-9eea-92791c55b20b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8bb807a5-a495-42aa-8092-897152f71579", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "651", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ab117bbc-5367-4560-9eea-92791c55b20b", + "request-id" : "8bb807a5-a495-42aa-8092-897152f71579", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:33 GMT", + "Date" : "Thu, 27 May 2021 21:10:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ab117bbc-5367-4560-9eea-92791c55b20b", - "elapsed-time" : "53", + "client-request-id" : "8bb807a5-a495-42aa-8092-897152f71579", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "651", "Body" : "{\"value\":[{\"key\":\"51\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"52\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"53\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"54\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"55\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"56\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"57\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"58\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"59\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"60\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "ab117bbc-5367-4560-9eea-92791c55b20b", + "x-ms-client-request-id" : "8bb807a5-a495-42aa-8092-897152f71579", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "845cb2e5-cde5-4e7e-a494-d147a7781a28", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "42fd8c75-f386-4a88-8b43-7259d61cc3a1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "651", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "845cb2e5-cde5-4e7e-a494-d147a7781a28", + "request-id" : "42fd8c75-f386-4a88-8b43-7259d61cc3a1", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:33 GMT", + "Date" : "Thu, 27 May 2021 21:10:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "845cb2e5-cde5-4e7e-a494-d147a7781a28", - "elapsed-time" : "41", + "client-request-id" : "42fd8c75-f386-4a88-8b43-7259d61cc3a1", + "elapsed-time" : "38", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "651", "Body" : "{\"value\":[{\"key\":\"61\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"62\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"63\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"64\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"65\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"66\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"67\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"68\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"69\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"70\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "845cb2e5-cde5-4e7e-a494-d147a7781a28", + "x-ms-client-request-id" : "42fd8c75-f386-4a88-8b43-7259d61cc3a1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c3213dd6-ad28-4a4d-a518-007c8eee1f78", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f33b6031-251a-4fc5-b43e-d61267f492da", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "651", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c3213dd6-ad28-4a4d-a518-007c8eee1f78", + "request-id" : "f33b6031-251a-4fc5-b43e-d61267f492da", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:34 GMT", + "Date" : "Thu, 27 May 2021 21:10:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c3213dd6-ad28-4a4d-a518-007c8eee1f78", - "elapsed-time" : "36", + "client-request-id" : "f33b6031-251a-4fc5-b43e-d61267f492da", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "651", "Body" : "{\"value\":[{\"key\":\"71\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"72\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"73\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"74\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"75\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"76\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"77\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"78\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"79\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"80\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "c3213dd6-ad28-4a4d-a518-007c8eee1f78", + "x-ms-client-request-id" : "f33b6031-251a-4fc5-b43e-d61267f492da", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4b49b82f-ba52-49f1-82a4-f0e637b65471", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "354679d6-71fc-4443-a160-638328bcf2b3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "651", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4b49b82f-ba52-49f1-82a4-f0e637b65471", + "request-id" : "354679d6-71fc-4443-a160-638328bcf2b3", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:33 GMT", + "Date" : "Thu, 27 May 2021 21:10:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4b49b82f-ba52-49f1-82a4-f0e637b65471", - "elapsed-time" : "47", + "client-request-id" : "354679d6-71fc-4443-a160-638328bcf2b3", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "651", "Body" : "{\"value\":[{\"key\":\"81\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"82\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"83\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"84\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"85\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"86\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"87\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"88\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"89\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"90\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "4b49b82f-ba52-49f1-82a4-f0e637b65471", + "x-ms-client-request-id" : "354679d6-71fc-4443-a160-638328bcf2b3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d8022b94-9e6b-4f00-9329-d0416ab31eb3", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "941bb78c-8dbe-4669-954d-907b11c8c144", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "652", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d8022b94-9e6b-4f00-9329-d0416ab31eb3", + "request-id" : "941bb78c-8dbe-4669-954d-907b11c8c144", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:34 GMT", + "Date" : "Thu, 27 May 2021 21:10:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d8022b94-9e6b-4f00-9329-d0416ab31eb3", - "elapsed-time" : "35", + "client-request-id" : "941bb78c-8dbe-4669-954d-907b11c8c144", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "652", "Body" : "{\"value\":[{\"key\":\"91\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"92\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"93\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"94\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"95\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"96\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"97\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"98\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"99\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"100\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "d8022b94-9e6b-4f00-9329-d0416ab31eb3", + "x-ms-client-request-id" : "941bb78c-8dbe-4669-954d-907b11c8c144", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5f0e6d75-dea0-4112-bc61-fe2f3ad01952", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "434847a1-94b2-4b24-a765-22f4ce77f8dc", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5f0e6d75-dea0-4112-bc61-fe2f3ad01952", + "request-id" : "434847a1-94b2-4b24-a765-22f4ce77f8dc", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:33 GMT", + "Date" : "Thu, 27 May 2021 21:10:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5f0e6d75-dea0-4112-bc61-fe2f3ad01952", - "elapsed-time" : "38", + "client-request-id" : "434847a1-94b2-4b24-a765-22f4ce77f8dc", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"101\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"102\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"103\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"104\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"105\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"106\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"107\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"108\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"109\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"110\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "5f0e6d75-dea0-4112-bc61-fe2f3ad01952", + "x-ms-client-request-id" : "434847a1-94b2-4b24-a765-22f4ce77f8dc", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "518735e5-d09f-454d-8ac1-652326bf27eb", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e386be63-7803-49e8-adc5-a2c1af61647f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "518735e5-d09f-454d-8ac1-652326bf27eb", + "request-id" : "e386be63-7803-49e8-adc5-a2c1af61647f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:34 GMT", + "Date" : "Thu, 27 May 2021 21:10:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "518735e5-d09f-454d-8ac1-652326bf27eb", - "elapsed-time" : "36", + "client-request-id" : "e386be63-7803-49e8-adc5-a2c1af61647f", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"111\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"112\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"113\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"114\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"115\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"116\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"117\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"118\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"119\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"120\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "518735e5-d09f-454d-8ac1-652326bf27eb", + "x-ms-client-request-id" : "e386be63-7803-49e8-adc5-a2c1af61647f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8f8302a4-ccce-48bf-a2ee-5c43a7a0b74e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "68d0f3ef-2733-4739-bbad-0d7e0fbdc1d7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8f8302a4-ccce-48bf-a2ee-5c43a7a0b74e", + "request-id" : "68d0f3ef-2733-4739-bbad-0d7e0fbdc1d7", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:33 GMT", + "Date" : "Thu, 27 May 2021 21:10:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8f8302a4-ccce-48bf-a2ee-5c43a7a0b74e", - "elapsed-time" : "41", + "client-request-id" : "68d0f3ef-2733-4739-bbad-0d7e0fbdc1d7", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"121\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"122\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"123\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"124\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"125\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"126\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"127\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"128\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"129\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"130\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "8f8302a4-ccce-48bf-a2ee-5c43a7a0b74e", + "x-ms-client-request-id" : "68d0f3ef-2733-4739-bbad-0d7e0fbdc1d7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "38713283-e68e-45a1-ab36-91b44f4cc9f9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ec6be9d0-d6e8-4ae9-80b9-824c51e3b640", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "38713283-e68e-45a1-ab36-91b44f4cc9f9", + "request-id" : "ec6be9d0-d6e8-4ae9-80b9-824c51e3b640", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:34 GMT", + "Date" : "Thu, 27 May 2021 21:10:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "38713283-e68e-45a1-ab36-91b44f4cc9f9", - "elapsed-time" : "39", + "client-request-id" : "ec6be9d0-d6e8-4ae9-80b9-824c51e3b640", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"131\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"132\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"133\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"134\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"135\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"136\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"137\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"138\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"139\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"140\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "38713283-e68e-45a1-ab36-91b44f4cc9f9", + "x-ms-client-request-id" : "ec6be9d0-d6e8-4ae9-80b9-824c51e3b640", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "83428c5e-44d6-4459-bc91-203eaf1d9192", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8b47abc6-c653-4d9d-a1b6-6f2110124066", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "83428c5e-44d6-4459-bc91-203eaf1d9192", + "request-id" : "8b47abc6-c653-4d9d-a1b6-6f2110124066", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:34 GMT", + "Date" : "Thu, 27 May 2021 21:10:50 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "83428c5e-44d6-4459-bc91-203eaf1d9192", - "elapsed-time" : "43", + "client-request-id" : "8b47abc6-c653-4d9d-a1b6-6f2110124066", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"141\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"142\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"143\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"144\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"145\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"146\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"147\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"148\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"149\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"150\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "83428c5e-44d6-4459-bc91-203eaf1d9192", + "x-ms-client-request-id" : "8b47abc6-c653-4d9d-a1b6-6f2110124066", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "75116f89-4e13-410d-b24a-d3c9e0690a17", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d06fc36e-34a7-48b3-b962-ef4cce45c5fd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "75116f89-4e13-410d-b24a-d3c9e0690a17", + "request-id" : "d06fc36e-34a7-48b3-b962-ef4cce45c5fd", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:34 GMT", + "Date" : "Thu, 27 May 2021 21:10:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "75116f89-4e13-410d-b24a-d3c9e0690a17", - "elapsed-time" : "41", + "client-request-id" : "d06fc36e-34a7-48b3-b962-ef4cce45c5fd", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"151\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"152\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"153\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"154\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"155\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"156\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"157\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"158\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"159\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"160\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "75116f89-4e13-410d-b24a-d3c9e0690a17", + "x-ms-client-request-id" : "d06fc36e-34a7-48b3-b962-ef4cce45c5fd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8bd3712-df84-41d0-960b-594a0cbc5128", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "88f9c352-306c-4889-8e6f-ff765e258304", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e8bd3712-df84-41d0-960b-594a0cbc5128", + "request-id" : "88f9c352-306c-4889-8e6f-ff765e258304", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:34 GMT", + "Date" : "Thu, 27 May 2021 21:10:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e8bd3712-df84-41d0-960b-594a0cbc5128", - "elapsed-time" : "50", + "client-request-id" : "88f9c352-306c-4889-8e6f-ff765e258304", + "elapsed-time" : "37", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"161\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"162\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"163\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"164\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"165\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"166\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"167\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"168\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"169\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"170\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "e8bd3712-df84-41d0-960b-594a0cbc5128", + "x-ms-client-request-id" : "88f9c352-306c-4889-8e6f-ff765e258304", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8977ec88-ab66-44a2-936b-29e4b74fc506", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "21068393-5f5e-44de-a84b-c2ebc81110c5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8977ec88-ab66-44a2-936b-29e4b74fc506", + "request-id" : "21068393-5f5e-44de-a84b-c2ebc81110c5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:34 GMT", + "Date" : "Thu, 27 May 2021 21:10:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8977ec88-ab66-44a2-936b-29e4b74fc506", - "elapsed-time" : "38", + "client-request-id" : "21068393-5f5e-44de-a84b-c2ebc81110c5", + "elapsed-time" : "37", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"171\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"172\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"173\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"174\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"175\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"176\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"177\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"178\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"179\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"180\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "8977ec88-ab66-44a2-936b-29e4b74fc506", + "x-ms-client-request-id" : "21068393-5f5e-44de-a84b-c2ebc81110c5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "df5c6bff-cb26-47e5-92a1-68f61554d75b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "72a8b5d6-8814-4c46-a121-84d38f8e8dc8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "df5c6bff-cb26-47e5-92a1-68f61554d75b", + "request-id" : "72a8b5d6-8814-4c46-a121-84d38f8e8dc8", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:34 GMT", + "Date" : "Thu, 27 May 2021 21:10:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "df5c6bff-cb26-47e5-92a1-68f61554d75b", - "elapsed-time" : "40", + "client-request-id" : "72a8b5d6-8814-4c46-a121-84d38f8e8dc8", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"181\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"182\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"183\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"184\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"185\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"186\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"187\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"188\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"189\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"190\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "df5c6bff-cb26-47e5-92a1-68f61554d75b", + "x-ms-client-request-id" : "72a8b5d6-8814-4c46-a121-84d38f8e8dc8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9f186ba6-bc43-4dcb-8f3f-4af7dffc2f1d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e8590520-831a-4f02-96f8-0ac6fd48aefb", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9f186ba6-bc43-4dcb-8f3f-4af7dffc2f1d", + "request-id" : "e8590520-831a-4f02-96f8-0ac6fd48aefb", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:34 GMT", + "Date" : "Thu, 27 May 2021 21:10:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9f186ba6-bc43-4dcb-8f3f-4af7dffc2f1d", - "elapsed-time" : "45", + "client-request-id" : "e8590520-831a-4f02-96f8-0ac6fd48aefb", + "elapsed-time" : "41", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"191\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"192\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"193\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"194\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"195\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"196\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"197\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"198\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"199\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"200\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "9f186ba6-bc43-4dcb-8f3f-4af7dffc2f1d", + "x-ms-client-request-id" : "e8590520-831a-4f02-96f8-0ac6fd48aefb", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0bf3acb-f701-4236-8635-42b7616243ec", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1bbb265f-e402-4d3d-b927-e3ac05901992", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c0bf3acb-f701-4236-8635-42b7616243ec", + "request-id" : "1bbb265f-e402-4d3d-b927-e3ac05901992", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:34 GMT", + "Date" : "Thu, 27 May 2021 21:10:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c0bf3acb-f701-4236-8635-42b7616243ec", - "elapsed-time" : "38", + "client-request-id" : "1bbb265f-e402-4d3d-b927-e3ac05901992", + "elapsed-time" : "37", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"201\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"202\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"203\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"204\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"205\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"206\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"207\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"208\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"209\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"210\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "c0bf3acb-f701-4236-8635-42b7616243ec", + "x-ms-client-request-id" : "1bbb265f-e402-4d3d-b927-e3ac05901992", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4b1d6628-805a-42e8-a6f2-d4a7161217ab", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b3237f62-9828-41f1-8247-9ba27935c9df", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4b1d6628-805a-42e8-a6f2-d4a7161217ab", + "request-id" : "b3237f62-9828-41f1-8247-9ba27935c9df", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:34 GMT", + "Date" : "Thu, 27 May 2021 21:10:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4b1d6628-805a-42e8-a6f2-d4a7161217ab", - "elapsed-time" : "36", + "client-request-id" : "b3237f62-9828-41f1-8247-9ba27935c9df", + "elapsed-time" : "37", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"211\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"212\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"213\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"214\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"215\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"216\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"217\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"218\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"219\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"220\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "4b1d6628-805a-42e8-a6f2-d4a7161217ab", + "x-ms-client-request-id" : "b3237f62-9828-41f1-8247-9ba27935c9df", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1327e2b6-0415-4bae-b82a-fc1b700a70d2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "be715c25-cf03-4a62-84ee-8252dd59dbd9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1327e2b6-0415-4bae-b82a-fc1b700a70d2", + "request-id" : "be715c25-cf03-4a62-84ee-8252dd59dbd9", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:34 GMT", + "Date" : "Thu, 27 May 2021 21:10:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1327e2b6-0415-4bae-b82a-fc1b700a70d2", - "elapsed-time" : "35", + "client-request-id" : "be715c25-cf03-4a62-84ee-8252dd59dbd9", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"221\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"222\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"223\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"224\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"225\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"226\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"227\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"228\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"229\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"230\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "1327e2b6-0415-4bae-b82a-fc1b700a70d2", + "x-ms-client-request-id" : "be715c25-cf03-4a62-84ee-8252dd59dbd9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c098aab-09da-438d-a5ee-54541563d543", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bb2b2301-a0fd-4813-afd3-ea135f3bd65f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1c098aab-09da-438d-a5ee-54541563d543", + "request-id" : "bb2b2301-a0fd-4813-afd3-ea135f3bd65f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:35 GMT", + "Date" : "Thu, 27 May 2021 21:10:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1c098aab-09da-438d-a5ee-54541563d543", - "elapsed-time" : "39", + "client-request-id" : "bb2b2301-a0fd-4813-afd3-ea135f3bd65f", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"231\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"232\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"233\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"234\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"235\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"236\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"237\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"238\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"239\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"240\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "1c098aab-09da-438d-a5ee-54541563d543", + "x-ms-client-request-id" : "bb2b2301-a0fd-4813-afd3-ea135f3bd65f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ed3e3e3-eda2-41fb-9cf2-314ad89f3569", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bdf5ef2e-3d32-48cb-be1b-721ba5b8a3d1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8ed3e3e3-eda2-41fb-9cf2-314ad89f3569", + "request-id" : "bdf5ef2e-3d32-48cb-be1b-721ba5b8a3d1", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:34 GMT", + "Date" : "Thu, 27 May 2021 21:10:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8ed3e3e3-eda2-41fb-9cf2-314ad89f3569", - "elapsed-time" : "43", + "client-request-id" : "bdf5ef2e-3d32-48cb-be1b-721ba5b8a3d1", + "elapsed-time" : "42", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"241\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"242\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"243\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"244\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"245\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"246\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"247\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"248\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"249\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"250\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "8ed3e3e3-eda2-41fb-9cf2-314ad89f3569", + "x-ms-client-request-id" : "bdf5ef2e-3d32-48cb-be1b-721ba5b8a3d1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9db73b6a-2b91-4786-ae6a-b140394a7a8c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d6d97134-e681-4cc9-8ba9-9bcf27d17451", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9db73b6a-2b91-4786-ae6a-b140394a7a8c", + "request-id" : "d6d97134-e681-4cc9-8ba9-9bcf27d17451", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:35 GMT", + "Date" : "Thu, 27 May 2021 21:10:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9db73b6a-2b91-4786-ae6a-b140394a7a8c", - "elapsed-time" : "39", + "client-request-id" : "d6d97134-e681-4cc9-8ba9-9bcf27d17451", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"251\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"252\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"253\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"254\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"255\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"256\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"257\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"258\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"259\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"260\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "9db73b6a-2b91-4786-ae6a-b140394a7a8c", + "x-ms-client-request-id" : "d6d97134-e681-4cc9-8ba9-9bcf27d17451", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b275ad0a-5ee4-4a02-ae35-b071aa0be42e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f8ea2738-ad34-48d1-8e02-8087ff321bc7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b275ad0a-5ee4-4a02-ae35-b071aa0be42e", + "request-id" : "f8ea2738-ad34-48d1-8e02-8087ff321bc7", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:34 GMT", + "Date" : "Thu, 27 May 2021 21:10:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b275ad0a-5ee4-4a02-ae35-b071aa0be42e", - "elapsed-time" : "44", + "client-request-id" : "f8ea2738-ad34-48d1-8e02-8087ff321bc7", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"261\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"262\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"263\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"264\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"265\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"266\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"267\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"268\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"269\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"270\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "b275ad0a-5ee4-4a02-ae35-b071aa0be42e", + "x-ms-client-request-id" : "f8ea2738-ad34-48d1-8e02-8087ff321bc7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "fe323d61-a4f4-4c97-98ca-15b5a05238a4", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4f14aad8-e4e5-4a01-b147-bf3e0c811651", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "fe323d61-a4f4-4c97-98ca-15b5a05238a4", + "request-id" : "4f14aad8-e4e5-4a01-b147-bf3e0c811651", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:35 GMT", + "Date" : "Thu, 27 May 2021 21:10:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "fe323d61-a4f4-4c97-98ca-15b5a05238a4", + "client-request-id" : "4f14aad8-e4e5-4a01-b147-bf3e0c811651", "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"271\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"272\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"273\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"274\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"275\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"276\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"277\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"278\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"279\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"280\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "fe323d61-a4f4-4c97-98ca-15b5a05238a4", + "x-ms-client-request-id" : "4f14aad8-e4e5-4a01-b147-bf3e0c811651", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "10329c18-a77d-457e-9f1d-0e607926b3a7", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "aff4c0c1-328b-4603-bdcb-f1570709ab74", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "10329c18-a77d-457e-9f1d-0e607926b3a7", + "request-id" : "aff4c0c1-328b-4603-bdcb-f1570709ab74", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:34 GMT", + "Date" : "Thu, 27 May 2021 21:10:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "10329c18-a77d-457e-9f1d-0e607926b3a7", - "elapsed-time" : "43", + "client-request-id" : "aff4c0c1-328b-4603-bdcb-f1570709ab74", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"281\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"282\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"283\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"284\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"285\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"286\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"287\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"288\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"289\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"290\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "10329c18-a77d-457e-9f1d-0e607926b3a7", + "x-ms-client-request-id" : "aff4c0c1-328b-4603-bdcb-f1570709ab74", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6b3f359-d168-4786-aa91-58c95a3b5b2b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "83094382-6a6e-4ba3-9cf8-05ae0aa2b5af", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f6b3f359-d168-4786-aa91-58c95a3b5b2b", + "request-id" : "83094382-6a6e-4ba3-9cf8-05ae0aa2b5af", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:35 GMT", + "Date" : "Thu, 27 May 2021 21:10:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f6b3f359-d168-4786-aa91-58c95a3b5b2b", - "elapsed-time" : "39", + "client-request-id" : "83094382-6a6e-4ba3-9cf8-05ae0aa2b5af", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"291\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"292\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"293\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"294\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"295\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"296\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"297\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"298\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"299\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"300\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "f6b3f359-d168-4786-aa91-58c95a3b5b2b", + "x-ms-client-request-id" : "83094382-6a6e-4ba3-9cf8-05ae0aa2b5af", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1a52baa2-e629-4cb6-bc8d-0285d0a679a1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f4d58ee6-799e-44a4-a3ee-85e99905c572", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1a52baa2-e629-4cb6-bc8d-0285d0a679a1", + "request-id" : "f4d58ee6-799e-44a4-a3ee-85e99905c572", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:35 GMT", + "Date" : "Thu, 27 May 2021 21:10:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1a52baa2-e629-4cb6-bc8d-0285d0a679a1", - "elapsed-time" : "44", + "client-request-id" : "f4d58ee6-799e-44a4-a3ee-85e99905c572", + "elapsed-time" : "39", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"301\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"302\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"303\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"304\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"305\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"306\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"307\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"308\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"309\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"310\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "1a52baa2-e629-4cb6-bc8d-0285d0a679a1", + "x-ms-client-request-id" : "f4d58ee6-799e-44a4-a3ee-85e99905c572", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "712eb6b5-197e-419a-a9e6-9fd755bc186a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5915979e-2874-4a73-ac69-c9eac12895e0", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "712eb6b5-197e-419a-a9e6-9fd755bc186a", + "request-id" : "5915979e-2874-4a73-ac69-c9eac12895e0", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:35 GMT", + "Date" : "Thu, 27 May 2021 21:10:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "712eb6b5-197e-419a-a9e6-9fd755bc186a", - "elapsed-time" : "36", + "client-request-id" : "5915979e-2874-4a73-ac69-c9eac12895e0", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"311\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"312\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"313\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"314\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"315\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"316\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"317\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"318\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"319\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"320\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "712eb6b5-197e-419a-a9e6-9fd755bc186a", + "x-ms-client-request-id" : "5915979e-2874-4a73-ac69-c9eac12895e0", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e6d3a7cb-9e7b-405d-a9a1-69a3b5b7b3b8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "40bb1d5c-61d0-426f-8e83-d52212118669", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e6d3a7cb-9e7b-405d-a9a1-69a3b5b7b3b8", + "request-id" : "40bb1d5c-61d0-426f-8e83-d52212118669", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:35 GMT", + "Date" : "Thu, 27 May 2021 21:10:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e6d3a7cb-9e7b-405d-a9a1-69a3b5b7b3b8", - "elapsed-time" : "41", + "client-request-id" : "40bb1d5c-61d0-426f-8e83-d52212118669", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"321\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"322\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"323\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"324\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"325\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"326\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"327\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"328\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"329\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"330\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "e6d3a7cb-9e7b-405d-a9a1-69a3b5b7b3b8", + "x-ms-client-request-id" : "40bb1d5c-61d0-426f-8e83-d52212118669", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c6e692f-2896-4a61-b103-2c5f04e0f5c1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c3ecea28-3242-43f6-886b-8c68989f5ab5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1c6e692f-2896-4a61-b103-2c5f04e0f5c1", + "request-id" : "c3ecea28-3242-43f6-886b-8c68989f5ab5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:35 GMT", + "Date" : "Thu, 27 May 2021 21:10:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1c6e692f-2896-4a61-b103-2c5f04e0f5c1", - "elapsed-time" : "51", + "client-request-id" : "c3ecea28-3242-43f6-886b-8c68989f5ab5", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"331\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"332\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"333\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"334\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"335\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"336\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"337\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"338\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"339\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"340\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "1c6e692f-2896-4a61-b103-2c5f04e0f5c1", + "x-ms-client-request-id" : "c3ecea28-3242-43f6-886b-8c68989f5ab5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "549f7d45-4c2e-4945-9991-5700d3b06329", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "54e1ed7d-4d1f-465d-8318-869c729dc883", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "549f7d45-4c2e-4945-9991-5700d3b06329", + "request-id" : "54e1ed7d-4d1f-465d-8318-869c729dc883", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:35 GMT", + "Date" : "Thu, 27 May 2021 21:10:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "549f7d45-4c2e-4945-9991-5700d3b06329", - "elapsed-time" : "53", + "client-request-id" : "54e1ed7d-4d1f-465d-8318-869c729dc883", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"341\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"342\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"343\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"344\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"345\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"346\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"347\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"348\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"349\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"350\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "549f7d45-4c2e-4945-9991-5700d3b06329", + "x-ms-client-request-id" : "54e1ed7d-4d1f-465d-8318-869c729dc883", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f45272d6-bcbb-42c2-95ab-31b8a94ce0a2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b2fa32da-5c69-47bc-8e52-ac1ced167e2b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f45272d6-bcbb-42c2-95ab-31b8a94ce0a2", + "request-id" : "b2fa32da-5c69-47bc-8e52-ac1ced167e2b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:35 GMT", + "Date" : "Thu, 27 May 2021 21:10:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f45272d6-bcbb-42c2-95ab-31b8a94ce0a2", - "elapsed-time" : "40", + "client-request-id" : "b2fa32da-5c69-47bc-8e52-ac1ced167e2b", + "elapsed-time" : "38", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"351\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"352\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"353\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"354\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"355\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"356\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"357\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"358\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"359\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"360\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "f45272d6-bcbb-42c2-95ab-31b8a94ce0a2", + "x-ms-client-request-id" : "b2fa32da-5c69-47bc-8e52-ac1ced167e2b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "08b38f6f-7271-4219-be42-fcd32d77867b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "26a0a613-f712-4e32-a8cd-30b21b7b7a99", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "08b38f6f-7271-4219-be42-fcd32d77867b", + "request-id" : "26a0a613-f712-4e32-a8cd-30b21b7b7a99", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:35 GMT", + "Date" : "Thu, 27 May 2021 21:10:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "08b38f6f-7271-4219-be42-fcd32d77867b", + "client-request-id" : "26a0a613-f712-4e32-a8cd-30b21b7b7a99", "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"361\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"362\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"363\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"364\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"365\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"366\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"367\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"368\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"369\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"370\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "08b38f6f-7271-4219-be42-fcd32d77867b", + "x-ms-client-request-id" : "26a0a613-f712-4e32-a8cd-30b21b7b7a99", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1cb17656-1616-4c23-8170-e0e8c56c22c7", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "52ffde22-5536-4fff-a813-76101e990eb2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1cb17656-1616-4c23-8170-e0e8c56c22c7", + "request-id" : "52ffde22-5536-4fff-a813-76101e990eb2", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:35 GMT", + "Date" : "Thu, 27 May 2021 21:10:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1cb17656-1616-4c23-8170-e0e8c56c22c7", - "elapsed-time" : "37", + "client-request-id" : "52ffde22-5536-4fff-a813-76101e990eb2", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"371\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"372\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"373\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"374\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"375\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"376\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"377\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"378\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"379\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"380\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "1cb17656-1616-4c23-8170-e0e8c56c22c7", + "x-ms-client-request-id" : "52ffde22-5536-4fff-a813-76101e990eb2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc7d69b3-a322-4f05-9c0b-fffda0684e1a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d2d95142-df1e-4ca1-9d30-aa681fbc49d5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "cc7d69b3-a322-4f05-9c0b-fffda0684e1a", + "request-id" : "d2d95142-df1e-4ca1-9d30-aa681fbc49d5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:35 GMT", + "Date" : "Thu, 27 May 2021 21:10:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "cc7d69b3-a322-4f05-9c0b-fffda0684e1a", - "elapsed-time" : "37", + "client-request-id" : "d2d95142-df1e-4ca1-9d30-aa681fbc49d5", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"381\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"382\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"383\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"384\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"385\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"386\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"387\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"388\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"389\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"390\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "cc7d69b3-a322-4f05-9c0b-fffda0684e1a", + "x-ms-client-request-id" : "d2d95142-df1e-4ca1-9d30-aa681fbc49d5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e1f5c23b-7f0e-4afb-87a6-7ec18deedbc5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4afb9cea-b546-4862-810a-36b19525d2a5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e1f5c23b-7f0e-4afb-87a6-7ec18deedbc5", + "request-id" : "4afb9cea-b546-4862-810a-36b19525d2a5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:36 GMT", + "Date" : "Thu, 27 May 2021 21:10:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e1f5c23b-7f0e-4afb-87a6-7ec18deedbc5", - "elapsed-time" : "42", + "client-request-id" : "4afb9cea-b546-4862-810a-36b19525d2a5", + "elapsed-time" : "39", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"391\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"392\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"393\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"394\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"395\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"396\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"397\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"398\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"399\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"400\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "e1f5c23b-7f0e-4afb-87a6-7ec18deedbc5", + "x-ms-client-request-id" : "4afb9cea-b546-4862-810a-36b19525d2a5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "96dc8cb7-1787-425e-b5f2-26fcea62df11", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c6e7f6ed-89b8-4145-b4f8-49a6344deac1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "96dc8cb7-1787-425e-b5f2-26fcea62df11", + "request-id" : "c6e7f6ed-89b8-4145-b4f8-49a6344deac1", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:35 GMT", + "Date" : "Thu, 27 May 2021 21:10:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "96dc8cb7-1787-425e-b5f2-26fcea62df11", - "elapsed-time" : "47", + "client-request-id" : "c6e7f6ed-89b8-4145-b4f8-49a6344deac1", + "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"401\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"402\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"403\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"404\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"405\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"406\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"407\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"408\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"409\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"410\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "96dc8cb7-1787-425e-b5f2-26fcea62df11", + "x-ms-client-request-id" : "c6e7f6ed-89b8-4145-b4f8-49a6344deac1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9adc211a-7e25-41da-938f-838dc3ba231b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e05a09a7-e138-4a15-a5a4-8ac21f7df982", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9adc211a-7e25-41da-938f-838dc3ba231b", + "request-id" : "e05a09a7-e138-4a15-a5a4-8ac21f7df982", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:36 GMT", + "Date" : "Thu, 27 May 2021 21:10:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9adc211a-7e25-41da-938f-838dc3ba231b", - "elapsed-time" : "47", + "client-request-id" : "e05a09a7-e138-4a15-a5a4-8ac21f7df982", + "elapsed-time" : "38", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"411\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"412\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"413\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"414\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"415\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"416\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"417\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"418\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"419\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"420\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "9adc211a-7e25-41da-938f-838dc3ba231b", + "x-ms-client-request-id" : "e05a09a7-e138-4a15-a5a4-8ac21f7df982", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f0dc2053-4cbf-45e8-be20-a5d7c6ddd504", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "854b2317-0c7e-413f-be76-346732d115a4", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f0dc2053-4cbf-45e8-be20-a5d7c6ddd504", + "request-id" : "854b2317-0c7e-413f-be76-346732d115a4", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:35 GMT", + "Date" : "Thu, 27 May 2021 21:10:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f0dc2053-4cbf-45e8-be20-a5d7c6ddd504", - "elapsed-time" : "36", + "client-request-id" : "854b2317-0c7e-413f-be76-346732d115a4", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"421\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"422\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"423\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"424\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"425\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"426\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"427\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"428\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"429\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"430\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "f0dc2053-4cbf-45e8-be20-a5d7c6ddd504", + "x-ms-client-request-id" : "854b2317-0c7e-413f-be76-346732d115a4", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ee185c1d-6e6b-4956-b15e-df90f7c80315", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3d351354-2f13-4b06-9407-21f872e81607", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ee185c1d-6e6b-4956-b15e-df90f7c80315", + "request-id" : "3d351354-2f13-4b06-9407-21f872e81607", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:36 GMT", + "Date" : "Thu, 27 May 2021 21:10:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ee185c1d-6e6b-4956-b15e-df90f7c80315", - "elapsed-time" : "37", + "client-request-id" : "3d351354-2f13-4b06-9407-21f872e81607", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"431\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"432\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"433\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"434\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"435\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"436\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"437\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"438\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"439\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"440\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "ee185c1d-6e6b-4956-b15e-df90f7c80315", + "x-ms-client-request-id" : "3d351354-2f13-4b06-9407-21f872e81607", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9798597e-4ab8-48b3-9389-ec087bffb5f8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "df82b3d7-64a9-4c40-85d2-14bbfa5a1d97", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9798597e-4ab8-48b3-9389-ec087bffb5f8", + "request-id" : "df82b3d7-64a9-4c40-85d2-14bbfa5a1d97", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:36 GMT", + "Date" : "Thu, 27 May 2021 21:10:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9798597e-4ab8-48b3-9389-ec087bffb5f8", - "elapsed-time" : "49", + "client-request-id" : "df82b3d7-64a9-4c40-85d2-14bbfa5a1d97", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"441\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"442\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"443\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"444\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"445\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"446\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"447\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"448\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"449\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"450\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "9798597e-4ab8-48b3-9389-ec087bffb5f8", + "x-ms-client-request-id" : "df82b3d7-64a9-4c40-85d2-14bbfa5a1d97", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "30f1e3ed-e36d-460e-9bf3-1c974f3a6f2e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9d9cfec2-cd68-4b62-b7f1-400cbe8e9b08", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "30f1e3ed-e36d-460e-9bf3-1c974f3a6f2e", + "request-id" : "9d9cfec2-cd68-4b62-b7f1-400cbe8e9b08", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:36 GMT", + "Date" : "Thu, 27 May 2021 21:10:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "30f1e3ed-e36d-460e-9bf3-1c974f3a6f2e", - "elapsed-time" : "43", + "client-request-id" : "9d9cfec2-cd68-4b62-b7f1-400cbe8e9b08", + "elapsed-time" : "41", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"451\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"452\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"453\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"454\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"455\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"456\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"457\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"458\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"459\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"460\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "30f1e3ed-e36d-460e-9bf3-1c974f3a6f2e", + "x-ms-client-request-id" : "9d9cfec2-cd68-4b62-b7f1-400cbe8e9b08", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9e02a214-c310-474b-8ce2-992721be1c9f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b4d20999-db76-4535-8ffa-2ffeeeb2f8e3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9e02a214-c310-474b-8ce2-992721be1c9f", + "request-id" : "b4d20999-db76-4535-8ffa-2ffeeeb2f8e3", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:36 GMT", + "Date" : "Thu, 27 May 2021 21:10:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9e02a214-c310-474b-8ce2-992721be1c9f", - "elapsed-time" : "47", + "client-request-id" : "b4d20999-db76-4535-8ffa-2ffeeeb2f8e3", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"461\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"462\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"463\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"464\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"465\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"466\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"467\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"468\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"469\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"470\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "9e02a214-c310-474b-8ce2-992721be1c9f", + "x-ms-client-request-id" : "b4d20999-db76-4535-8ffa-2ffeeeb2f8e3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "294a60c1-22ec-45fe-a490-5f1641499bf6", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5d00cab5-c335-4b54-be8e-3a41bf078ba6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "294a60c1-22ec-45fe-a490-5f1641499bf6", + "request-id" : "5d00cab5-c335-4b54-be8e-3a41bf078ba6", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:36 GMT", + "Date" : "Thu, 27 May 2021 21:10:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "294a60c1-22ec-45fe-a490-5f1641499bf6", - "elapsed-time" : "46", + "client-request-id" : "5d00cab5-c335-4b54-be8e-3a41bf078ba6", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"471\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"472\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"473\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"474\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"475\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"476\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"477\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"478\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"479\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"480\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "294a60c1-22ec-45fe-a490-5f1641499bf6", + "x-ms-client-request-id" : "5d00cab5-c335-4b54-be8e-3a41bf078ba6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "003790e5-5878-421c-93d9-323e174e9fab", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a02e7b22-e8dc-4d68-a54f-5765adfe8e81", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "003790e5-5878-421c-93d9-323e174e9fab", + "request-id" : "a02e7b22-e8dc-4d68-a54f-5765adfe8e81", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:36 GMT", + "Date" : "Thu, 27 May 2021 21:10:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "003790e5-5878-421c-93d9-323e174e9fab", - "elapsed-time" : "39", + "client-request-id" : "a02e7b22-e8dc-4d68-a54f-5765adfe8e81", + "elapsed-time" : "43", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"481\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"482\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"483\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"484\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"485\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"486\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"487\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"488\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"489\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"490\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "003790e5-5878-421c-93d9-323e174e9fab", + "x-ms-client-request-id" : "a02e7b22-e8dc-4d68-a54f-5765adfe8e81", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "15ed5db3-b414-45a8-9fee-5a61369d09e0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "71d56f5e-f01b-4e1e-b090-4098393b91eb", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "15ed5db3-b414-45a8-9fee-5a61369d09e0", + "request-id" : "71d56f5e-f01b-4e1e-b090-4098393b91eb", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:36 GMT", + "Date" : "Thu, 27 May 2021 21:10:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "15ed5db3-b414-45a8-9fee-5a61369d09e0", - "elapsed-time" : "36", + "client-request-id" : "71d56f5e-f01b-4e1e-b090-4098393b91eb", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"491\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"492\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"493\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"494\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"495\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"496\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"497\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"498\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"499\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"500\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "15ed5db3-b414-45a8-9fee-5a61369d09e0", + "x-ms-client-request-id" : "71d56f5e-f01b-4e1e-b090-4098393b91eb", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a1dce926-c06d-46ae-8ab5-b246178ed462", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b7351404-7be1-4506-bea1-08d0325dddc3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a1dce926-c06d-46ae-8ab5-b246178ed462", + "request-id" : "b7351404-7be1-4506-bea1-08d0325dddc3", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:36 GMT", + "Date" : "Thu, 27 May 2021 21:10:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a1dce926-c06d-46ae-8ab5-b246178ed462", - "elapsed-time" : "35", + "client-request-id" : "b7351404-7be1-4506-bea1-08d0325dddc3", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"501\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"502\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"503\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"504\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"505\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"506\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"507\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"508\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"509\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"510\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "a1dce926-c06d-46ae-8ab5-b246178ed462", + "x-ms-client-request-id" : "b7351404-7be1-4506-bea1-08d0325dddc3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cf635da2-5ce3-4f19-80b7-704f1028164a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b8a3ea46-9ecf-4c02-9e7e-4fd375653dbf", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "cf635da2-5ce3-4f19-80b7-704f1028164a", + "request-id" : "b8a3ea46-9ecf-4c02-9e7e-4fd375653dbf", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:36 GMT", + "Date" : "Thu, 27 May 2021 21:10:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "cf635da2-5ce3-4f19-80b7-704f1028164a", - "elapsed-time" : "45", + "client-request-id" : "b8a3ea46-9ecf-4c02-9e7e-4fd375653dbf", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"511\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"512\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"513\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"514\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"515\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"516\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"517\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"518\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"519\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"520\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "cf635da2-5ce3-4f19-80b7-704f1028164a", + "x-ms-client-request-id" : "b8a3ea46-9ecf-4c02-9e7e-4fd375653dbf", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b268f56d-317c-4cfe-a7ee-5941a633792b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5a207dc8-ae83-4346-b0a6-64dd036a4843", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b268f56d-317c-4cfe-a7ee-5941a633792b", + "request-id" : "5a207dc8-ae83-4346-b0a6-64dd036a4843", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:36 GMT", + "Date" : "Thu, 27 May 2021 21:10:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b268f56d-317c-4cfe-a7ee-5941a633792b", - "elapsed-time" : "47", + "client-request-id" : "5a207dc8-ae83-4346-b0a6-64dd036a4843", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"521\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"522\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"523\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"524\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"525\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"526\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"527\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"528\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"529\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"530\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "b268f56d-317c-4cfe-a7ee-5941a633792b", + "x-ms-client-request-id" : "5a207dc8-ae83-4346-b0a6-64dd036a4843", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "98871721-19f9-46d9-9bc3-c940e20c6df1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ccaffa86-253a-4b24-8074-ac0dd7e046d4", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "98871721-19f9-46d9-9bc3-c940e20c6df1", + "request-id" : "ccaffa86-253a-4b24-8074-ac0dd7e046d4", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:37 GMT", + "Date" : "Thu, 27 May 2021 21:10:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "98871721-19f9-46d9-9bc3-c940e20c6df1", - "elapsed-time" : "42", + "client-request-id" : "ccaffa86-253a-4b24-8074-ac0dd7e046d4", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"531\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"532\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"533\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"534\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"535\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"536\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"537\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"538\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"539\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"540\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "98871721-19f9-46d9-9bc3-c940e20c6df1", + "x-ms-client-request-id" : "ccaffa86-253a-4b24-8074-ac0dd7e046d4", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0f84d625-e714-4762-8d74-620a5b4f1d68", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8067d228-f539-4ca2-bfd9-2482aedb13b3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0f84d625-e714-4762-8d74-620a5b4f1d68", + "request-id" : "8067d228-f539-4ca2-bfd9-2482aedb13b3", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:36 GMT", + "Date" : "Thu, 27 May 2021 21:10:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0f84d625-e714-4762-8d74-620a5b4f1d68", - "elapsed-time" : "51", + "client-request-id" : "8067d228-f539-4ca2-bfd9-2482aedb13b3", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"541\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"542\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"543\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"544\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"545\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"546\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"547\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"548\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"549\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"550\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "0f84d625-e714-4762-8d74-620a5b4f1d68", + "x-ms-client-request-id" : "8067d228-f539-4ca2-bfd9-2482aedb13b3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a449773-adc9-499b-b872-24755e45437f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d6daeb48-19f3-4ff8-a208-948b0642ef75", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0a449773-adc9-499b-b872-24755e45437f", + "request-id" : "d6daeb48-19f3-4ff8-a208-948b0642ef75", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:37 GMT", + "Date" : "Thu, 27 May 2021 21:10:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0a449773-adc9-499b-b872-24755e45437f", - "elapsed-time" : "43", + "client-request-id" : "d6daeb48-19f3-4ff8-a208-948b0642ef75", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"551\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"552\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"553\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"554\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"555\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"556\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"557\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"558\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"559\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"560\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "0a449773-adc9-499b-b872-24755e45437f", + "x-ms-client-request-id" : "d6daeb48-19f3-4ff8-a208-948b0642ef75", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a4472012-e930-469a-b3ce-4fae43143b96", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "063880a9-feab-46bd-a2fa-8b596c8b220d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a4472012-e930-469a-b3ce-4fae43143b96", + "request-id" : "063880a9-feab-46bd-a2fa-8b596c8b220d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:36 GMT", + "Date" : "Thu, 27 May 2021 21:10:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a4472012-e930-469a-b3ce-4fae43143b96", - "elapsed-time" : "61", + "client-request-id" : "063880a9-feab-46bd-a2fa-8b596c8b220d", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"561\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"562\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"563\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"564\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"565\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"566\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"567\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"568\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"569\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"570\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "a4472012-e930-469a-b3ce-4fae43143b96", + "x-ms-client-request-id" : "063880a9-feab-46bd-a2fa-8b596c8b220d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a95fc673-cd86-4dfb-ba3c-1347b81dae7e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8f8a3685-14da-4f1e-aa2f-87a2c355ab8a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a95fc673-cd86-4dfb-ba3c-1347b81dae7e", + "request-id" : "8f8a3685-14da-4f1e-aa2f-87a2c355ab8a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:37 GMT", + "Date" : "Thu, 27 May 2021 21:10:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a95fc673-cd86-4dfb-ba3c-1347b81dae7e", - "elapsed-time" : "44", + "client-request-id" : "8f8a3685-14da-4f1e-aa2f-87a2c355ab8a", + "elapsed-time" : "37", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"571\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"572\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"573\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"574\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"575\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"576\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"577\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"578\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"579\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"580\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "a95fc673-cd86-4dfb-ba3c-1347b81dae7e", + "x-ms-client-request-id" : "8f8a3685-14da-4f1e-aa2f-87a2c355ab8a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6356bb75-a92f-4ff3-acec-ee1a7d5ff4ba", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0baf3f58-e9ee-4995-a6a3-54784c7a85b8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6356bb75-a92f-4ff3-acec-ee1a7d5ff4ba", + "request-id" : "0baf3f58-e9ee-4995-a6a3-54784c7a85b8", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:37 GMT", + "Date" : "Thu, 27 May 2021 21:10:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6356bb75-a92f-4ff3-acec-ee1a7d5ff4ba", - "elapsed-time" : "45", + "client-request-id" : "0baf3f58-e9ee-4995-a6a3-54784c7a85b8", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"581\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"582\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"583\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"584\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"585\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"586\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"587\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"588\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"589\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"590\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "6356bb75-a92f-4ff3-acec-ee1a7d5ff4ba", + "x-ms-client-request-id" : "0baf3f58-e9ee-4995-a6a3-54784c7a85b8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f4065f6a-7348-417d-abe4-e8a979354119", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "40ad48f1-2a0b-4462-b359-84f51a71666b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f4065f6a-7348-417d-abe4-e8a979354119", + "request-id" : "40ad48f1-2a0b-4462-b359-84f51a71666b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:37 GMT", + "Date" : "Thu, 27 May 2021 21:10:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f4065f6a-7348-417d-abe4-e8a979354119", - "elapsed-time" : "51", + "client-request-id" : "40ad48f1-2a0b-4462-b359-84f51a71666b", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"591\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"592\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"593\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"594\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"595\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"596\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"597\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"598\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"599\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"600\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "f4065f6a-7348-417d-abe4-e8a979354119", + "x-ms-client-request-id" : "40ad48f1-2a0b-4462-b359-84f51a71666b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b33285e3-00a3-4259-9225-d35c5b71be1e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "336e4264-b6fa-4948-92eb-d19a3e8272ba", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b33285e3-00a3-4259-9225-d35c5b71be1e", + "request-id" : "336e4264-b6fa-4948-92eb-d19a3e8272ba", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:37 GMT", + "Date" : "Thu, 27 May 2021 21:10:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b33285e3-00a3-4259-9225-d35c5b71be1e", - "elapsed-time" : "53", + "client-request-id" : "336e4264-b6fa-4948-92eb-d19a3e8272ba", + "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"601\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"602\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"603\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"604\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"605\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"606\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"607\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"608\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"609\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"610\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "b33285e3-00a3-4259-9225-d35c5b71be1e", + "x-ms-client-request-id" : "336e4264-b6fa-4948-92eb-d19a3e8272ba", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c097c41a-e93e-47de-a68e-90e20d056340", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "65453b83-4250-436a-96a5-37b15de04d81", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c097c41a-e93e-47de-a68e-90e20d056340", + "request-id" : "65453b83-4250-436a-96a5-37b15de04d81", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:37 GMT", + "Date" : "Thu, 27 May 2021 21:10:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c097c41a-e93e-47de-a68e-90e20d056340", - "elapsed-time" : "42", + "client-request-id" : "65453b83-4250-436a-96a5-37b15de04d81", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"611\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"612\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"613\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"614\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"615\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"616\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"617\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"618\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"619\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"620\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "c097c41a-e93e-47de-a68e-90e20d056340", + "x-ms-client-request-id" : "65453b83-4250-436a-96a5-37b15de04d81", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5897c04e-30be-4e2d-bc21-1bd30bd68081", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "76377747-68ee-4cd1-b6cc-e61632fdf1d1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5897c04e-30be-4e2d-bc21-1bd30bd68081", + "request-id" : "76377747-68ee-4cd1-b6cc-e61632fdf1d1", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:37 GMT", + "Date" : "Thu, 27 May 2021 21:10:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5897c04e-30be-4e2d-bc21-1bd30bd68081", - "elapsed-time" : "48", + "client-request-id" : "76377747-68ee-4cd1-b6cc-e61632fdf1d1", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"621\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"622\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"623\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"624\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"625\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"626\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"627\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"628\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"629\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"630\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "5897c04e-30be-4e2d-bc21-1bd30bd68081", + "x-ms-client-request-id" : "76377747-68ee-4cd1-b6cc-e61632fdf1d1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f1683f44-5afd-4d8d-83b4-2afd713fc66c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d28d0f7c-12b4-4391-af1b-93b9cc48672b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f1683f44-5afd-4d8d-83b4-2afd713fc66c", + "request-id" : "d28d0f7c-12b4-4391-af1b-93b9cc48672b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:37 GMT", + "Date" : "Thu, 27 May 2021 21:10:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f1683f44-5afd-4d8d-83b4-2afd713fc66c", - "elapsed-time" : "43", + "client-request-id" : "d28d0f7c-12b4-4391-af1b-93b9cc48672b", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"631\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"632\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"633\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"634\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"635\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"636\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"637\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"638\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"639\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"640\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "f1683f44-5afd-4d8d-83b4-2afd713fc66c", + "x-ms-client-request-id" : "d28d0f7c-12b4-4391-af1b-93b9cc48672b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "76f48e8f-09c4-442f-98a3-94b92d4eef11", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8972c910-842b-407a-b7e2-86aefe2f170f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "76f48e8f-09c4-442f-98a3-94b92d4eef11", + "request-id" : "8972c910-842b-407a-b7e2-86aefe2f170f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:37 GMT", + "Date" : "Thu, 27 May 2021 21:10:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "76f48e8f-09c4-442f-98a3-94b92d4eef11", - "elapsed-time" : "50", + "client-request-id" : "8972c910-842b-407a-b7e2-86aefe2f170f", + "elapsed-time" : "39", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"641\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"642\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"643\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"644\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"645\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"646\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"647\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"648\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"649\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"650\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "76f48e8f-09c4-442f-98a3-94b92d4eef11", + "x-ms-client-request-id" : "8972c910-842b-407a-b7e2-86aefe2f170f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4b5390b2-e185-402a-aa97-5a6d80686c11", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4221c6d2-591a-404e-abaa-50398627c2ca", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4b5390b2-e185-402a-aa97-5a6d80686c11", + "request-id" : "4221c6d2-591a-404e-abaa-50398627c2ca", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:37 GMT", + "Date" : "Thu, 27 May 2021 21:10:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4b5390b2-e185-402a-aa97-5a6d80686c11", - "elapsed-time" : "56", + "client-request-id" : "4221c6d2-591a-404e-abaa-50398627c2ca", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"651\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"652\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"653\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"654\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"655\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"656\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"657\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"658\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"659\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"660\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "4b5390b2-e185-402a-aa97-5a6d80686c11", + "x-ms-client-request-id" : "4221c6d2-591a-404e-abaa-50398627c2ca", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4cccf399-3212-4d4b-be82-f9a8ae196317", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1aca4851-16b2-4cbd-ae91-f3fab8f58dd8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4cccf399-3212-4d4b-be82-f9a8ae196317", + "request-id" : "1aca4851-16b2-4cbd-ae91-f3fab8f58dd8", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:37 GMT", + "Date" : "Thu, 27 May 2021 21:10:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4cccf399-3212-4d4b-be82-f9a8ae196317", - "elapsed-time" : "51", + "client-request-id" : "1aca4851-16b2-4cbd-ae91-f3fab8f58dd8", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"661\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"662\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"663\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"664\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"665\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"666\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"667\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"668\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"669\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"670\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "4cccf399-3212-4d4b-be82-f9a8ae196317", + "x-ms-client-request-id" : "1aca4851-16b2-4cbd-ae91-f3fab8f58dd8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e8cfe538-4442-4a2c-a88e-b9973d31b77e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b1b58d5b-668b-4c4c-aeca-408db209d3db", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e8cfe538-4442-4a2c-a88e-b9973d31b77e", + "request-id" : "b1b58d5b-668b-4c4c-aeca-408db209d3db", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:38 GMT", + "Date" : "Thu, 27 May 2021 21:10:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e8cfe538-4442-4a2c-a88e-b9973d31b77e", - "elapsed-time" : "45", + "client-request-id" : "b1b58d5b-668b-4c4c-aeca-408db209d3db", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"671\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"672\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"673\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"674\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"675\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"676\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"677\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"678\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"679\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"680\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "e8cfe538-4442-4a2c-a88e-b9973d31b77e", + "x-ms-client-request-id" : "b1b58d5b-668b-4c4c-aeca-408db209d3db", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "49ad689c-6b9d-4fe0-b41e-e236d4dd910d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ae081a76-94dc-4599-a5cd-0472baa95300", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "49ad689c-6b9d-4fe0-b41e-e236d4dd910d", + "request-id" : "ae081a76-94dc-4599-a5cd-0472baa95300", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:37 GMT", + "Date" : "Thu, 27 May 2021 21:10:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "49ad689c-6b9d-4fe0-b41e-e236d4dd910d", - "elapsed-time" : "47", + "client-request-id" : "ae081a76-94dc-4599-a5cd-0472baa95300", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"681\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"682\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"683\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"684\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"685\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"686\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"687\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"688\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"689\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"690\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "49ad689c-6b9d-4fe0-b41e-e236d4dd910d", + "x-ms-client-request-id" : "ae081a76-94dc-4599-a5cd-0472baa95300", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f78d1043-4e21-4730-bd12-90b9c122f82d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f26307f9-628a-4b96-909f-350bd8aa3fd4", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f78d1043-4e21-4730-bd12-90b9c122f82d", + "request-id" : "f26307f9-628a-4b96-909f-350bd8aa3fd4", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:38 GMT", + "Date" : "Thu, 27 May 2021 21:10:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f78d1043-4e21-4730-bd12-90b9c122f82d", - "elapsed-time" : "58", + "client-request-id" : "f26307f9-628a-4b96-909f-350bd8aa3fd4", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"691\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"692\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"693\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"694\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"695\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"696\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"697\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"698\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"699\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"700\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "f78d1043-4e21-4730-bd12-90b9c122f82d", + "x-ms-client-request-id" : "f26307f9-628a-4b96-909f-350bd8aa3fd4", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a87aae53-fd4d-4c98-a0e4-180e52f8ebd5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5aa0ed7f-f02a-47af-9111-9d88d5040f42", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a87aae53-fd4d-4c98-a0e4-180e52f8ebd5", + "request-id" : "5aa0ed7f-f02a-47af-9111-9d88d5040f42", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:37 GMT", + "Date" : "Thu, 27 May 2021 21:10:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a87aae53-fd4d-4c98-a0e4-180e52f8ebd5", - "elapsed-time" : "50", + "client-request-id" : "5aa0ed7f-f02a-47af-9111-9d88d5040f42", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"701\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"702\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"703\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"704\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"705\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"706\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"707\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"708\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"709\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"710\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "a87aae53-fd4d-4c98-a0e4-180e52f8ebd5", + "x-ms-client-request-id" : "5aa0ed7f-f02a-47af-9111-9d88d5040f42", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "014c05a1-fd5d-4708-996c-ee4eade345e1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "61bff6aa-8eea-4aed-988d-b5e88a4b2a58", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "014c05a1-fd5d-4708-996c-ee4eade345e1", + "request-id" : "61bff6aa-8eea-4aed-988d-b5e88a4b2a58", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:38 GMT", + "Date" : "Thu, 27 May 2021 21:10:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "014c05a1-fd5d-4708-996c-ee4eade345e1", - "elapsed-time" : "42", + "client-request-id" : "61bff6aa-8eea-4aed-988d-b5e88a4b2a58", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"711\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"712\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"713\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"714\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"715\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"716\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"717\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"718\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"719\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"720\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "014c05a1-fd5d-4708-996c-ee4eade345e1", + "x-ms-client-request-id" : "61bff6aa-8eea-4aed-988d-b5e88a4b2a58", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4b0b52b2-437a-4e92-96ff-b7b6725b997f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2020cc4b-8c4e-45ad-85d8-7f0022227966", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4b0b52b2-437a-4e92-96ff-b7b6725b997f", + "request-id" : "2020cc4b-8c4e-45ad-85d8-7f0022227966", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:39 GMT", + "Date" : "Thu, 27 May 2021 21:10:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4b0b52b2-437a-4e92-96ff-b7b6725b997f", - "elapsed-time" : "55", + "client-request-id" : "2020cc4b-8c4e-45ad-85d8-7f0022227966", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"721\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"722\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"723\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"724\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"725\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"726\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"727\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"728\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"729\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"730\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "4b0b52b2-437a-4e92-96ff-b7b6725b997f", + "x-ms-client-request-id" : "2020cc4b-8c4e-45ad-85d8-7f0022227966", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "226109ca-09eb-4ce6-8d3e-a1709d24a7f4", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "71bdb09b-c363-4323-82f9-cfaf5774f11a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "226109ca-09eb-4ce6-8d3e-a1709d24a7f4", + "request-id" : "71bdb09b-c363-4323-82f9-cfaf5774f11a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:38 GMT", + "Date" : "Thu, 27 May 2021 21:10:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "226109ca-09eb-4ce6-8d3e-a1709d24a7f4", - "elapsed-time" : "63", + "client-request-id" : "71bdb09b-c363-4323-82f9-cfaf5774f11a", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"731\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"732\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"733\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"734\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"735\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"736\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"737\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"738\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"739\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"740\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "226109ca-09eb-4ce6-8d3e-a1709d24a7f4", + "x-ms-client-request-id" : "71bdb09b-c363-4323-82f9-cfaf5774f11a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6261c5e9-2d13-467e-b05f-b5070574b5e5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d1a965a0-eee7-4c81-8021-8e8c55abd628", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6261c5e9-2d13-467e-b05f-b5070574b5e5", + "request-id" : "d1a965a0-eee7-4c81-8021-8e8c55abd628", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:39 GMT", + "Date" : "Thu, 27 May 2021 21:10:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6261c5e9-2d13-467e-b05f-b5070574b5e5", - "elapsed-time" : "45", + "client-request-id" : "d1a965a0-eee7-4c81-8021-8e8c55abd628", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"741\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"742\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"743\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"744\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"745\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"746\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"747\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"748\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"749\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"750\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "6261c5e9-2d13-467e-b05f-b5070574b5e5", + "x-ms-client-request-id" : "d1a965a0-eee7-4c81-8021-8e8c55abd628", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "495093a3-d7f3-41cf-92fd-caa49d10f4e2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "634ca973-18b2-4182-8cc2-f62ed1a07f90", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "495093a3-d7f3-41cf-92fd-caa49d10f4e2", + "request-id" : "634ca973-18b2-4182-8cc2-f62ed1a07f90", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:38 GMT", + "Date" : "Thu, 27 May 2021 21:10:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "495093a3-d7f3-41cf-92fd-caa49d10f4e2", - "elapsed-time" : "48", + "client-request-id" : "634ca973-18b2-4182-8cc2-f62ed1a07f90", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"751\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"752\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"753\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"754\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"755\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"756\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"757\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"758\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"759\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"760\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "495093a3-d7f3-41cf-92fd-caa49d10f4e2", + "x-ms-client-request-id" : "634ca973-18b2-4182-8cc2-f62ed1a07f90", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "df851eb9-98ef-4059-baa3-ea75652d7b6c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1c0f505a-30f7-40bf-884b-1115081a366f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "df851eb9-98ef-4059-baa3-ea75652d7b6c", + "request-id" : "1c0f505a-30f7-40bf-884b-1115081a366f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:39 GMT", + "Date" : "Thu, 27 May 2021 21:10:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "df851eb9-98ef-4059-baa3-ea75652d7b6c", - "elapsed-time" : "41", + "client-request-id" : "1c0f505a-30f7-40bf-884b-1115081a366f", + "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"761\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"762\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"763\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"764\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"765\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"766\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"767\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"768\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"769\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"770\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "df851eb9-98ef-4059-baa3-ea75652d7b6c", + "x-ms-client-request-id" : "1c0f505a-30f7-40bf-884b-1115081a366f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7e19ce9f-d495-4bf2-88f1-8930f31e4852", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7e69b693-3191-4764-9771-37dcad7ecf12", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7e19ce9f-d495-4bf2-88f1-8930f31e4852", + "request-id" : "7e69b693-3191-4764-9771-37dcad7ecf12", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:38 GMT", + "Date" : "Thu, 27 May 2021 21:10:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7e19ce9f-d495-4bf2-88f1-8930f31e4852", - "elapsed-time" : "51", + "client-request-id" : "7e69b693-3191-4764-9771-37dcad7ecf12", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"771\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"772\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"773\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"774\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"775\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"776\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"777\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"778\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"779\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"780\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "7e19ce9f-d495-4bf2-88f1-8930f31e4852", + "x-ms-client-request-id" : "7e69b693-3191-4764-9771-37dcad7ecf12", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a91ef5f9-187a-46bf-bb88-2090076996c9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3a312987-695a-41ac-92f2-b4d8b040bafb", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a91ef5f9-187a-46bf-bb88-2090076996c9", + "request-id" : "3a312987-695a-41ac-92f2-b4d8b040bafb", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:39 GMT", + "Date" : "Thu, 27 May 2021 21:10:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a91ef5f9-187a-46bf-bb88-2090076996c9", - "elapsed-time" : "42", + "client-request-id" : "3a312987-695a-41ac-92f2-b4d8b040bafb", + "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"781\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"782\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"783\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"784\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"785\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"786\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"787\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"788\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"789\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"790\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "a91ef5f9-187a-46bf-bb88-2090076996c9", + "x-ms-client-request-id" : "3a312987-695a-41ac-92f2-b4d8b040bafb", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bf3cf774-a952-4200-9e5e-d50959ab5039", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "24a8b405-fcca-48f5-9849-0845c2ba08bf", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "bf3cf774-a952-4200-9e5e-d50959ab5039", + "request-id" : "24a8b405-fcca-48f5-9849-0845c2ba08bf", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:39 GMT", + "Date" : "Thu, 27 May 2021 21:10:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "bf3cf774-a952-4200-9e5e-d50959ab5039", - "elapsed-time" : "46", + "client-request-id" : "24a8b405-fcca-48f5-9849-0845c2ba08bf", + "elapsed-time" : "45", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"791\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"792\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"793\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"794\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"795\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"796\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"797\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"798\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"799\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"800\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "bf3cf774-a952-4200-9e5e-d50959ab5039", + "x-ms-client-request-id" : "24a8b405-fcca-48f5-9849-0845c2ba08bf", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8cc0b70c-9483-4e00-8224-99879c093d5d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ae1d2463-d8bf-40a8-bf38-0a077cd833b6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8cc0b70c-9483-4e00-8224-99879c093d5d", + "request-id" : "ae1d2463-d8bf-40a8-bf38-0a077cd833b6", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:39 GMT", + "Date" : "Thu, 27 May 2021 21:10:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8cc0b70c-9483-4e00-8224-99879c093d5d", - "elapsed-time" : "43", + "client-request-id" : "ae1d2463-d8bf-40a8-bf38-0a077cd833b6", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"801\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"802\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"803\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"804\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"805\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"806\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"807\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"808\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"809\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"810\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "8cc0b70c-9483-4e00-8224-99879c093d5d", + "x-ms-client-request-id" : "ae1d2463-d8bf-40a8-bf38-0a077cd833b6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4c4fc946-adc5-47d9-bfce-4c740ad3e183", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8fafdb00-508d-40ca-9060-5ed0b3e0ace5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4c4fc946-adc5-47d9-bfce-4c740ad3e183", + "request-id" : "8fafdb00-508d-40ca-9060-5ed0b3e0ace5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:39 GMT", + "Date" : "Thu, 27 May 2021 21:10:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4c4fc946-adc5-47d9-bfce-4c740ad3e183", - "elapsed-time" : "38", + "client-request-id" : "8fafdb00-508d-40ca-9060-5ed0b3e0ace5", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"811\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"812\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"813\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"814\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"815\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"816\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"817\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"818\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"819\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"820\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "4c4fc946-adc5-47d9-bfce-4c740ad3e183", + "x-ms-client-request-id" : "8fafdb00-508d-40ca-9060-5ed0b3e0ace5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "52b9c204-5d9e-4ebc-ac7d-9efb6cb17bba", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e35fc265-1eff-4655-bfb9-e378de586ebf", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "52b9c204-5d9e-4ebc-ac7d-9efb6cb17bba", + "request-id" : "e35fc265-1eff-4655-bfb9-e378de586ebf", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:39 GMT", + "Date" : "Thu, 27 May 2021 21:10:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "52b9c204-5d9e-4ebc-ac7d-9efb6cb17bba", - "elapsed-time" : "41", + "client-request-id" : "e35fc265-1eff-4655-bfb9-e378de586ebf", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"821\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"822\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"823\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"824\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"825\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"826\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"827\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"828\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"829\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"830\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "52b9c204-5d9e-4ebc-ac7d-9efb6cb17bba", + "x-ms-client-request-id" : "e35fc265-1eff-4655-bfb9-e378de586ebf", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "35ff4e37-8804-4d06-a994-ad6702be77f9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "070240a9-b810-4bba-97be-5c594d2c66fd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "35ff4e37-8804-4d06-a994-ad6702be77f9", + "request-id" : "070240a9-b810-4bba-97be-5c594d2c66fd", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:39 GMT", + "Date" : "Thu, 27 May 2021 21:10:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "35ff4e37-8804-4d06-a994-ad6702be77f9", - "elapsed-time" : "81", + "client-request-id" : "070240a9-b810-4bba-97be-5c594d2c66fd", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"831\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"832\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"833\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"834\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"835\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"836\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"837\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"838\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"839\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"840\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "35ff4e37-8804-4d06-a994-ad6702be77f9", + "x-ms-client-request-id" : "070240a9-b810-4bba-97be-5c594d2c66fd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "256a7908-7c91-440f-8736-129690be0d03", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5b0959c5-337a-4ac3-914e-3cd4d71b56ee", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "256a7908-7c91-440f-8736-129690be0d03", + "request-id" : "5b0959c5-337a-4ac3-914e-3cd4d71b56ee", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:39 GMT", + "Date" : "Thu, 27 May 2021 21:10:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "256a7908-7c91-440f-8736-129690be0d03", - "elapsed-time" : "44", + "client-request-id" : "5b0959c5-337a-4ac3-914e-3cd4d71b56ee", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"841\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"842\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"843\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"844\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"845\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"846\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"847\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"848\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"849\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"850\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "256a7908-7c91-440f-8736-129690be0d03", + "x-ms-client-request-id" : "5b0959c5-337a-4ac3-914e-3cd4d71b56ee", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2f0f1acc-fff0-4d64-9279-6e49fb59a23c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bf61a3e0-929a-402e-b941-8a91dff30af2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2f0f1acc-fff0-4d64-9279-6e49fb59a23c", + "request-id" : "bf61a3e0-929a-402e-b941-8a91dff30af2", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:39 GMT", + "Date" : "Thu, 27 May 2021 21:10:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2f0f1acc-fff0-4d64-9279-6e49fb59a23c", - "elapsed-time" : "45", + "client-request-id" : "bf61a3e0-929a-402e-b941-8a91dff30af2", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"851\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"852\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"853\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"854\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"855\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"856\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"857\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"858\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"859\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"860\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "2f0f1acc-fff0-4d64-9279-6e49fb59a23c", + "x-ms-client-request-id" : "bf61a3e0-929a-402e-b941-8a91dff30af2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b8619d8-83d8-4545-aec6-4fb74456f4c4", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7e7918cd-602c-4a9c-9765-ae9876c226ac", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6b8619d8-83d8-4545-aec6-4fb74456f4c4", + "request-id" : "7e7918cd-602c-4a9c-9765-ae9876c226ac", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:40 GMT", + "Date" : "Thu, 27 May 2021 21:10:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6b8619d8-83d8-4545-aec6-4fb74456f4c4", - "elapsed-time" : "42", + "client-request-id" : "7e7918cd-602c-4a9c-9765-ae9876c226ac", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"861\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"862\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"863\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"864\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"865\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"866\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"867\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"868\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"869\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"870\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "6b8619d8-83d8-4545-aec6-4fb74456f4c4", + "x-ms-client-request-id" : "7e7918cd-602c-4a9c-9765-ae9876c226ac", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1fba0ce3-1bd6-4ac2-946a-c4ab3531c298", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "78a1b1ce-a328-42d4-a418-a48c9991c3cb", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1fba0ce3-1bd6-4ac2-946a-c4ab3531c298", + "request-id" : "78a1b1ce-a328-42d4-a418-a48c9991c3cb", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:39 GMT", + "Date" : "Thu, 27 May 2021 21:10:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1fba0ce3-1bd6-4ac2-946a-c4ab3531c298", - "elapsed-time" : "31", + "client-request-id" : "78a1b1ce-a328-42d4-a418-a48c9991c3cb", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"871\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"872\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"873\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"874\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"875\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"876\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"877\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"878\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"879\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"880\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "1fba0ce3-1bd6-4ac2-946a-c4ab3531c298", + "x-ms-client-request-id" : "78a1b1ce-a328-42d4-a418-a48c9991c3cb", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3ad8aca0-d5a2-4201-a8f3-80068b755866", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e363004c-10ad-4536-be83-7de061cb5da4", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3ad8aca0-d5a2-4201-a8f3-80068b755866", + "request-id" : "e363004c-10ad-4536-be83-7de061cb5da4", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:40 GMT", + "Date" : "Thu, 27 May 2021 21:10:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3ad8aca0-d5a2-4201-a8f3-80068b755866", - "elapsed-time" : "40", + "client-request-id" : "e363004c-10ad-4536-be83-7de061cb5da4", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"881\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"882\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"883\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"884\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"885\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"886\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"887\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"888\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"889\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"890\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "3ad8aca0-d5a2-4201-a8f3-80068b755866", + "x-ms-client-request-id" : "e363004c-10ad-4536-be83-7de061cb5da4", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e425383-9503-43e0-9c55-ae1828b7b327", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "92d62db6-7a9e-4886-867a-1c627058b8a1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0e425383-9503-43e0-9c55-ae1828b7b327", + "request-id" : "92d62db6-7a9e-4886-867a-1c627058b8a1", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:39 GMT", + "Date" : "Thu, 27 May 2021 21:10:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0e425383-9503-43e0-9c55-ae1828b7b327", - "elapsed-time" : "49", + "client-request-id" : "92d62db6-7a9e-4886-867a-1c627058b8a1", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"891\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"892\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"893\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"894\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"895\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"896\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"897\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"898\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"899\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"900\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "0e425383-9503-43e0-9c55-ae1828b7b327", + "x-ms-client-request-id" : "92d62db6-7a9e-4886-867a-1c627058b8a1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f09cd697-1b35-4ee5-aef3-b4750a9c6eba", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "50a931c7-1b53-4a1b-a729-4b83c69bd697", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f09cd697-1b35-4ee5-aef3-b4750a9c6eba", + "request-id" : "50a931c7-1b53-4a1b-a729-4b83c69bd697", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:40 GMT", + "Date" : "Thu, 27 May 2021 21:10:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f09cd697-1b35-4ee5-aef3-b4750a9c6eba", - "elapsed-time" : "37", + "client-request-id" : "50a931c7-1b53-4a1b-a729-4b83c69bd697", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"901\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"902\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"903\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"904\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"905\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"906\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"907\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"908\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"909\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"910\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "f09cd697-1b35-4ee5-aef3-b4750a9c6eba", + "x-ms-client-request-id" : "50a931c7-1b53-4a1b-a729-4b83c69bd697", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "242dc753-7cce-4f04-9e25-faf4dfb67271", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b462c5ab-c9b8-4e53-84d0-ad1bf98c4ad6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "242dc753-7cce-4f04-9e25-faf4dfb67271", + "request-id" : "b462c5ab-c9b8-4e53-84d0-ad1bf98c4ad6", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:39 GMT", + "Date" : "Thu, 27 May 2021 21:10:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "242dc753-7cce-4f04-9e25-faf4dfb67271", - "elapsed-time" : "39", + "client-request-id" : "b462c5ab-c9b8-4e53-84d0-ad1bf98c4ad6", + "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"911\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"912\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"913\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"914\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"915\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"916\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"917\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"918\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"919\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"920\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "242dc753-7cce-4f04-9e25-faf4dfb67271", + "x-ms-client-request-id" : "b462c5ab-c9b8-4e53-84d0-ad1bf98c4ad6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9a03e043-3a9a-4fb0-b2c2-d97b7a3b86c8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "98049e8a-936e-4ffb-ba54-8af71edb02b2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9a03e043-3a9a-4fb0-b2c2-d97b7a3b86c8", + "request-id" : "98049e8a-936e-4ffb-ba54-8af71edb02b2", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:40 GMT", + "Date" : "Thu, 27 May 2021 21:10:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9a03e043-3a9a-4fb0-b2c2-d97b7a3b86c8", - "elapsed-time" : "42", + "client-request-id" : "98049e8a-936e-4ffb-ba54-8af71edb02b2", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"921\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"922\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"923\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"924\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"925\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"926\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"927\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"928\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"929\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"930\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "9a03e043-3a9a-4fb0-b2c2-d97b7a3b86c8", + "x-ms-client-request-id" : "98049e8a-936e-4ffb-ba54-8af71edb02b2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "dc0b1e4c-61a4-4eb9-b450-979271edd338", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2d6542d5-0d7c-4871-9b0f-ea7d967cfba6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "dc0b1e4c-61a4-4eb9-b450-979271edd338", + "request-id" : "2d6542d5-0d7c-4871-9b0f-ea7d967cfba6", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:40 GMT", + "Date" : "Thu, 27 May 2021 21:10:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "dc0b1e4c-61a4-4eb9-b450-979271edd338", - "elapsed-time" : "44", + "client-request-id" : "2d6542d5-0d7c-4871-9b0f-ea7d967cfba6", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"931\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"932\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"933\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"934\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"935\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"936\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"937\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"938\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"939\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"940\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "dc0b1e4c-61a4-4eb9-b450-979271edd338", + "x-ms-client-request-id" : "2d6542d5-0d7c-4871-9b0f-ea7d967cfba6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5ea38a06-8bd4-4cba-82d2-52aea66249a0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ff9d742f-fa48-4b28-80fa-b42ad7478254", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5ea38a06-8bd4-4cba-82d2-52aea66249a0", + "request-id" : "ff9d742f-fa48-4b28-80fa-b42ad7478254", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:40 GMT", + "Date" : "Thu, 27 May 2021 21:10:55 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5ea38a06-8bd4-4cba-82d2-52aea66249a0", - "elapsed-time" : "36", + "client-request-id" : "ff9d742f-fa48-4b28-80fa-b42ad7478254", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"941\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"942\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"943\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"944\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"945\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"946\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"947\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"948\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"949\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"950\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "5ea38a06-8bd4-4cba-82d2-52aea66249a0", + "x-ms-client-request-id" : "ff9d742f-fa48-4b28-80fa-b42ad7478254", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "aa18b31e-6f69-4f99-9fe0-1a173b467b72", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "83f81eaf-8143-4b45-bca3-d7a5e703a5e7", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "aa18b31e-6f69-4f99-9fe0-1a173b467b72", + "request-id" : "83f81eaf-8143-4b45-bca3-d7a5e703a5e7", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:40 GMT", + "Date" : "Thu, 27 May 2021 21:10:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "aa18b31e-6f69-4f99-9fe0-1a173b467b72", + "client-request-id" : "83f81eaf-8143-4b45-bca3-d7a5e703a5e7", "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"951\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"952\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"953\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"954\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"955\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"956\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"957\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"958\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"959\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"960\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "aa18b31e-6f69-4f99-9fe0-1a173b467b72", + "x-ms-client-request-id" : "83f81eaf-8143-4b45-bca3-d7a5e703a5e7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b399f2e-f14f-4ce3-ad82-f36e1984f60a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "15a264a0-9b45-425f-aa01-c08e5882143d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3b399f2e-f14f-4ce3-ad82-f36e1984f60a", + "request-id" : "15a264a0-9b45-425f-aa01-c08e5882143d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:40 GMT", + "Date" : "Thu, 27 May 2021 21:10:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3b399f2e-f14f-4ce3-ad82-f36e1984f60a", - "elapsed-time" : "37", + "client-request-id" : "15a264a0-9b45-425f-aa01-c08e5882143d", + "elapsed-time" : "43", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"961\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"962\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"963\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"964\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"965\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"966\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"967\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"968\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"969\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"970\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "3b399f2e-f14f-4ce3-ad82-f36e1984f60a", + "x-ms-client-request-id" : "15a264a0-9b45-425f-aa01-c08e5882143d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "11f426f1-ac9f-4259-be3e-c73d1ff41a25", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3c9e4d8b-c487-4e91-a8d4-05e90f158bb0", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "11f426f1-ac9f-4259-be3e-c73d1ff41a25", + "request-id" : "3c9e4d8b-c487-4e91-a8d4-05e90f158bb0", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:40 GMT", + "Date" : "Thu, 27 May 2021 21:10:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "11f426f1-ac9f-4259-be3e-c73d1ff41a25", - "elapsed-time" : "40", + "client-request-id" : "3c9e4d8b-c487-4e91-a8d4-05e90f158bb0", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"971\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"972\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"973\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"974\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"975\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"976\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"977\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"978\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"979\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"980\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "11f426f1-ac9f-4259-be3e-c73d1ff41a25", + "x-ms-client-request-id" : "3c9e4d8b-c487-4e91-a8d4-05e90f158bb0", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "71bb9782-428b-416b-a8c4-9d3036207b1e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "58a6f34c-414b-4387-8ec3-68eff4a56968", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "661", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "71bb9782-428b-416b-a8c4-9d3036207b1e", + "request-id" : "58a6f34c-414b-4387-8ec3-68eff4a56968", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:40 GMT", + "Date" : "Thu, 27 May 2021 21:10:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "71bb9782-428b-416b-a8c4-9d3036207b1e", - "elapsed-time" : "45", + "client-request-id" : "58a6f34c-414b-4387-8ec3-68eff4a56968", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "661", "Body" : "{\"value\":[{\"key\":\"981\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"982\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"983\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"984\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"985\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"986\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"987\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"988\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"989\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"990\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "71bb9782-428b-416b-a8c4-9d3036207b1e", + "x-ms-client-request-id" : "58a6f34c-414b-4387-8ec3-68eff4a56968", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c4d3412e-f8a6-405d-82b9-88bd756f6ab1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8e4c663c-4101-433d-adc2-245728f3ad85", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "662", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c4d3412e-f8a6-405d-82b9-88bd756f6ab1", + "request-id" : "8e4c663c-4101-433d-adc2-245728f3ad85", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:32:40 GMT", + "Date" : "Thu, 27 May 2021 21:10:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c4d3412e-f8a6-405d-82b9-88bd756f6ab1", - "elapsed-time" : "39", + "client-request-id" : "8e4c663c-4101-433d-adc2-245728f3ad85", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "662", "Body" : "{\"value\":[{\"key\":\"991\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"992\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"993\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"994\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"995\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"996\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"997\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"998\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"999\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1000\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "c4d3412e-f8a6-405d-82b9-88bd756f6ab1", + "x-ms-client-request-id" : "8e4c663c-4101-433d-adc2-245728f3ad85", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')//docs/$count?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')/docs/$count?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "583dd5cb-c772-4d74-9d70-07d92fae1523" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0cd1f8a8-e222-422c-93b4-b945a06e9907" }, "Response" : { + "content-length" : "7", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "583dd5cb-c772-4d74-9d70-07d92fae1523", + "request-id" : "0cd1f8a8-e222-422c-93b4-b945a06e9907", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:33:03 GMT", + "Date" : "Thu, 27 May 2021 21:11:19 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "583dd5cb-c772-4d74-9d70-07d92fae1523", - "elapsed-time" : "164", + "client-request-id" : "0cd1f8a8-e222-422c-93b4-b945a06e9907", + "elapsed-time" : "85", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "7", "Body" : "1000", - "x-ms-client-request-id" : "583dd5cb-c772-4d74-9d70-07d92fae1523", + "x-ms-client-request-id" : "0cd1f8a8-e222-422c-93b4-b945a06e9907", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "text/plain" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsets0b409519a66a526')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "27b48c3b-502c-4318-b617-5ec8395854b1" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5f125674-639d-4c6b-bfe8-49d7aec1059b" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "27b48c3b-502c-4318-b617-5ec8395854b1", - "elapsed-time" : "580", + "client-request-id" : "5f125674-639d-4c6b-bfe8-49d7aec1059b", + "elapsed-time" : "556", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "27b48c3b-502c-4318-b617-5ec8395854b1", + "request-id" : "5f125674-639d-4c6b-bfe8-49d7aec1059b", "StatusCode" : "204", - "x-ms-client-request-id" : "27b48c3b-502c-4318-b617-5ec8395854b1", - "Date" : "Fri, 02 Apr 2021 22:33:04 GMT" + "x-ms-client-request-id" : "5f125674-639d-4c6b-bfe8-49d7aec1059b", + "Date" : "Thu, 27 May 2021 21:11:20 GMT" }, "Exception" : null } ], - "variables" : [ "hotelsindexmanydocumentssmalldocumentsets0b409519a66a526" ] + "variables" : [ "hotelsindexmanydocumentssmalldocumentsetsa23614463f759f4" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.retryableDocumentsAreAddedBackToTheBatch.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.retryableDocumentsAreAddedBackToTheBatch.json index e1acbf0feefa..5fdc9939f7db 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.retryableDocumentsAreAddedBackToTheBatch.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.retryableDocumentsAreAddedBackToTheBatch.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4ba3279e-68c9-4349-ae82-e8c5aade258e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1b8f2556-c256-4e8b-a600-6e47db0eb253", "Content-Type" : "application/json" }, "Response" : { diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.serverBusyResponseRetries.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.serverBusyResponseRetries.json index bca9f1942faf..ef225c4f3131 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.serverBusyResponseRetries.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchIndexingBufferedSenderTests.serverBusyResponseRetries.json @@ -1,10 +1,10 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "03c072f5-356c-4d35-bce9-36d023838833", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8978e79e-50bf-44a5-b6b3-9a03d454b44f", "Content-Type" : "application/json" }, "Response" : { @@ -14,10 +14,10 @@ "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('index')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('index')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7cd9b4de-43f5-43c4-9228-165bc41e1bc6", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "77e277eb-e8da-44da-9bda-3a84d7367d13", "Content-Type" : "application/json" }, "Response" : { diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchServiceSyncTests.getServiceStatsReturnsCorrectDefinition.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchServiceSyncTests.getServiceStatsReturnsCorrectDefinition.json index 69a72be28d29..901a7f9de008 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchServiceSyncTests.getServiceStatsReturnsCorrectDefinition.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchServiceSyncTests.getServiceStatsReturnsCorrectDefinition.json @@ -1,26 +1,26 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/servicestats?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/servicestats?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6895cf52-9f55-4de7-b159-5503d4434c76" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7af5b469-9f3d-4a34-8094-3dfa040e710a" }, "Response" : { + "content-length" : "570", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6895cf52-9f55-4de7-b159-5503d4434c76", + "request-id" : "7af5b469-9f3d-4a34-8094-3dfa040e710a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:40 GMT", + "Date" : "Thu, 27 May 2021 21:18:14 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6895cf52-9f55-4de7-b159-5503d4434c76", - "elapsed-time" : "31", + "client-request-id" : "7af5b469-9f3d-4a34-8094-3dfa040e710a", + "elapsed-time" : "26", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "578", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.ServiceStatistics\",\"counters\":{\"documentCount\":{\"usage\":0,\"quota\":null},\"indexesCount\":{\"usage\":0,\"quota\":3},\"indexersCount\":{\"usage\":0,\"quota\":3},\"dataSourcesCount\":{\"usage\":1,\"quota\":3},\"storageSize\":{\"usage\":0,\"quota\":52428800},\"synonymMaps\":{\"usage\":0,\"quota\":3},\"skillsetCount\":{\"usage\":0,\"quota\":3}},\"limits\":{\"maxFieldsPerIndex\":1000,\"maxFieldNestingDepthPerIndex\":10,\"maxComplexCollectionFieldsPerIndex\":40,\"maxComplexObjectsInCollectionsPerDocument\":3000}}", - "x-ms-client-request-id" : "6895cf52-9f55-4de7-b159-5503d4434c76", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.ServiceStatistics\",\"counters\":{\"documentCount\":{\"usage\":0,\"quota\":null},\"indexesCount\":{\"usage\":0,\"quota\":3},\"indexersCount\":{\"usage\":0,\"quota\":3},\"dataSourcesCount\":{\"usage\":1,\"quota\":3},\"storageSize\":{\"usage\":0,\"quota\":52428800},\"synonymMaps\":{\"usage\":0,\"quota\":3},\"skillsetCount\":{\"usage\":0,\"quota\":3}},\"limits\":{\"maxFieldsPerIndex\":1000,\"maxFieldNestingDepthPerIndex\":10,\"maxComplexCollectionFieldsPerIndex\":40,\"maxComplexObjectsInCollectionsPerDocument\":3000}}", + "x-ms-client-request-id" : "7af5b469-9f3d-4a34-8094-3dfa040e710a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchServiceSyncTests.getServiceStatsReturnsCorrectDefinitionWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchServiceSyncTests.getServiceStatsReturnsCorrectDefinitionWithResponse.json index 1f5de613c431..c767f36ea6d6 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchServiceSyncTests.getServiceStatsReturnsCorrectDefinitionWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchServiceSyncTests.getServiceStatsReturnsCorrectDefinitionWithResponse.json @@ -1,26 +1,26 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/servicestats?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/servicestats?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "81a16b71-d67e-4133-9dee-2be1df05d717" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "01b4f2d8-2d91-4be9-b2ef-ae572a6ab612" }, "Response" : { + "content-length" : "570", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "81a16b71-d67e-4133-9dee-2be1df05d717", + "request-id" : "01b4f2d8-2d91-4be9-b2ef-ae572a6ab612", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:40 GMT", + "Date" : "Thu, 27 May 2021 21:18:14 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "81a16b71-d67e-4133-9dee-2be1df05d717", - "elapsed-time" : "67", + "client-request-id" : "01b4f2d8-2d91-4be9-b2ef-ae572a6ab612", + "elapsed-time" : "23", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "578", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.ServiceStatistics\",\"counters\":{\"documentCount\":{\"usage\":0,\"quota\":null},\"indexesCount\":{\"usage\":0,\"quota\":3},\"indexersCount\":{\"usage\":0,\"quota\":3},\"dataSourcesCount\":{\"usage\":1,\"quota\":3},\"storageSize\":{\"usage\":0,\"quota\":52428800},\"synonymMaps\":{\"usage\":0,\"quota\":3},\"skillsetCount\":{\"usage\":0,\"quota\":3}},\"limits\":{\"maxFieldsPerIndex\":1000,\"maxFieldNestingDepthPerIndex\":10,\"maxComplexCollectionFieldsPerIndex\":40,\"maxComplexObjectsInCollectionsPerDocument\":3000}}", - "x-ms-client-request-id" : "81a16b71-d67e-4133-9dee-2be1df05d717", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.ServiceStatistics\",\"counters\":{\"documentCount\":{\"usage\":0,\"quota\":null},\"indexesCount\":{\"usage\":0,\"quota\":3},\"indexersCount\":{\"usage\":0,\"quota\":3},\"dataSourcesCount\":{\"usage\":1,\"quota\":3},\"storageSize\":{\"usage\":0,\"quota\":52428800},\"synonymMaps\":{\"usage\":0,\"quota\":3},\"skillsetCount\":{\"usage\":0,\"quota\":3}},\"limits\":{\"maxFieldsPerIndex\":1000,\"maxFieldNestingDepthPerIndex\":10,\"maxComplexCollectionFieldsPerIndex\":40,\"maxComplexObjectsInCollectionsPerDocument\":3000}}", + "x-ms-client-request-id" : "01b4f2d8-2d91-4be9-b2ef-ae572a6ab612", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchServiceSyncTests.getServiceStatsReturnsRequestId.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchServiceSyncTests.getServiceStatsReturnsRequestId.json index 3015a5b34bc4..d549acfbdad5 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchServiceSyncTests.getServiceStatsReturnsRequestId.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchServiceSyncTests.getServiceStatsReturnsRequestId.json @@ -1,26 +1,26 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/servicestats?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/servicestats?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0a7022b7-1cb6-40f7-8758-8363f7da2851" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "789867a9-15ae-4237-9c12-065a7d7462ec" }, "Response" : { + "content-length" : "570", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0a7022b7-1cb6-40f7-8758-8363f7da2851", + "request-id" : "789867a9-15ae-4237-9c12-065a7d7462ec", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:40 GMT", + "Date" : "Thu, 27 May 2021 21:18:14 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0a7022b7-1cb6-40f7-8758-8363f7da2851", - "elapsed-time" : "65", + "client-request-id" : "789867a9-15ae-4237-9c12-065a7d7462ec", + "elapsed-time" : "21", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "578", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.ServiceStatistics\",\"counters\":{\"documentCount\":{\"usage\":0,\"quota\":null},\"indexesCount\":{\"usage\":0,\"quota\":3},\"indexersCount\":{\"usage\":0,\"quota\":3},\"dataSourcesCount\":{\"usage\":1,\"quota\":3},\"storageSize\":{\"usage\":0,\"quota\":52428800},\"synonymMaps\":{\"usage\":0,\"quota\":3},\"skillsetCount\":{\"usage\":0,\"quota\":3}},\"limits\":{\"maxFieldsPerIndex\":1000,\"maxFieldNestingDepthPerIndex\":10,\"maxComplexCollectionFieldsPerIndex\":40,\"maxComplexObjectsInCollectionsPerDocument\":3000}}", - "x-ms-client-request-id" : "0a7022b7-1cb6-40f7-8758-8363f7da2851", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.ServiceStatistics\",\"counters\":{\"documentCount\":{\"usage\":0,\"quota\":null},\"indexesCount\":{\"usage\":0,\"quota\":3},\"indexersCount\":{\"usage\":0,\"quota\":3},\"dataSourcesCount\":{\"usage\":1,\"quota\":3},\"storageSize\":{\"usage\":0,\"quota\":52428800},\"synonymMaps\":{\"usage\":0,\"quota\":3},\"skillsetCount\":{\"usage\":0,\"quota\":3}},\"limits\":{\"maxFieldsPerIndex\":1000,\"maxFieldNestingDepthPerIndex\":10,\"maxComplexCollectionFieldsPerIndex\":40,\"maxComplexObjectsInCollectionsPerDocument\":3000}}", + "x-ms-client-request-id" : "789867a9-15ae-4237-9c12-065a7d7462ec", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canContinueSearch.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canContinueSearch.json index 4ff77682ee22..cc80950cae58 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canContinueSearch.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canContinueSearch.json @@ -1,135 +1,135 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearchfed21949134a87a1682e465b')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearch7a794645f5d3d99a86dc415f')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d00239f-f91d-4e02-a596-23b9b02843be", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f05fd9a6-d92f-413a-a774-eb89224a62b6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6488", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7d00239f-f91d-4e02-a596-23b9b02843be", + "request-id" : "f05fd9a6-d92f-413a-a774-eb89224a62b6", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:01 GMT", + "Date" : "Thu, 27 May 2021 21:13:32 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6278D6E68A7\"", - "client-request-id" : "7d00239f-f91d-4e02-a596-23b9b02843be", - "elapsed-time" : "1170", + "ETag" : "W/\"0x8D92154482CA4C8\"", + "client-request-id" : "f05fd9a6-d92f-413a-a774-eb89224a62b6", + "elapsed-time" : "1491", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6937", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6278D6E68A7\\\"\",\"name\":\"hotelscancontinuesearchfed21949134a87a1682e465b\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "7d00239f-f91d-4e02-a596-23b9b02843be", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154482CA4C8\\\"\",\"name\":\"hotelscancontinuesearch7a794645f5d3d99a86dc415f\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "f05fd9a6-d92f-413a-a774-eb89224a62b6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancontinuesearchfed21949134a87a1682e465b')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancontinuesearch7a794645f5d3d99a86dc415f')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearchfed21949134a87a1682e465b')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearch7a794645f5d3d99a86dc415f')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a9f2b04e-cc57-40e9-9542-f4022de67589", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0d7ca878-b0fc-4a0c-aef1-714dad740a97", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6403", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a9f2b04e-cc57-40e9-9542-f4022de67589", + "request-id" : "0d7ca878-b0fc-4a0c-aef1-714dad740a97", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:01 GMT", + "Date" : "Thu, 27 May 2021 21:13:31 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a9f2b04e-cc57-40e9-9542-f4022de67589", - "elapsed-time" : "146", + "client-request-id" : "0d7ca878-b0fc-4a0c-aef1-714dad740a97", + "elapsed-time" : "133", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6403", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"5\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"6\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"7\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"8\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"9\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"10\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"11\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"12\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"13\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"14\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"15\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"16\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"17\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"18\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"19\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"20\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"21\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"22\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"23\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"24\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"25\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"26\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"27\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"28\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"29\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"30\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"31\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"32\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"33\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"34\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"35\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"36\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"37\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"38\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"39\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"40\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"41\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"42\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"43\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"44\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"45\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"46\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"47\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"48\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"49\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"50\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"51\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"52\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"53\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"54\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"55\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"56\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"57\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"58\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"59\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"60\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"61\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"62\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"63\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"64\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"65\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"66\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"67\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"68\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"69\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"70\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"71\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"72\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"73\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"74\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"75\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"76\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"77\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"78\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"79\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"80\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"81\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"82\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"83\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"84\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"85\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"86\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"87\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"88\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"89\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"90\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"91\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"92\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"93\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"94\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"95\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"96\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"97\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"98\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"99\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"100\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "a9f2b04e-cc57-40e9-9542-f4022de67589", + "x-ms-client-request-id" : "0d7ca878-b0fc-4a0c-aef1-714dad740a97", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearchfed21949134a87a1682e465b')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearch7a794645f5d3d99a86dc415f')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c84756ad-8d2a-4f35-8a08-6f18a4ee8519", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "eb28d096-6be6-4a16-8778-7e0dc98f3ada", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "2121", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c84756ad-8d2a-4f35-8a08-6f18a4ee8519", + "request-id" : "eb28d096-6be6-4a16-8778-7e0dc98f3ada", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:03 GMT", + "Date" : "Thu, 27 May 2021 21:13:35 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c84756ad-8d2a-4f35-8a08-6f18a4ee8519", - "elapsed-time" : "84", + "client-request-id" : "eb28d096-6be6-4a16-8778-7e0dc98f3ada", + "elapsed-time" : "83", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "2129", - "Body" : "{\"@search.nextPageParameters\":{\"orderby\":\"HotelId asc\",\"search\":\"*\",\"select\":\"HotelId\",\"skip\":50},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"1\"},{\"@search.score\":1.0,\"HotelId\":\"10\"},{\"@search.score\":1.0,\"HotelId\":\"100\"},{\"@search.score\":1.0,\"HotelId\":\"11\"},{\"@search.score\":1.0,\"HotelId\":\"12\"},{\"@search.score\":1.0,\"HotelId\":\"13\"},{\"@search.score\":1.0,\"HotelId\":\"14\"},{\"@search.score\":1.0,\"HotelId\":\"15\"},{\"@search.score\":1.0,\"HotelId\":\"16\"},{\"@search.score\":1.0,\"HotelId\":\"17\"},{\"@search.score\":1.0,\"HotelId\":\"18\"},{\"@search.score\":1.0,\"HotelId\":\"19\"},{\"@search.score\":1.0,\"HotelId\":\"2\"},{\"@search.score\":1.0,\"HotelId\":\"20\"},{\"@search.score\":1.0,\"HotelId\":\"21\"},{\"@search.score\":1.0,\"HotelId\":\"22\"},{\"@search.score\":1.0,\"HotelId\":\"23\"},{\"@search.score\":1.0,\"HotelId\":\"24\"},{\"@search.score\":1.0,\"HotelId\":\"25\"},{\"@search.score\":1.0,\"HotelId\":\"26\"},{\"@search.score\":1.0,\"HotelId\":\"27\"},{\"@search.score\":1.0,\"HotelId\":\"28\"},{\"@search.score\":1.0,\"HotelId\":\"29\"},{\"@search.score\":1.0,\"HotelId\":\"3\"},{\"@search.score\":1.0,\"HotelId\":\"30\"},{\"@search.score\":1.0,\"HotelId\":\"31\"},{\"@search.score\":1.0,\"HotelId\":\"32\"},{\"@search.score\":1.0,\"HotelId\":\"33\"},{\"@search.score\":1.0,\"HotelId\":\"34\"},{\"@search.score\":1.0,\"HotelId\":\"35\"},{\"@search.score\":1.0,\"HotelId\":\"36\"},{\"@search.score\":1.0,\"HotelId\":\"37\"},{\"@search.score\":1.0,\"HotelId\":\"38\"},{\"@search.score\":1.0,\"HotelId\":\"39\"},{\"@search.score\":1.0,\"HotelId\":\"4\"},{\"@search.score\":1.0,\"HotelId\":\"40\"},{\"@search.score\":1.0,\"HotelId\":\"41\"},{\"@search.score\":1.0,\"HotelId\":\"42\"},{\"@search.score\":1.0,\"HotelId\":\"43\"},{\"@search.score\":1.0,\"HotelId\":\"44\"},{\"@search.score\":1.0,\"HotelId\":\"45\"},{\"@search.score\":1.0,\"HotelId\":\"46\"},{\"@search.score\":1.0,\"HotelId\":\"47\"},{\"@search.score\":1.0,\"HotelId\":\"48\"},{\"@search.score\":1.0,\"HotelId\":\"49\"},{\"@search.score\":1.0,\"HotelId\":\"5\"},{\"@search.score\":1.0,\"HotelId\":\"50\"},{\"@search.score\":1.0,\"HotelId\":\"51\"},{\"@search.score\":1.0,\"HotelId\":\"52\"},{\"@search.score\":1.0,\"HotelId\":\"53\"}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscancontinuesearchfed21949134a87a1682e465b')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "c84756ad-8d2a-4f35-8a08-6f18a4ee8519", + "Body" : "{\"@search.nextPageParameters\":{\"orderby\":\"HotelId asc\",\"search\":\"*\",\"select\":\"HotelId\",\"skip\":50},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"1\"},{\"@search.score\":1.0,\"HotelId\":\"10\"},{\"@search.score\":1.0,\"HotelId\":\"100\"},{\"@search.score\":1.0,\"HotelId\":\"11\"},{\"@search.score\":1.0,\"HotelId\":\"12\"},{\"@search.score\":1.0,\"HotelId\":\"13\"},{\"@search.score\":1.0,\"HotelId\":\"14\"},{\"@search.score\":1.0,\"HotelId\":\"15\"},{\"@search.score\":1.0,\"HotelId\":\"16\"},{\"@search.score\":1.0,\"HotelId\":\"17\"},{\"@search.score\":1.0,\"HotelId\":\"18\"},{\"@search.score\":1.0,\"HotelId\":\"19\"},{\"@search.score\":1.0,\"HotelId\":\"2\"},{\"@search.score\":1.0,\"HotelId\":\"20\"},{\"@search.score\":1.0,\"HotelId\":\"21\"},{\"@search.score\":1.0,\"HotelId\":\"22\"},{\"@search.score\":1.0,\"HotelId\":\"23\"},{\"@search.score\":1.0,\"HotelId\":\"24\"},{\"@search.score\":1.0,\"HotelId\":\"25\"},{\"@search.score\":1.0,\"HotelId\":\"26\"},{\"@search.score\":1.0,\"HotelId\":\"27\"},{\"@search.score\":1.0,\"HotelId\":\"28\"},{\"@search.score\":1.0,\"HotelId\":\"29\"},{\"@search.score\":1.0,\"HotelId\":\"3\"},{\"@search.score\":1.0,\"HotelId\":\"30\"},{\"@search.score\":1.0,\"HotelId\":\"31\"},{\"@search.score\":1.0,\"HotelId\":\"32\"},{\"@search.score\":1.0,\"HotelId\":\"33\"},{\"@search.score\":1.0,\"HotelId\":\"34\"},{\"@search.score\":1.0,\"HotelId\":\"35\"},{\"@search.score\":1.0,\"HotelId\":\"36\"},{\"@search.score\":1.0,\"HotelId\":\"37\"},{\"@search.score\":1.0,\"HotelId\":\"38\"},{\"@search.score\":1.0,\"HotelId\":\"39\"},{\"@search.score\":1.0,\"HotelId\":\"4\"},{\"@search.score\":1.0,\"HotelId\":\"40\"},{\"@search.score\":1.0,\"HotelId\":\"41\"},{\"@search.score\":1.0,\"HotelId\":\"42\"},{\"@search.score\":1.0,\"HotelId\":\"43\"},{\"@search.score\":1.0,\"HotelId\":\"44\"},{\"@search.score\":1.0,\"HotelId\":\"45\"},{\"@search.score\":1.0,\"HotelId\":\"46\"},{\"@search.score\":1.0,\"HotelId\":\"47\"},{\"@search.score\":1.0,\"HotelId\":\"48\"},{\"@search.score\":1.0,\"HotelId\":\"49\"},{\"@search.score\":1.0,\"HotelId\":\"5\"},{\"@search.score\":1.0,\"HotelId\":\"50\"},{\"@search.score\":1.0,\"HotelId\":\"51\"},{\"@search.score\":1.0,\"HotelId\":\"52\"},{\"@search.score\":1.0,\"HotelId\":\"53\"}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscancontinuesearch7a794645f5d3d99a86dc415f')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "eb28d096-6be6-4a16-8778-7e0dc98f3ada", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearchfed21949134a87a1682e465b')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearch7a794645f5d3d99a86dc415f')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "93691196-3b94-498f-a1ae-e21de4a6beb3", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "370981e8-b30a-4c92-8d7a-d4192bec9f83", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1857", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "93691196-3b94-498f-a1ae-e21de4a6beb3", + "request-id" : "370981e8-b30a-4c92-8d7a-d4192bec9f83", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:03 GMT", + "Date" : "Thu, 27 May 2021 21:13:35 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "93691196-3b94-498f-a1ae-e21de4a6beb3", + "client-request-id" : "370981e8-b30a-4c92-8d7a-d4192bec9f83", "elapsed-time" : "19", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1857", "Body" : "{\"value\":[{\"@search.score\":1.0,\"HotelId\":\"54\"},{\"@search.score\":1.0,\"HotelId\":\"55\"},{\"@search.score\":1.0,\"HotelId\":\"56\"},{\"@search.score\":1.0,\"HotelId\":\"57\"},{\"@search.score\":1.0,\"HotelId\":\"58\"},{\"@search.score\":1.0,\"HotelId\":\"59\"},{\"@search.score\":1.0,\"HotelId\":\"6\"},{\"@search.score\":1.0,\"HotelId\":\"60\"},{\"@search.score\":1.0,\"HotelId\":\"61\"},{\"@search.score\":1.0,\"HotelId\":\"62\"},{\"@search.score\":1.0,\"HotelId\":\"63\"},{\"@search.score\":1.0,\"HotelId\":\"64\"},{\"@search.score\":1.0,\"HotelId\":\"65\"},{\"@search.score\":1.0,\"HotelId\":\"66\"},{\"@search.score\":1.0,\"HotelId\":\"67\"},{\"@search.score\":1.0,\"HotelId\":\"68\"},{\"@search.score\":1.0,\"HotelId\":\"69\"},{\"@search.score\":1.0,\"HotelId\":\"7\"},{\"@search.score\":1.0,\"HotelId\":\"70\"},{\"@search.score\":1.0,\"HotelId\":\"71\"},{\"@search.score\":1.0,\"HotelId\":\"72\"},{\"@search.score\":1.0,\"HotelId\":\"73\"},{\"@search.score\":1.0,\"HotelId\":\"74\"},{\"@search.score\":1.0,\"HotelId\":\"75\"},{\"@search.score\":1.0,\"HotelId\":\"76\"},{\"@search.score\":1.0,\"HotelId\":\"77\"},{\"@search.score\":1.0,\"HotelId\":\"78\"},{\"@search.score\":1.0,\"HotelId\":\"79\"},{\"@search.score\":1.0,\"HotelId\":\"8\"},{\"@search.score\":1.0,\"HotelId\":\"80\"},{\"@search.score\":1.0,\"HotelId\":\"81\"},{\"@search.score\":1.0,\"HotelId\":\"82\"},{\"@search.score\":1.0,\"HotelId\":\"83\"},{\"@search.score\":1.0,\"HotelId\":\"84\"},{\"@search.score\":1.0,\"HotelId\":\"85\"},{\"@search.score\":1.0,\"HotelId\":\"86\"},{\"@search.score\":1.0,\"HotelId\":\"87\"},{\"@search.score\":1.0,\"HotelId\":\"88\"},{\"@search.score\":1.0,\"HotelId\":\"89\"},{\"@search.score\":1.0,\"HotelId\":\"9\"},{\"@search.score\":1.0,\"HotelId\":\"90\"},{\"@search.score\":1.0,\"HotelId\":\"91\"},{\"@search.score\":1.0,\"HotelId\":\"92\"},{\"@search.score\":1.0,\"HotelId\":\"93\"},{\"@search.score\":1.0,\"HotelId\":\"94\"},{\"@search.score\":1.0,\"HotelId\":\"95\"},{\"@search.score\":1.0,\"HotelId\":\"96\"},{\"@search.score\":1.0,\"HotelId\":\"97\"},{\"@search.score\":1.0,\"HotelId\":\"98\"},{\"@search.score\":1.0,\"HotelId\":\"99\"}]}", - "x-ms-client-request-id" : "93691196-3b94-498f-a1ae-e21de4a6beb3", + "x-ms-client-request-id" : "370981e8-b30a-4c92-8d7a-d4192bec9f83", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearchfed21949134a87a1682e465b')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearch7a794645f5d3d99a86dc415f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "18eece49-4bb5-441d-bce7-a217483b5560" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f2d53d38-68dc-474b-9cfd-2a9d8ace828b" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "18eece49-4bb5-441d-bce7-a217483b5560", - "elapsed-time" : "543", + "client-request-id" : "f2d53d38-68dc-474b-9cfd-2a9d8ace828b", + "elapsed-time" : "538", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "18eece49-4bb5-441d-bce7-a217483b5560", + "request-id" : "f2d53d38-68dc-474b-9cfd-2a9d8ace828b", "StatusCode" : "204", - "x-ms-client-request-id" : "18eece49-4bb5-441d-bce7-a217483b5560", - "Date" : "Fri, 02 Apr 2021 22:35:04 GMT" + "x-ms-client-request-id" : "f2d53d38-68dc-474b-9cfd-2a9d8ace828b", + "Date" : "Thu, 27 May 2021 21:13:35 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscancontinuesearchfed21949134a87a1682e465b" ] + "variables" : [ "hotelscancontinuesearch7a794645f5d3d99a86dc415f" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canContinueSearchWithTop.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canContinueSearchWithTop.json index 9e4277cb2a67..2ac191a6b2ce 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canContinueSearchWithTop.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canContinueSearchWithTop.json @@ -1,135 +1,135 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearchwithtop8de86306145bc0168fb14')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearchwithtop41c652249c5d8bc447884')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1e492fdb-15a1-4df9-af91-701b24868ee1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c6883d65-895d-494f-8d67-1c5e584cde21", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6492", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1e492fdb-15a1-4df9-af91-701b24868ee1", + "request-id" : "c6883d65-895d-494f-8d67-1c5e584cde21", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:34:09 GMT", + "Date" : "Thu, 27 May 2021 21:12:38 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6276EFDEF8B\"", - "client-request-id" : "1e492fdb-15a1-4df9-af91-701b24868ee1", - "elapsed-time" : "1092", + "ETag" : "W/\"0x8D9215428734D5E\"", + "client-request-id" : "c6883d65-895d-494f-8d67-1c5e584cde21", + "elapsed-time" : "1497", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6941", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6276EFDEF8B\\\"\",\"name\":\"hotelscancontinuesearchwithtop8de86306145bc0168fb14\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "1e492fdb-15a1-4df9-af91-701b24868ee1", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215428734D5E\\\"\",\"name\":\"hotelscancontinuesearchwithtop41c652249c5d8bc447884\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "c6883d65-895d-494f-8d67-1c5e584cde21", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancontinuesearchwithtop8de86306145bc0168fb14')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscancontinuesearchwithtop41c652249c5d8bc447884')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearchwithtop8de86306145bc0168fb14')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearchwithtop41c652249c5d8bc447884')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4c1398dc-dd52-482f-a2ba-5389c6e6ae12", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "df07be1b-9e9a-4508-80f7-9d06d7836471", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "196904", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4c1398dc-dd52-482f-a2ba-5389c6e6ae12", + "request-id" : "df07be1b-9e9a-4508-80f7-9d06d7836471", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:12 GMT", + "Date" : "Thu, 27 May 2021 21:12:41 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4c1398dc-dd52-482f-a2ba-5389c6e6ae12", - "elapsed-time" : "2982", + "client-request-id" : "df07be1b-9e9a-4508-80f7-9d06d7836471", + "elapsed-time" : "3031", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "196904", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"5\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"6\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"7\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"8\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"9\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"10\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"11\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"12\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"13\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"14\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"15\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"16\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"17\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"18\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"19\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"20\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"21\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"22\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"23\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"24\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"25\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"26\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"27\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"28\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"29\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"30\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"31\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"32\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"33\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"34\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"35\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"36\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"37\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"38\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"39\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"40\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"41\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"42\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"43\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"44\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"45\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"46\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"47\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"48\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"49\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"50\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"51\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"52\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"53\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"54\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"55\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"56\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"57\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"58\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"59\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"60\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"61\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"62\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"63\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"64\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"65\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"66\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"67\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"68\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"69\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"70\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"71\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"72\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"73\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"74\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"75\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"76\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"77\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"78\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"79\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"80\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"81\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"82\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"83\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"84\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"85\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"86\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"87\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"88\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"89\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"90\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"91\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"92\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"93\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"94\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"95\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"96\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"97\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"98\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"99\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"100\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"101\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"102\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"103\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"104\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"105\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"106\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"107\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"108\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"109\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"110\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"111\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"112\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"113\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"114\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"115\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"116\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"117\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"118\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"119\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"120\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"121\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"122\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"123\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"124\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"125\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"126\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"127\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"128\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"129\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"130\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"131\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"132\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"133\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"134\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"135\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"136\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"137\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"138\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"139\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"140\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"141\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"142\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"143\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"144\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"145\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"146\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"147\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"148\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"149\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"150\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"151\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"152\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"153\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"154\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"155\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"156\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"157\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"158\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"159\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"160\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"161\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"162\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"163\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"164\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"165\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"166\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"167\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"168\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"169\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"170\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"171\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"172\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"173\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"174\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"175\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"176\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"177\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"178\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"179\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"180\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"181\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"182\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"183\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"184\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"185\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"186\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"187\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"188\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"189\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"190\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"191\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"192\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"193\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"194\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"195\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"196\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"197\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"198\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"199\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"200\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"201\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"202\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"203\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"204\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"205\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"206\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"207\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"208\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"209\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"210\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"211\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"212\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"213\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"214\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"215\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"216\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"217\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"218\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"219\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"220\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"221\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"222\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"223\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"224\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"225\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"226\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"227\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"228\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"229\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"230\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"231\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"232\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"233\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"234\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"235\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"236\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"237\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"238\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"239\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"240\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"241\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"242\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"243\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"244\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"245\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"246\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"247\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"248\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"249\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"250\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"251\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"252\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"253\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"254\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"255\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"256\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"257\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"258\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"259\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"260\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"261\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"262\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"263\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"264\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"265\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"266\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"267\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"268\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"269\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"270\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"271\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"272\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"273\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"274\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"275\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"276\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"277\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"278\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"279\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"280\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"281\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"282\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"283\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"284\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"285\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"286\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"287\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"288\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"289\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"290\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"291\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"292\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"293\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"294\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"295\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"296\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"297\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"298\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"299\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"300\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"301\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"302\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"303\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"304\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"305\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"306\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"307\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"308\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"309\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"310\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"311\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"312\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"313\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"314\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"315\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"316\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"317\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"318\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"319\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"320\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"321\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"322\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"323\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"324\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"325\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"326\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"327\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"328\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"329\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"330\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"331\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"332\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"333\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"334\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"335\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"336\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"337\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"338\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"339\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"340\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"341\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"342\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"343\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"344\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"345\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"346\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"347\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"348\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"349\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"350\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"351\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"352\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"353\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"354\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"355\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"356\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"357\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"358\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"359\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"360\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"361\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"362\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"363\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"364\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"365\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"366\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"367\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"368\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"369\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"370\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"371\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"372\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"373\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"374\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"375\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"376\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"377\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"378\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"379\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"380\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"381\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"382\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"383\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"384\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"385\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"386\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"387\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"388\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"389\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"390\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"391\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"392\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"393\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"394\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"395\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"396\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"397\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"398\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"399\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"400\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"401\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"402\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"403\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"404\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"405\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"406\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"407\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"408\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"409\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"410\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"411\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"412\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"413\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"414\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"415\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"416\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"417\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"418\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"419\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"420\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"421\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"422\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"423\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"424\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"425\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"426\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"427\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"428\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"429\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"430\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"431\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"432\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"433\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"434\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"435\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"436\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"437\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"438\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"439\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"440\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"441\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"442\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"443\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"444\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"445\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"446\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"447\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"448\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"449\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"450\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"451\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"452\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"453\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"454\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"455\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"456\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"457\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"458\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"459\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"460\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"461\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"462\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"463\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"464\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"465\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"466\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"467\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"468\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"469\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"470\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"471\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"472\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"473\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"474\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"475\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"476\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"477\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"478\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"479\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"480\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"481\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"482\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"483\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"484\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"485\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"486\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"487\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"488\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"489\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"490\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"491\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"492\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"493\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"494\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"495\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"496\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"497\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"498\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"499\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"500\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"501\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"502\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"503\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"504\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"505\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"506\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"507\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"508\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"509\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"510\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"511\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"512\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"513\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"514\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"515\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"516\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"517\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"518\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"519\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"520\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"521\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"522\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"523\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"524\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"525\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"526\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"527\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"528\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"529\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"530\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"531\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"532\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"533\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"534\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"535\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"536\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"537\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"538\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"539\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"540\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"541\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"542\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"543\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"544\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"545\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"546\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"547\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"548\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"549\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"550\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"551\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"552\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"553\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"554\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"555\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"556\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"557\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"558\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"559\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"560\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"561\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"562\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"563\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"564\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"565\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"566\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"567\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"568\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"569\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"570\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"571\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"572\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"573\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"574\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"575\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"576\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"577\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"578\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"579\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"580\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"581\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"582\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"583\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"584\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"585\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"586\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"587\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"588\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"589\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"590\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"591\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"592\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"593\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"594\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"595\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"596\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"597\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"598\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"599\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"600\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"601\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"602\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"603\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"604\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"605\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"606\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"607\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"608\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"609\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"610\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"611\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"612\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"613\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"614\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"615\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"616\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"617\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"618\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"619\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"620\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"621\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"622\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"623\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"624\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"625\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"626\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"627\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"628\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"629\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"630\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"631\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"632\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"633\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"634\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"635\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"636\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"637\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"638\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"639\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"640\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"641\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"642\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"643\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"644\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"645\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"646\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"647\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"648\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"649\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"650\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"651\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"652\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"653\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"654\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"655\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"656\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"657\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"658\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"659\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"660\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"661\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"662\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"663\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"664\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"665\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"666\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"667\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"668\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"669\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"670\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"671\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"672\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"673\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"674\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"675\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"676\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"677\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"678\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"679\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"680\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"681\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"682\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"683\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"684\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"685\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"686\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"687\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"688\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"689\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"690\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"691\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"692\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"693\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"694\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"695\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"696\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"697\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"698\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"699\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"700\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"701\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"702\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"703\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"704\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"705\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"706\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"707\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"708\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"709\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"710\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"711\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"712\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"713\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"714\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"715\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"716\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"717\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"718\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"719\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"720\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"721\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"722\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"723\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"724\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"725\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"726\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"727\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"728\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"729\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"730\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"731\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"732\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"733\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"734\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"735\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"736\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"737\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"738\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"739\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"740\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"741\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"742\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"743\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"744\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"745\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"746\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"747\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"748\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"749\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"750\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"751\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"752\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"753\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"754\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"755\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"756\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"757\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"758\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"759\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"760\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"761\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"762\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"763\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"764\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"765\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"766\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"767\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"768\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"769\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"770\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"771\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"772\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"773\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"774\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"775\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"776\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"777\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"778\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"779\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"780\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"781\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"782\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"783\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"784\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"785\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"786\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"787\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"788\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"789\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"790\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"791\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"792\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"793\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"794\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"795\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"796\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"797\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"798\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"799\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"800\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"801\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"802\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"803\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"804\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"805\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"806\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"807\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"808\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"809\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"810\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"811\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"812\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"813\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"814\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"815\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"816\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"817\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"818\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"819\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"820\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"821\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"822\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"823\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"824\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"825\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"826\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"827\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"828\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"829\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"830\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"831\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"832\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"833\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"834\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"835\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"836\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"837\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"838\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"839\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"840\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"841\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"842\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"843\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"844\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"845\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"846\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"847\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"848\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"849\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"850\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"851\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"852\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"853\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"854\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"855\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"856\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"857\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"858\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"859\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"860\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"861\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"862\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"863\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"864\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"865\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"866\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"867\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"868\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"869\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"870\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"871\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"872\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"873\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"874\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"875\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"876\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"877\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"878\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"879\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"880\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"881\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"882\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"883\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"884\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"885\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"886\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"887\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"888\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"889\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"890\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"891\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"892\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"893\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"894\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"895\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"896\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"897\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"898\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"899\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"900\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"901\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"902\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"903\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"904\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"905\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"906\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"907\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"908\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"909\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"910\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"911\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"912\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"913\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"914\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"915\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"916\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"917\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"918\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"919\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"920\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"921\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"922\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"923\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"924\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"925\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"926\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"927\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"928\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"929\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"930\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"931\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"932\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"933\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"934\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"935\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"936\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"937\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"938\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"939\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"940\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"941\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"942\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"943\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"944\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"945\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"946\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"947\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"948\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"949\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"950\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"951\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"952\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"953\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"954\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"955\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"956\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"957\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"958\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"959\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"960\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"961\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"962\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"963\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"964\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"965\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"966\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"967\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"968\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"969\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"970\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"971\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"972\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"973\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"974\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"975\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"976\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"977\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"978\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"979\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"980\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"981\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"982\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"983\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"984\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"985\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"986\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"987\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"988\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"989\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"990\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"991\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"992\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"993\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"994\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"995\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"996\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"997\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"998\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"999\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1000\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1001\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1002\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1003\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1004\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1005\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1006\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1007\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1008\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1009\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1010\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1011\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1012\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1013\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1014\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1015\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1016\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1017\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1018\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1019\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1020\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1021\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1022\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1023\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1024\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1025\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1026\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1027\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1028\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1029\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1030\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1031\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1032\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1033\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1034\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1035\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1036\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1037\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1038\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1039\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1040\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1041\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1042\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1043\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1044\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1045\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1046\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1047\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1048\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1049\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1050\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1051\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1052\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1053\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1054\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1055\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1056\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1057\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1058\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1059\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1060\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1061\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1062\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1063\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1064\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1065\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1066\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1067\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1068\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1069\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1070\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1071\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1072\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1073\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1074\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1075\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1076\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1077\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1078\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1079\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1080\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1081\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1082\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1083\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1084\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1085\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1086\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1087\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1088\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1089\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1090\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1091\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1092\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1093\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1094\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1095\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1096\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1097\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1098\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1099\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1100\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1101\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1102\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1103\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1104\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1105\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1106\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1107\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1108\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1109\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1110\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1111\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1112\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1113\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1114\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1115\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1116\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1117\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1118\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1119\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1120\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1121\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1122\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1123\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1124\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1125\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1126\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1127\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1128\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1129\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1130\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1131\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1132\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1133\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1134\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1135\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1136\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1137\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1138\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1139\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1140\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1141\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1142\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1143\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1144\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1145\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1146\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1147\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1148\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1149\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1150\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1151\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1152\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1153\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1154\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1155\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1156\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1157\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1158\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1159\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1160\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1161\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1162\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1163\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1164\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1165\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1166\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1167\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1168\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1169\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1170\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1171\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1172\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1173\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1174\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1175\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1176\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1177\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1178\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1179\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1180\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1181\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1182\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1183\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1184\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1185\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1186\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1187\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1188\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1189\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1190\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1191\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1192\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1193\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1194\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1195\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1196\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1197\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1198\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1199\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1200\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1201\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1202\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1203\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1204\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1205\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1206\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1207\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1208\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1209\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1210\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1211\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1212\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1213\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1214\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1215\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1216\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1217\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1218\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1219\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1220\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1221\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1222\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1223\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1224\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1225\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1226\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1227\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1228\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1229\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1230\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1231\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1232\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1233\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1234\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1235\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1236\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1237\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1238\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1239\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1240\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1241\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1242\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1243\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1244\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1245\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1246\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1247\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1248\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1249\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1250\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1251\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1252\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1253\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1254\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1255\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1256\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1257\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1258\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1259\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1260\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1261\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1262\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1263\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1264\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1265\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1266\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1267\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1268\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1269\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1270\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1271\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1272\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1273\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1274\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1275\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1276\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1277\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1278\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1279\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1280\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1281\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1282\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1283\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1284\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1285\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1286\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1287\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1288\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1289\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1290\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1291\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1292\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1293\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1294\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1295\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1296\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1297\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1298\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1299\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1300\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1301\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1302\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1303\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1304\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1305\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1306\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1307\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1308\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1309\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1310\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1311\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1312\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1313\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1314\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1315\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1316\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1317\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1318\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1319\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1320\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1321\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1322\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1323\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1324\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1325\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1326\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1327\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1328\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1329\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1330\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1331\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1332\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1333\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1334\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1335\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1336\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1337\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1338\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1339\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1340\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1341\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1342\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1343\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1344\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1345\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1346\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1347\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1348\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1349\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1350\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1351\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1352\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1353\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1354\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1355\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1356\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1357\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1358\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1359\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1360\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1361\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1362\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1363\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1364\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1365\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1366\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1367\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1368\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1369\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1370\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1371\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1372\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1373\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1374\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1375\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1376\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1377\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1378\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1379\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1380\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1381\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1382\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1383\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1384\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1385\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1386\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1387\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1388\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1389\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1390\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1391\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1392\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1393\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1394\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1395\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1396\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1397\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1398\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1399\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1400\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1401\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1402\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1403\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1404\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1405\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1406\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1407\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1408\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1409\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1410\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1411\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1412\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1413\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1414\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1415\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1416\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1417\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1418\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1419\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1420\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1421\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1422\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1423\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1424\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1425\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1426\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1427\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1428\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1429\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1430\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1431\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1432\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1433\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1434\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1435\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1436\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1437\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1438\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1439\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1440\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1441\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1442\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1443\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1444\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1445\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1446\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1447\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1448\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1449\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1450\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1451\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1452\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1453\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1454\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1455\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1456\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1457\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1458\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1459\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1460\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1461\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1462\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1463\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1464\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1465\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1466\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1467\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1468\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1469\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1470\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1471\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1472\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1473\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1474\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1475\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1476\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1477\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1478\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1479\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1480\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1481\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1482\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1483\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1484\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1485\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1486\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1487\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1488\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1489\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1490\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1491\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1492\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1493\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1494\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1495\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1496\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1497\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1498\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1499\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1500\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1501\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1502\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1503\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1504\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1505\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1506\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1507\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1508\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1509\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1510\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1511\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1512\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1513\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1514\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1515\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1516\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1517\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1518\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1519\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1520\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1521\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1522\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1523\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1524\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1525\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1526\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1527\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1528\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1529\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1530\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1531\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1532\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1533\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1534\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1535\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1536\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1537\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1538\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1539\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1540\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1541\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1542\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1543\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1544\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1545\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1546\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1547\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1548\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1549\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1550\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1551\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1552\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1553\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1554\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1555\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1556\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1557\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1558\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1559\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1560\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1561\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1562\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1563\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1564\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1565\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1566\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1567\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1568\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1569\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1570\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1571\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1572\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1573\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1574\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1575\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1576\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1577\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1578\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1579\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1580\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1581\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1582\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1583\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1584\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1585\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1586\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1587\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1588\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1589\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1590\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1591\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1592\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1593\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1594\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1595\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1596\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1597\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1598\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1599\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1600\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1601\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1602\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1603\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1604\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1605\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1606\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1607\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1608\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1609\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1610\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1611\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1612\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1613\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1614\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1615\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1616\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1617\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1618\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1619\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1620\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1621\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1622\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1623\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1624\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1625\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1626\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1627\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1628\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1629\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1630\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1631\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1632\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1633\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1634\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1635\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1636\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1637\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1638\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1639\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1640\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1641\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1642\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1643\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1644\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1645\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1646\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1647\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1648\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1649\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1650\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1651\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1652\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1653\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1654\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1655\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1656\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1657\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1658\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1659\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1660\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1661\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1662\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1663\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1664\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1665\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1666\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1667\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1668\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1669\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1670\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1671\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1672\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1673\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1674\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1675\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1676\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1677\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1678\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1679\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1680\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1681\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1682\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1683\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1684\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1685\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1686\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1687\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1688\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1689\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1690\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1691\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1692\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1693\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1694\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1695\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1696\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1697\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1698\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1699\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1700\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1701\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1702\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1703\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1704\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1705\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1706\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1707\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1708\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1709\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1710\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1711\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1712\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1713\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1714\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1715\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1716\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1717\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1718\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1719\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1720\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1721\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1722\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1723\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1724\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1725\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1726\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1727\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1728\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1729\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1730\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1731\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1732\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1733\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1734\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1735\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1736\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1737\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1738\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1739\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1740\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1741\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1742\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1743\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1744\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1745\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1746\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1747\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1748\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1749\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1750\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1751\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1752\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1753\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1754\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1755\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1756\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1757\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1758\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1759\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1760\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1761\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1762\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1763\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1764\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1765\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1766\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1767\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1768\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1769\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1770\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1771\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1772\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1773\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1774\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1775\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1776\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1777\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1778\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1779\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1780\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1781\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1782\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1783\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1784\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1785\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1786\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1787\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1788\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1789\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1790\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1791\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1792\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1793\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1794\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1795\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1796\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1797\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1798\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1799\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1800\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1801\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1802\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1803\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1804\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1805\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1806\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1807\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1808\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1809\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1810\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1811\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1812\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1813\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1814\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1815\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1816\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1817\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1818\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1819\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1820\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1821\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1822\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1823\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1824\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1825\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1826\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1827\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1828\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1829\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1830\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1831\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1832\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1833\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1834\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1835\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1836\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1837\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1838\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1839\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1840\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1841\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1842\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1843\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1844\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1845\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1846\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1847\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1848\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1849\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1850\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1851\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1852\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1853\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1854\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1855\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1856\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1857\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1858\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1859\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1860\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1861\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1862\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1863\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1864\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1865\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1866\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1867\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1868\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1869\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1870\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1871\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1872\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1873\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1874\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1875\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1876\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1877\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1878\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1879\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1880\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1881\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1882\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1883\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1884\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1885\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1886\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1887\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1888\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1889\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1890\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1891\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1892\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1893\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1894\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1895\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1896\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1897\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1898\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1899\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1900\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1901\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1902\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1903\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1904\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1905\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1906\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1907\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1908\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1909\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1910\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1911\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1912\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1913\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1914\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1915\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1916\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1917\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1918\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1919\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1920\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1921\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1922\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1923\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1924\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1925\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1926\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1927\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1928\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1929\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1930\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1931\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1932\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1933\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1934\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1935\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1936\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1937\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1938\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1939\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1940\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1941\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1942\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1943\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1944\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1945\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1946\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1947\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1948\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1949\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1950\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1951\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1952\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1953\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1954\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1955\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1956\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1957\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1958\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1959\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1960\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1961\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1962\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1963\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1964\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1965\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1966\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1967\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1968\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1969\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1970\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1971\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1972\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1973\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1974\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1975\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1976\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1977\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1978\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1979\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1980\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1981\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1982\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1983\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1984\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1985\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1986\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1987\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1988\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1989\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1990\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1991\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1992\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1993\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1994\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1995\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1996\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1997\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1998\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"1999\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2000\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2001\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2002\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2003\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2004\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2005\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2006\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2007\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2008\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2009\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2010\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2011\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2012\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2013\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2014\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2015\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2016\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2017\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2018\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2019\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2020\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2021\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2022\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2023\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2024\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2025\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2026\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2027\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2028\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2029\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2030\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2031\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2032\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2033\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2034\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2035\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2036\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2037\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2038\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2039\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2040\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2041\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2042\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2043\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2044\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2045\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2046\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2047\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2048\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2049\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2050\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2051\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2052\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2053\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2054\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2055\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2056\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2057\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2058\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2059\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2060\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2061\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2062\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2063\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2064\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2065\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2066\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2067\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2068\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2069\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2070\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2071\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2072\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2073\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2074\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2075\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2076\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2077\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2078\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2079\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2080\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2081\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2082\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2083\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2084\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2085\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2086\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2087\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2088\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2089\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2090\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2091\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2092\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2093\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2094\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2095\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2096\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2097\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2098\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2099\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2100\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2101\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2102\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2103\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2104\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2105\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2106\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2107\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2108\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2109\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2110\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2111\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2112\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2113\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2114\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2115\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2116\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2117\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2118\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2119\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2120\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2121\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2122\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2123\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2124\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2125\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2126\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2127\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2128\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2129\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2130\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2131\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2132\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2133\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2134\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2135\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2136\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2137\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2138\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2139\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2140\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2141\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2142\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2143\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2144\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2145\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2146\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2147\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2148\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2149\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2150\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2151\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2152\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2153\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2154\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2155\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2156\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2157\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2158\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2159\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2160\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2161\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2162\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2163\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2164\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2165\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2166\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2167\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2168\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2169\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2170\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2171\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2172\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2173\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2174\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2175\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2176\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2177\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2178\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2179\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2180\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2181\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2182\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2183\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2184\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2185\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2186\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2187\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2188\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2189\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2190\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2191\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2192\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2193\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2194\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2195\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2196\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2197\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2198\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2199\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2200\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2201\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2202\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2203\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2204\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2205\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2206\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2207\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2208\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2209\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2210\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2211\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2212\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2213\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2214\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2215\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2216\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2217\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2218\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2219\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2220\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2221\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2222\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2223\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2224\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2225\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2226\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2227\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2228\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2229\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2230\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2231\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2232\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2233\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2234\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2235\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2236\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2237\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2238\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2239\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2240\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2241\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2242\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2243\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2244\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2245\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2246\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2247\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2248\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2249\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2250\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2251\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2252\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2253\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2254\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2255\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2256\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2257\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2258\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2259\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2260\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2261\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2262\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2263\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2264\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2265\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2266\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2267\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2268\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2269\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2270\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2271\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2272\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2273\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2274\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2275\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2276\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2277\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2278\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2279\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2280\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2281\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2282\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2283\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2284\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2285\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2286\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2287\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2288\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2289\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2290\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2291\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2292\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2293\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2294\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2295\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2296\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2297\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2298\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2299\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2300\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2301\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2302\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2303\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2304\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2305\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2306\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2307\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2308\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2309\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2310\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2311\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2312\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2313\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2314\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2315\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2316\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2317\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2318\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2319\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2320\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2321\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2322\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2323\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2324\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2325\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2326\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2327\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2328\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2329\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2330\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2331\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2332\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2333\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2334\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2335\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2336\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2337\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2338\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2339\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2340\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2341\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2342\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2343\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2344\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2345\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2346\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2347\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2348\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2349\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2350\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2351\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2352\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2353\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2354\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2355\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2356\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2357\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2358\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2359\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2360\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2361\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2362\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2363\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2364\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2365\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2366\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2367\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2368\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2369\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2370\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2371\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2372\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2373\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2374\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2375\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2376\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2377\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2378\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2379\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2380\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2381\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2382\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2383\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2384\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2385\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2386\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2387\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2388\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2389\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2390\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2391\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2392\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2393\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2394\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2395\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2396\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2397\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2398\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2399\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2400\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2401\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2402\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2403\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2404\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2405\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2406\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2407\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2408\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2409\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2410\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2411\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2412\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2413\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2414\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2415\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2416\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2417\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2418\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2419\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2420\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2421\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2422\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2423\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2424\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2425\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2426\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2427\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2428\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2429\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2430\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2431\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2432\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2433\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2434\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2435\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2436\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2437\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2438\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2439\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2440\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2441\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2442\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2443\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2444\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2445\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2446\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2447\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2448\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2449\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2450\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2451\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2452\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2453\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2454\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2455\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2456\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2457\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2458\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2459\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2460\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2461\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2462\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2463\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2464\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2465\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2466\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2467\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2468\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2469\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2470\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2471\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2472\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2473\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2474\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2475\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2476\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2477\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2478\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2479\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2480\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2481\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2482\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2483\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2484\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2485\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2486\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2487\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2488\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2489\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2490\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2491\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2492\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2493\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2494\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2495\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2496\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2497\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2498\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2499\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2500\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2501\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2502\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2503\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2504\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2505\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2506\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2507\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2508\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2509\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2510\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2511\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2512\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2513\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2514\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2515\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2516\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2517\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2518\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2519\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2520\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2521\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2522\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2523\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2524\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2525\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2526\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2527\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2528\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2529\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2530\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2531\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2532\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2533\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2534\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2535\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2536\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2537\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2538\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2539\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2540\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2541\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2542\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2543\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2544\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2545\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2546\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2547\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2548\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2549\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2550\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2551\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2552\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2553\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2554\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2555\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2556\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2557\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2558\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2559\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2560\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2561\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2562\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2563\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2564\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2565\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2566\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2567\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2568\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2569\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2570\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2571\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2572\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2573\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2574\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2575\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2576\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2577\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2578\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2579\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2580\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2581\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2582\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2583\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2584\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2585\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2586\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2587\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2588\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2589\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2590\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2591\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2592\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2593\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2594\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2595\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2596\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2597\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2598\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2599\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2600\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2601\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2602\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2603\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2604\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2605\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2606\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2607\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2608\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2609\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2610\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2611\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2612\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2613\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2614\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2615\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2616\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2617\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2618\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2619\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2620\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2621\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2622\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2623\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2624\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2625\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2626\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2627\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2628\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2629\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2630\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2631\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2632\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2633\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2634\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2635\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2636\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2637\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2638\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2639\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2640\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2641\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2642\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2643\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2644\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2645\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2646\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2647\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2648\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2649\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2650\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2651\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2652\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2653\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2654\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2655\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2656\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2657\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2658\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2659\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2660\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2661\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2662\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2663\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2664\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2665\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2666\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2667\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2668\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2669\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2670\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2671\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2672\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2673\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2674\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2675\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2676\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2677\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2678\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2679\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2680\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2681\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2682\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2683\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2684\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2685\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2686\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2687\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2688\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2689\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2690\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2691\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2692\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2693\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2694\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2695\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2696\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2697\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2698\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2699\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2700\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2701\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2702\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2703\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2704\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2705\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2706\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2707\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2708\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2709\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2710\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2711\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2712\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2713\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2714\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2715\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2716\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2717\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2718\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2719\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2720\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2721\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2722\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2723\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2724\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2725\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2726\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2727\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2728\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2729\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2730\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2731\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2732\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2733\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2734\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2735\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2736\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2737\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2738\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2739\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2740\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2741\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2742\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2743\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2744\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2745\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2746\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2747\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2748\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2749\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2750\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2751\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2752\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2753\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2754\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2755\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2756\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2757\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2758\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2759\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2760\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2761\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2762\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2763\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2764\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2765\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2766\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2767\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2768\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2769\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2770\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2771\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2772\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2773\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2774\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2775\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2776\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2777\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2778\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2779\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2780\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2781\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2782\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2783\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2784\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2785\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2786\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2787\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2788\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2789\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2790\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2791\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2792\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2793\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2794\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2795\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2796\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2797\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2798\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2799\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2800\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2801\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2802\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2803\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2804\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2805\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2806\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2807\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2808\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2809\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2810\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2811\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2812\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2813\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2814\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2815\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2816\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2817\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2818\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2819\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2820\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2821\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2822\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2823\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2824\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2825\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2826\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2827\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2828\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2829\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2830\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2831\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2832\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2833\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2834\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2835\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2836\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2837\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2838\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2839\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2840\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2841\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2842\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2843\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2844\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2845\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2846\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2847\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2848\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2849\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2850\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2851\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2852\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2853\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2854\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2855\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2856\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2857\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2858\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2859\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2860\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2861\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2862\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2863\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2864\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2865\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2866\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2867\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2868\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2869\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2870\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2871\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2872\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2873\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2874\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2875\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2876\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2877\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2878\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2879\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2880\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2881\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2882\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2883\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2884\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2885\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2886\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2887\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2888\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2889\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2890\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2891\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2892\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2893\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2894\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2895\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2896\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2897\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2898\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2899\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2900\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2901\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2902\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2903\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2904\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2905\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2906\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2907\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2908\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2909\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2910\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2911\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2912\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2913\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2914\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2915\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2916\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2917\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2918\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2919\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2920\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2921\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2922\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2923\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2924\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2925\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2926\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2927\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2928\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2929\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2930\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2931\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2932\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2933\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2934\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2935\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2936\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2937\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2938\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2939\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2940\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2941\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2942\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2943\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2944\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2945\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2946\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2947\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2948\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2949\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2950\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2951\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2952\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2953\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2954\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2955\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2956\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2957\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2958\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2959\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2960\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2961\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2962\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2963\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2964\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2965\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2966\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2967\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2968\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2969\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2970\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2971\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2972\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2973\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2974\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2975\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2976\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2977\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2978\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2979\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2980\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2981\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2982\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2983\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2984\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2985\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2986\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2987\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2988\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2989\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2990\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2991\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2992\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2993\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2994\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2995\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2996\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2997\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2998\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2999\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3000\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "4c1398dc-dd52-482f-a2ba-5389c6e6ae12", + "x-ms-client-request-id" : "df07be1b-9e9a-4508-80f7-9d06d7836471", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearchwithtop8de86306145bc0168fb14')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearchwithtop41c652249c5d8bc447884')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bd28abaa-84d0-4acd-bfd3-5948eebff47b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a4fd3ef0-968b-48df-925c-d02fcff7b333", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "39181", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "bd28abaa-84d0-4acd-bfd3-5948eebff47b", + "request-id" : "a4fd3ef0-968b-48df-925c-d02fcff7b333", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:16 GMT", + "Date" : "Thu, 27 May 2021 21:12:45 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "bd28abaa-84d0-4acd-bfd3-5948eebff47b", - "elapsed-time" : "173", + "client-request-id" : "a4fd3ef0-968b-48df-925c-d02fcff7b333", + "elapsed-time" : "167", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "39189", - "Body" : "{\"@search.nextPageParameters\":{\"orderby\":\"HotelId asc\",\"search\":\"*\",\"select\":\"HotelId\",\"top\":1000,\"skip\":1000},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"1\"},{\"@search.score\":1.0,\"HotelId\":\"10\"},{\"@search.score\":1.0,\"HotelId\":\"100\"},{\"@search.score\":1.0,\"HotelId\":\"1000\"},{\"@search.score\":1.0,\"HotelId\":\"1001\"},{\"@search.score\":1.0,\"HotelId\":\"1002\"},{\"@search.score\":1.0,\"HotelId\":\"1003\"},{\"@search.score\":1.0,\"HotelId\":\"1004\"},{\"@search.score\":1.0,\"HotelId\":\"1005\"},{\"@search.score\":1.0,\"HotelId\":\"1006\"},{\"@search.score\":1.0,\"HotelId\":\"1007\"},{\"@search.score\":1.0,\"HotelId\":\"1008\"},{\"@search.score\":1.0,\"HotelId\":\"1009\"},{\"@search.score\":1.0,\"HotelId\":\"101\"},{\"@search.score\":1.0,\"HotelId\":\"1010\"},{\"@search.score\":1.0,\"HotelId\":\"1011\"},{\"@search.score\":1.0,\"HotelId\":\"1012\"},{\"@search.score\":1.0,\"HotelId\":\"1013\"},{\"@search.score\":1.0,\"HotelId\":\"1014\"},{\"@search.score\":1.0,\"HotelId\":\"1015\"},{\"@search.score\":1.0,\"HotelId\":\"1016\"},{\"@search.score\":1.0,\"HotelId\":\"1017\"},{\"@search.score\":1.0,\"HotelId\":\"1018\"},{\"@search.score\":1.0,\"HotelId\":\"1019\"},{\"@search.score\":1.0,\"HotelId\":\"102\"},{\"@search.score\":1.0,\"HotelId\":\"1020\"},{\"@search.score\":1.0,\"HotelId\":\"1021\"},{\"@search.score\":1.0,\"HotelId\":\"1022\"},{\"@search.score\":1.0,\"HotelId\":\"1023\"},{\"@search.score\":1.0,\"HotelId\":\"1024\"},{\"@search.score\":1.0,\"HotelId\":\"1025\"},{\"@search.score\":1.0,\"HotelId\":\"1026\"},{\"@search.score\":1.0,\"HotelId\":\"1027\"},{\"@search.score\":1.0,\"HotelId\":\"1028\"},{\"@search.score\":1.0,\"HotelId\":\"1029\"},{\"@search.score\":1.0,\"HotelId\":\"103\"},{\"@search.score\":1.0,\"HotelId\":\"1030\"},{\"@search.score\":1.0,\"HotelId\":\"1031\"},{\"@search.score\":1.0,\"HotelId\":\"1032\"},{\"@search.score\":1.0,\"HotelId\":\"1033\"},{\"@search.score\":1.0,\"HotelId\":\"1034\"},{\"@search.score\":1.0,\"HotelId\":\"1035\"},{\"@search.score\":1.0,\"HotelId\":\"1036\"},{\"@search.score\":1.0,\"HotelId\":\"1037\"},{\"@search.score\":1.0,\"HotelId\":\"1038\"},{\"@search.score\":1.0,\"HotelId\":\"1039\"},{\"@search.score\":1.0,\"HotelId\":\"104\"},{\"@search.score\":1.0,\"HotelId\":\"1040\"},{\"@search.score\":1.0,\"HotelId\":\"1041\"},{\"@search.score\":1.0,\"HotelId\":\"1042\"},{\"@search.score\":1.0,\"HotelId\":\"1043\"},{\"@search.score\":1.0,\"HotelId\":\"1044\"},{\"@search.score\":1.0,\"HotelId\":\"1045\"},{\"@search.score\":1.0,\"HotelId\":\"1046\"},{\"@search.score\":1.0,\"HotelId\":\"1047\"},{\"@search.score\":1.0,\"HotelId\":\"1048\"},{\"@search.score\":1.0,\"HotelId\":\"1049\"},{\"@search.score\":1.0,\"HotelId\":\"105\"},{\"@search.score\":1.0,\"HotelId\":\"1050\"},{\"@search.score\":1.0,\"HotelId\":\"1051\"},{\"@search.score\":1.0,\"HotelId\":\"1052\"},{\"@search.score\":1.0,\"HotelId\":\"1053\"},{\"@search.score\":1.0,\"HotelId\":\"1054\"},{\"@search.score\":1.0,\"HotelId\":\"1055\"},{\"@search.score\":1.0,\"HotelId\":\"1056\"},{\"@search.score\":1.0,\"HotelId\":\"1057\"},{\"@search.score\":1.0,\"HotelId\":\"1058\"},{\"@search.score\":1.0,\"HotelId\":\"1059\"},{\"@search.score\":1.0,\"HotelId\":\"106\"},{\"@search.score\":1.0,\"HotelId\":\"1060\"},{\"@search.score\":1.0,\"HotelId\":\"1061\"},{\"@search.score\":1.0,\"HotelId\":\"1062\"},{\"@search.score\":1.0,\"HotelId\":\"1063\"},{\"@search.score\":1.0,\"HotelId\":\"1064\"},{\"@search.score\":1.0,\"HotelId\":\"1065\"},{\"@search.score\":1.0,\"HotelId\":\"1066\"},{\"@search.score\":1.0,\"HotelId\":\"1067\"},{\"@search.score\":1.0,\"HotelId\":\"1068\"},{\"@search.score\":1.0,\"HotelId\":\"1069\"},{\"@search.score\":1.0,\"HotelId\":\"107\"},{\"@search.score\":1.0,\"HotelId\":\"1070\"},{\"@search.score\":1.0,\"HotelId\":\"1071\"},{\"@search.score\":1.0,\"HotelId\":\"1072\"},{\"@search.score\":1.0,\"HotelId\":\"1073\"},{\"@search.score\":1.0,\"HotelId\":\"1074\"},{\"@search.score\":1.0,\"HotelId\":\"1075\"},{\"@search.score\":1.0,\"HotelId\":\"1076\"},{\"@search.score\":1.0,\"HotelId\":\"1077\"},{\"@search.score\":1.0,\"HotelId\":\"1078\"},{\"@search.score\":1.0,\"HotelId\":\"1079\"},{\"@search.score\":1.0,\"HotelId\":\"108\"},{\"@search.score\":1.0,\"HotelId\":\"1080\"},{\"@search.score\":1.0,\"HotelId\":\"1081\"},{\"@search.score\":1.0,\"HotelId\":\"1082\"},{\"@search.score\":1.0,\"HotelId\":\"1083\"},{\"@search.score\":1.0,\"HotelId\":\"1084\"},{\"@search.score\":1.0,\"HotelId\":\"1085\"},{\"@search.score\":1.0,\"HotelId\":\"1086\"},{\"@search.score\":1.0,\"HotelId\":\"1087\"},{\"@search.score\":1.0,\"HotelId\":\"1088\"},{\"@search.score\":1.0,\"HotelId\":\"1089\"},{\"@search.score\":1.0,\"HotelId\":\"109\"},{\"@search.score\":1.0,\"HotelId\":\"1090\"},{\"@search.score\":1.0,\"HotelId\":\"1091\"},{\"@search.score\":1.0,\"HotelId\":\"1092\"},{\"@search.score\":1.0,\"HotelId\":\"1093\"},{\"@search.score\":1.0,\"HotelId\":\"1094\"},{\"@search.score\":1.0,\"HotelId\":\"1095\"},{\"@search.score\":1.0,\"HotelId\":\"1096\"},{\"@search.score\":1.0,\"HotelId\":\"1097\"},{\"@search.score\":1.0,\"HotelId\":\"1098\"},{\"@search.score\":1.0,\"HotelId\":\"1099\"},{\"@search.score\":1.0,\"HotelId\":\"11\"},{\"@search.score\":1.0,\"HotelId\":\"110\"},{\"@search.score\":1.0,\"HotelId\":\"1100\"},{\"@search.score\":1.0,\"HotelId\":\"1101\"},{\"@search.score\":1.0,\"HotelId\":\"1102\"},{\"@search.score\":1.0,\"HotelId\":\"1103\"},{\"@search.score\":1.0,\"HotelId\":\"1104\"},{\"@search.score\":1.0,\"HotelId\":\"1105\"},{\"@search.score\":1.0,\"HotelId\":\"1106\"},{\"@search.score\":1.0,\"HotelId\":\"1107\"},{\"@search.score\":1.0,\"HotelId\":\"1108\"},{\"@search.score\":1.0,\"HotelId\":\"1109\"},{\"@search.score\":1.0,\"HotelId\":\"111\"},{\"@search.score\":1.0,\"HotelId\":\"1110\"},{\"@search.score\":1.0,\"HotelId\":\"1111\"},{\"@search.score\":1.0,\"HotelId\":\"1112\"},{\"@search.score\":1.0,\"HotelId\":\"1113\"},{\"@search.score\":1.0,\"HotelId\":\"1114\"},{\"@search.score\":1.0,\"HotelId\":\"1115\"},{\"@search.score\":1.0,\"HotelId\":\"1116\"},{\"@search.score\":1.0,\"HotelId\":\"1117\"},{\"@search.score\":1.0,\"HotelId\":\"1118\"},{\"@search.score\":1.0,\"HotelId\":\"1119\"},{\"@search.score\":1.0,\"HotelId\":\"112\"},{\"@search.score\":1.0,\"HotelId\":\"1120\"},{\"@search.score\":1.0,\"HotelId\":\"1121\"},{\"@search.score\":1.0,\"HotelId\":\"1122\"},{\"@search.score\":1.0,\"HotelId\":\"1123\"},{\"@search.score\":1.0,\"HotelId\":\"1124\"},{\"@search.score\":1.0,\"HotelId\":\"1125\"},{\"@search.score\":1.0,\"HotelId\":\"1126\"},{\"@search.score\":1.0,\"HotelId\":\"1127\"},{\"@search.score\":1.0,\"HotelId\":\"1128\"},{\"@search.score\":1.0,\"HotelId\":\"1129\"},{\"@search.score\":1.0,\"HotelId\":\"113\"},{\"@search.score\":1.0,\"HotelId\":\"1130\"},{\"@search.score\":1.0,\"HotelId\":\"1131\"},{\"@search.score\":1.0,\"HotelId\":\"1132\"},{\"@search.score\":1.0,\"HotelId\":\"1133\"},{\"@search.score\":1.0,\"HotelId\":\"1134\"},{\"@search.score\":1.0,\"HotelId\":\"1135\"},{\"@search.score\":1.0,\"HotelId\":\"1136\"},{\"@search.score\":1.0,\"HotelId\":\"1137\"},{\"@search.score\":1.0,\"HotelId\":\"1138\"},{\"@search.score\":1.0,\"HotelId\":\"1139\"},{\"@search.score\":1.0,\"HotelId\":\"114\"},{\"@search.score\":1.0,\"HotelId\":\"1140\"},{\"@search.score\":1.0,\"HotelId\":\"1141\"},{\"@search.score\":1.0,\"HotelId\":\"1142\"},{\"@search.score\":1.0,\"HotelId\":\"1143\"},{\"@search.score\":1.0,\"HotelId\":\"1144\"},{\"@search.score\":1.0,\"HotelId\":\"1145\"},{\"@search.score\":1.0,\"HotelId\":\"1146\"},{\"@search.score\":1.0,\"HotelId\":\"1147\"},{\"@search.score\":1.0,\"HotelId\":\"1148\"},{\"@search.score\":1.0,\"HotelId\":\"1149\"},{\"@search.score\":1.0,\"HotelId\":\"115\"},{\"@search.score\":1.0,\"HotelId\":\"1150\"},{\"@search.score\":1.0,\"HotelId\":\"1151\"},{\"@search.score\":1.0,\"HotelId\":\"1152\"},{\"@search.score\":1.0,\"HotelId\":\"1153\"},{\"@search.score\":1.0,\"HotelId\":\"1154\"},{\"@search.score\":1.0,\"HotelId\":\"1155\"},{\"@search.score\":1.0,\"HotelId\":\"1156\"},{\"@search.score\":1.0,\"HotelId\":\"1157\"},{\"@search.score\":1.0,\"HotelId\":\"1158\"},{\"@search.score\":1.0,\"HotelId\":\"1159\"},{\"@search.score\":1.0,\"HotelId\":\"116\"},{\"@search.score\":1.0,\"HotelId\":\"1160\"},{\"@search.score\":1.0,\"HotelId\":\"1161\"},{\"@search.score\":1.0,\"HotelId\":\"1162\"},{\"@search.score\":1.0,\"HotelId\":\"1163\"},{\"@search.score\":1.0,\"HotelId\":\"1164\"},{\"@search.score\":1.0,\"HotelId\":\"1165\"},{\"@search.score\":1.0,\"HotelId\":\"1166\"},{\"@search.score\":1.0,\"HotelId\":\"1167\"},{\"@search.score\":1.0,\"HotelId\":\"1168\"},{\"@search.score\":1.0,\"HotelId\":\"1169\"},{\"@search.score\":1.0,\"HotelId\":\"117\"},{\"@search.score\":1.0,\"HotelId\":\"1170\"},{\"@search.score\":1.0,\"HotelId\":\"1171\"},{\"@search.score\":1.0,\"HotelId\":\"1172\"},{\"@search.score\":1.0,\"HotelId\":\"1173\"},{\"@search.score\":1.0,\"HotelId\":\"1174\"},{\"@search.score\":1.0,\"HotelId\":\"1175\"},{\"@search.score\":1.0,\"HotelId\":\"1176\"},{\"@search.score\":1.0,\"HotelId\":\"1177\"},{\"@search.score\":1.0,\"HotelId\":\"1178\"},{\"@search.score\":1.0,\"HotelId\":\"1179\"},{\"@search.score\":1.0,\"HotelId\":\"118\"},{\"@search.score\":1.0,\"HotelId\":\"1180\"},{\"@search.score\":1.0,\"HotelId\":\"1181\"},{\"@search.score\":1.0,\"HotelId\":\"1182\"},{\"@search.score\":1.0,\"HotelId\":\"1183\"},{\"@search.score\":1.0,\"HotelId\":\"1184\"},{\"@search.score\":1.0,\"HotelId\":\"1185\"},{\"@search.score\":1.0,\"HotelId\":\"1186\"},{\"@search.score\":1.0,\"HotelId\":\"1187\"},{\"@search.score\":1.0,\"HotelId\":\"1188\"},{\"@search.score\":1.0,\"HotelId\":\"1189\"},{\"@search.score\":1.0,\"HotelId\":\"119\"},{\"@search.score\":1.0,\"HotelId\":\"1190\"},{\"@search.score\":1.0,\"HotelId\":\"1191\"},{\"@search.score\":1.0,\"HotelId\":\"1192\"},{\"@search.score\":1.0,\"HotelId\":\"1193\"},{\"@search.score\":1.0,\"HotelId\":\"1194\"},{\"@search.score\":1.0,\"HotelId\":\"1195\"},{\"@search.score\":1.0,\"HotelId\":\"1196\"},{\"@search.score\":1.0,\"HotelId\":\"1197\"},{\"@search.score\":1.0,\"HotelId\":\"1198\"},{\"@search.score\":1.0,\"HotelId\":\"1199\"},{\"@search.score\":1.0,\"HotelId\":\"12\"},{\"@search.score\":1.0,\"HotelId\":\"120\"},{\"@search.score\":1.0,\"HotelId\":\"1200\"},{\"@search.score\":1.0,\"HotelId\":\"1201\"},{\"@search.score\":1.0,\"HotelId\":\"1202\"},{\"@search.score\":1.0,\"HotelId\":\"1203\"},{\"@search.score\":1.0,\"HotelId\":\"1204\"},{\"@search.score\":1.0,\"HotelId\":\"1205\"},{\"@search.score\":1.0,\"HotelId\":\"1206\"},{\"@search.score\":1.0,\"HotelId\":\"1207\"},{\"@search.score\":1.0,\"HotelId\":\"1208\"},{\"@search.score\":1.0,\"HotelId\":\"1209\"},{\"@search.score\":1.0,\"HotelId\":\"121\"},{\"@search.score\":1.0,\"HotelId\":\"1210\"},{\"@search.score\":1.0,\"HotelId\":\"1211\"},{\"@search.score\":1.0,\"HotelId\":\"1212\"},{\"@search.score\":1.0,\"HotelId\":\"1213\"},{\"@search.score\":1.0,\"HotelId\":\"1214\"},{\"@search.score\":1.0,\"HotelId\":\"1215\"},{\"@search.score\":1.0,\"HotelId\":\"1216\"},{\"@search.score\":1.0,\"HotelId\":\"1217\"},{\"@search.score\":1.0,\"HotelId\":\"1218\"},{\"@search.score\":1.0,\"HotelId\":\"1219\"},{\"@search.score\":1.0,\"HotelId\":\"122\"},{\"@search.score\":1.0,\"HotelId\":\"1220\"},{\"@search.score\":1.0,\"HotelId\":\"1221\"},{\"@search.score\":1.0,\"HotelId\":\"1222\"},{\"@search.score\":1.0,\"HotelId\":\"1223\"},{\"@search.score\":1.0,\"HotelId\":\"1224\"},{\"@search.score\":1.0,\"HotelId\":\"1225\"},{\"@search.score\":1.0,\"HotelId\":\"1226\"},{\"@search.score\":1.0,\"HotelId\":\"1227\"},{\"@search.score\":1.0,\"HotelId\":\"1228\"},{\"@search.score\":1.0,\"HotelId\":\"1229\"},{\"@search.score\":1.0,\"HotelId\":\"123\"},{\"@search.score\":1.0,\"HotelId\":\"1230\"},{\"@search.score\":1.0,\"HotelId\":\"1231\"},{\"@search.score\":1.0,\"HotelId\":\"1232\"},{\"@search.score\":1.0,\"HotelId\":\"1233\"},{\"@search.score\":1.0,\"HotelId\":\"1234\"},{\"@search.score\":1.0,\"HotelId\":\"1235\"},{\"@search.score\":1.0,\"HotelId\":\"1236\"},{\"@search.score\":1.0,\"HotelId\":\"1237\"},{\"@search.score\":1.0,\"HotelId\":\"1238\"},{\"@search.score\":1.0,\"HotelId\":\"1239\"},{\"@search.score\":1.0,\"HotelId\":\"124\"},{\"@search.score\":1.0,\"HotelId\":\"1240\"},{\"@search.score\":1.0,\"HotelId\":\"1241\"},{\"@search.score\":1.0,\"HotelId\":\"1242\"},{\"@search.score\":1.0,\"HotelId\":\"1243\"},{\"@search.score\":1.0,\"HotelId\":\"1244\"},{\"@search.score\":1.0,\"HotelId\":\"1245\"},{\"@search.score\":1.0,\"HotelId\":\"1246\"},{\"@search.score\":1.0,\"HotelId\":\"1247\"},{\"@search.score\":1.0,\"HotelId\":\"1248\"},{\"@search.score\":1.0,\"HotelId\":\"1249\"},{\"@search.score\":1.0,\"HotelId\":\"125\"},{\"@search.score\":1.0,\"HotelId\":\"1250\"},{\"@search.score\":1.0,\"HotelId\":\"1251\"},{\"@search.score\":1.0,\"HotelId\":\"1252\"},{\"@search.score\":1.0,\"HotelId\":\"1253\"},{\"@search.score\":1.0,\"HotelId\":\"1254\"},{\"@search.score\":1.0,\"HotelId\":\"1255\"},{\"@search.score\":1.0,\"HotelId\":\"1256\"},{\"@search.score\":1.0,\"HotelId\":\"1257\"},{\"@search.score\":1.0,\"HotelId\":\"1258\"},{\"@search.score\":1.0,\"HotelId\":\"1259\"},{\"@search.score\":1.0,\"HotelId\":\"126\"},{\"@search.score\":1.0,\"HotelId\":\"1260\"},{\"@search.score\":1.0,\"HotelId\":\"1261\"},{\"@search.score\":1.0,\"HotelId\":\"1262\"},{\"@search.score\":1.0,\"HotelId\":\"1263\"},{\"@search.score\":1.0,\"HotelId\":\"1264\"},{\"@search.score\":1.0,\"HotelId\":\"1265\"},{\"@search.score\":1.0,\"HotelId\":\"1266\"},{\"@search.score\":1.0,\"HotelId\":\"1267\"},{\"@search.score\":1.0,\"HotelId\":\"1268\"},{\"@search.score\":1.0,\"HotelId\":\"1269\"},{\"@search.score\":1.0,\"HotelId\":\"127\"},{\"@search.score\":1.0,\"HotelId\":\"1270\"},{\"@search.score\":1.0,\"HotelId\":\"1271\"},{\"@search.score\":1.0,\"HotelId\":\"1272\"},{\"@search.score\":1.0,\"HotelId\":\"1273\"},{\"@search.score\":1.0,\"HotelId\":\"1274\"},{\"@search.score\":1.0,\"HotelId\":\"1275\"},{\"@search.score\":1.0,\"HotelId\":\"1276\"},{\"@search.score\":1.0,\"HotelId\":\"1277\"},{\"@search.score\":1.0,\"HotelId\":\"1278\"},{\"@search.score\":1.0,\"HotelId\":\"1279\"},{\"@search.score\":1.0,\"HotelId\":\"128\"},{\"@search.score\":1.0,\"HotelId\":\"1280\"},{\"@search.score\":1.0,\"HotelId\":\"1281\"},{\"@search.score\":1.0,\"HotelId\":\"1282\"},{\"@search.score\":1.0,\"HotelId\":\"1283\"},{\"@search.score\":1.0,\"HotelId\":\"1284\"},{\"@search.score\":1.0,\"HotelId\":\"1285\"},{\"@search.score\":1.0,\"HotelId\":\"1286\"},{\"@search.score\":1.0,\"HotelId\":\"1287\"},{\"@search.score\":1.0,\"HotelId\":\"1288\"},{\"@search.score\":1.0,\"HotelId\":\"1289\"},{\"@search.score\":1.0,\"HotelId\":\"129\"},{\"@search.score\":1.0,\"HotelId\":\"1290\"},{\"@search.score\":1.0,\"HotelId\":\"1291\"},{\"@search.score\":1.0,\"HotelId\":\"1292\"},{\"@search.score\":1.0,\"HotelId\":\"1293\"},{\"@search.score\":1.0,\"HotelId\":\"1294\"},{\"@search.score\":1.0,\"HotelId\":\"1295\"},{\"@search.score\":1.0,\"HotelId\":\"1296\"},{\"@search.score\":1.0,\"HotelId\":\"1297\"},{\"@search.score\":1.0,\"HotelId\":\"1298\"},{\"@search.score\":1.0,\"HotelId\":\"1299\"},{\"@search.score\":1.0,\"HotelId\":\"13\"},{\"@search.score\":1.0,\"HotelId\":\"130\"},{\"@search.score\":1.0,\"HotelId\":\"1300\"},{\"@search.score\":1.0,\"HotelId\":\"1301\"},{\"@search.score\":1.0,\"HotelId\":\"1302\"},{\"@search.score\":1.0,\"HotelId\":\"1303\"},{\"@search.score\":1.0,\"HotelId\":\"1304\"},{\"@search.score\":1.0,\"HotelId\":\"1305\"},{\"@search.score\":1.0,\"HotelId\":\"1306\"},{\"@search.score\":1.0,\"HotelId\":\"1307\"},{\"@search.score\":1.0,\"HotelId\":\"1308\"},{\"@search.score\":1.0,\"HotelId\":\"1309\"},{\"@search.score\":1.0,\"HotelId\":\"131\"},{\"@search.score\":1.0,\"HotelId\":\"1310\"},{\"@search.score\":1.0,\"HotelId\":\"1311\"},{\"@search.score\":1.0,\"HotelId\":\"1312\"},{\"@search.score\":1.0,\"HotelId\":\"1313\"},{\"@search.score\":1.0,\"HotelId\":\"1314\"},{\"@search.score\":1.0,\"HotelId\":\"1315\"},{\"@search.score\":1.0,\"HotelId\":\"1316\"},{\"@search.score\":1.0,\"HotelId\":\"1317\"},{\"@search.score\":1.0,\"HotelId\":\"1318\"},{\"@search.score\":1.0,\"HotelId\":\"1319\"},{\"@search.score\":1.0,\"HotelId\":\"132\"},{\"@search.score\":1.0,\"HotelId\":\"1320\"},{\"@search.score\":1.0,\"HotelId\":\"1321\"},{\"@search.score\":1.0,\"HotelId\":\"1322\"},{\"@search.score\":1.0,\"HotelId\":\"1323\"},{\"@search.score\":1.0,\"HotelId\":\"1324\"},{\"@search.score\":1.0,\"HotelId\":\"1325\"},{\"@search.score\":1.0,\"HotelId\":\"1326\"},{\"@search.score\":1.0,\"HotelId\":\"1327\"},{\"@search.score\":1.0,\"HotelId\":\"1328\"},{\"@search.score\":1.0,\"HotelId\":\"1329\"},{\"@search.score\":1.0,\"HotelId\":\"133\"},{\"@search.score\":1.0,\"HotelId\":\"1330\"},{\"@search.score\":1.0,\"HotelId\":\"1331\"},{\"@search.score\":1.0,\"HotelId\":\"1332\"},{\"@search.score\":1.0,\"HotelId\":\"1333\"},{\"@search.score\":1.0,\"HotelId\":\"1334\"},{\"@search.score\":1.0,\"HotelId\":\"1335\"},{\"@search.score\":1.0,\"HotelId\":\"1336\"},{\"@search.score\":1.0,\"HotelId\":\"1337\"},{\"@search.score\":1.0,\"HotelId\":\"1338\"},{\"@search.score\":1.0,\"HotelId\":\"1339\"},{\"@search.score\":1.0,\"HotelId\":\"134\"},{\"@search.score\":1.0,\"HotelId\":\"1340\"},{\"@search.score\":1.0,\"HotelId\":\"1341\"},{\"@search.score\":1.0,\"HotelId\":\"1342\"},{\"@search.score\":1.0,\"HotelId\":\"1343\"},{\"@search.score\":1.0,\"HotelId\":\"1344\"},{\"@search.score\":1.0,\"HotelId\":\"1345\"},{\"@search.score\":1.0,\"HotelId\":\"1346\"},{\"@search.score\":1.0,\"HotelId\":\"1347\"},{\"@search.score\":1.0,\"HotelId\":\"1348\"},{\"@search.score\":1.0,\"HotelId\":\"1349\"},{\"@search.score\":1.0,\"HotelId\":\"135\"},{\"@search.score\":1.0,\"HotelId\":\"1350\"},{\"@search.score\":1.0,\"HotelId\":\"1351\"},{\"@search.score\":1.0,\"HotelId\":\"1352\"},{\"@search.score\":1.0,\"HotelId\":\"1353\"},{\"@search.score\":1.0,\"HotelId\":\"1354\"},{\"@search.score\":1.0,\"HotelId\":\"1355\"},{\"@search.score\":1.0,\"HotelId\":\"1356\"},{\"@search.score\":1.0,\"HotelId\":\"1357\"},{\"@search.score\":1.0,\"HotelId\":\"1358\"},{\"@search.score\":1.0,\"HotelId\":\"1359\"},{\"@search.score\":1.0,\"HotelId\":\"136\"},{\"@search.score\":1.0,\"HotelId\":\"1360\"},{\"@search.score\":1.0,\"HotelId\":\"1361\"},{\"@search.score\":1.0,\"HotelId\":\"1362\"},{\"@search.score\":1.0,\"HotelId\":\"1363\"},{\"@search.score\":1.0,\"HotelId\":\"1364\"},{\"@search.score\":1.0,\"HotelId\":\"1365\"},{\"@search.score\":1.0,\"HotelId\":\"1366\"},{\"@search.score\":1.0,\"HotelId\":\"1367\"},{\"@search.score\":1.0,\"HotelId\":\"1368\"},{\"@search.score\":1.0,\"HotelId\":\"1369\"},{\"@search.score\":1.0,\"HotelId\":\"137\"},{\"@search.score\":1.0,\"HotelId\":\"1370\"},{\"@search.score\":1.0,\"HotelId\":\"1371\"},{\"@search.score\":1.0,\"HotelId\":\"1372\"},{\"@search.score\":1.0,\"HotelId\":\"1373\"},{\"@search.score\":1.0,\"HotelId\":\"1374\"},{\"@search.score\":1.0,\"HotelId\":\"1375\"},{\"@search.score\":1.0,\"HotelId\":\"1376\"},{\"@search.score\":1.0,\"HotelId\":\"1377\"},{\"@search.score\":1.0,\"HotelId\":\"1378\"},{\"@search.score\":1.0,\"HotelId\":\"1379\"},{\"@search.score\":1.0,\"HotelId\":\"138\"},{\"@search.score\":1.0,\"HotelId\":\"1380\"},{\"@search.score\":1.0,\"HotelId\":\"1381\"},{\"@search.score\":1.0,\"HotelId\":\"1382\"},{\"@search.score\":1.0,\"HotelId\":\"1383\"},{\"@search.score\":1.0,\"HotelId\":\"1384\"},{\"@search.score\":1.0,\"HotelId\":\"1385\"},{\"@search.score\":1.0,\"HotelId\":\"1386\"},{\"@search.score\":1.0,\"HotelId\":\"1387\"},{\"@search.score\":1.0,\"HotelId\":\"1388\"},{\"@search.score\":1.0,\"HotelId\":\"1389\"},{\"@search.score\":1.0,\"HotelId\":\"139\"},{\"@search.score\":1.0,\"HotelId\":\"1390\"},{\"@search.score\":1.0,\"HotelId\":\"1391\"},{\"@search.score\":1.0,\"HotelId\":\"1392\"},{\"@search.score\":1.0,\"HotelId\":\"1393\"},{\"@search.score\":1.0,\"HotelId\":\"1394\"},{\"@search.score\":1.0,\"HotelId\":\"1395\"},{\"@search.score\":1.0,\"HotelId\":\"1396\"},{\"@search.score\":1.0,\"HotelId\":\"1397\"},{\"@search.score\":1.0,\"HotelId\":\"1398\"},{\"@search.score\":1.0,\"HotelId\":\"1399\"},{\"@search.score\":1.0,\"HotelId\":\"14\"},{\"@search.score\":1.0,\"HotelId\":\"140\"},{\"@search.score\":1.0,\"HotelId\":\"1400\"},{\"@search.score\":1.0,\"HotelId\":\"1401\"},{\"@search.score\":1.0,\"HotelId\":\"1402\"},{\"@search.score\":1.0,\"HotelId\":\"1403\"},{\"@search.score\":1.0,\"HotelId\":\"1404\"},{\"@search.score\":1.0,\"HotelId\":\"1405\"},{\"@search.score\":1.0,\"HotelId\":\"1406\"},{\"@search.score\":1.0,\"HotelId\":\"1407\"},{\"@search.score\":1.0,\"HotelId\":\"1408\"},{\"@search.score\":1.0,\"HotelId\":\"1409\"},{\"@search.score\":1.0,\"HotelId\":\"141\"},{\"@search.score\":1.0,\"HotelId\":\"1410\"},{\"@search.score\":1.0,\"HotelId\":\"1411\"},{\"@search.score\":1.0,\"HotelId\":\"1412\"},{\"@search.score\":1.0,\"HotelId\":\"1413\"},{\"@search.score\":1.0,\"HotelId\":\"1414\"},{\"@search.score\":1.0,\"HotelId\":\"1415\"},{\"@search.score\":1.0,\"HotelId\":\"1416\"},{\"@search.score\":1.0,\"HotelId\":\"1417\"},{\"@search.score\":1.0,\"HotelId\":\"1418\"},{\"@search.score\":1.0,\"HotelId\":\"1419\"},{\"@search.score\":1.0,\"HotelId\":\"142\"},{\"@search.score\":1.0,\"HotelId\":\"1420\"},{\"@search.score\":1.0,\"HotelId\":\"1421\"},{\"@search.score\":1.0,\"HotelId\":\"1422\"},{\"@search.score\":1.0,\"HotelId\":\"1423\"},{\"@search.score\":1.0,\"HotelId\":\"1424\"},{\"@search.score\":1.0,\"HotelId\":\"1425\"},{\"@search.score\":1.0,\"HotelId\":\"1426\"},{\"@search.score\":1.0,\"HotelId\":\"1427\"},{\"@search.score\":1.0,\"HotelId\":\"1428\"},{\"@search.score\":1.0,\"HotelId\":\"1429\"},{\"@search.score\":1.0,\"HotelId\":\"143\"},{\"@search.score\":1.0,\"HotelId\":\"1430\"},{\"@search.score\":1.0,\"HotelId\":\"1431\"},{\"@search.score\":1.0,\"HotelId\":\"1432\"},{\"@search.score\":1.0,\"HotelId\":\"1433\"},{\"@search.score\":1.0,\"HotelId\":\"1434\"},{\"@search.score\":1.0,\"HotelId\":\"1435\"},{\"@search.score\":1.0,\"HotelId\":\"1436\"},{\"@search.score\":1.0,\"HotelId\":\"1437\"},{\"@search.score\":1.0,\"HotelId\":\"1438\"},{\"@search.score\":1.0,\"HotelId\":\"1439\"},{\"@search.score\":1.0,\"HotelId\":\"144\"},{\"@search.score\":1.0,\"HotelId\":\"1440\"},{\"@search.score\":1.0,\"HotelId\":\"1441\"},{\"@search.score\":1.0,\"HotelId\":\"1442\"},{\"@search.score\":1.0,\"HotelId\":\"1443\"},{\"@search.score\":1.0,\"HotelId\":\"1444\"},{\"@search.score\":1.0,\"HotelId\":\"1445\"},{\"@search.score\":1.0,\"HotelId\":\"1446\"},{\"@search.score\":1.0,\"HotelId\":\"1447\"},{\"@search.score\":1.0,\"HotelId\":\"1448\"},{\"@search.score\":1.0,\"HotelId\":\"1449\"},{\"@search.score\":1.0,\"HotelId\":\"145\"},{\"@search.score\":1.0,\"HotelId\":\"1450\"},{\"@search.score\":1.0,\"HotelId\":\"1451\"},{\"@search.score\":1.0,\"HotelId\":\"1452\"},{\"@search.score\":1.0,\"HotelId\":\"1453\"},{\"@search.score\":1.0,\"HotelId\":\"1454\"},{\"@search.score\":1.0,\"HotelId\":\"1455\"},{\"@search.score\":1.0,\"HotelId\":\"1456\"},{\"@search.score\":1.0,\"HotelId\":\"1457\"},{\"@search.score\":1.0,\"HotelId\":\"1458\"},{\"@search.score\":1.0,\"HotelId\":\"1459\"},{\"@search.score\":1.0,\"HotelId\":\"146\"},{\"@search.score\":1.0,\"HotelId\":\"1460\"},{\"@search.score\":1.0,\"HotelId\":\"1461\"},{\"@search.score\":1.0,\"HotelId\":\"1462\"},{\"@search.score\":1.0,\"HotelId\":\"1463\"},{\"@search.score\":1.0,\"HotelId\":\"1464\"},{\"@search.score\":1.0,\"HotelId\":\"1465\"},{\"@search.score\":1.0,\"HotelId\":\"1466\"},{\"@search.score\":1.0,\"HotelId\":\"1467\"},{\"@search.score\":1.0,\"HotelId\":\"1468\"},{\"@search.score\":1.0,\"HotelId\":\"1469\"},{\"@search.score\":1.0,\"HotelId\":\"147\"},{\"@search.score\":1.0,\"HotelId\":\"1470\"},{\"@search.score\":1.0,\"HotelId\":\"1471\"},{\"@search.score\":1.0,\"HotelId\":\"1472\"},{\"@search.score\":1.0,\"HotelId\":\"1473\"},{\"@search.score\":1.0,\"HotelId\":\"1474\"},{\"@search.score\":1.0,\"HotelId\":\"1475\"},{\"@search.score\":1.0,\"HotelId\":\"1476\"},{\"@search.score\":1.0,\"HotelId\":\"1477\"},{\"@search.score\":1.0,\"HotelId\":\"1478\"},{\"@search.score\":1.0,\"HotelId\":\"1479\"},{\"@search.score\":1.0,\"HotelId\":\"148\"},{\"@search.score\":1.0,\"HotelId\":\"1480\"},{\"@search.score\":1.0,\"HotelId\":\"1481\"},{\"@search.score\":1.0,\"HotelId\":\"1482\"},{\"@search.score\":1.0,\"HotelId\":\"1483\"},{\"@search.score\":1.0,\"HotelId\":\"1484\"},{\"@search.score\":1.0,\"HotelId\":\"1485\"},{\"@search.score\":1.0,\"HotelId\":\"1486\"},{\"@search.score\":1.0,\"HotelId\":\"1487\"},{\"@search.score\":1.0,\"HotelId\":\"1488\"},{\"@search.score\":1.0,\"HotelId\":\"1489\"},{\"@search.score\":1.0,\"HotelId\":\"149\"},{\"@search.score\":1.0,\"HotelId\":\"1490\"},{\"@search.score\":1.0,\"HotelId\":\"1491\"},{\"@search.score\":1.0,\"HotelId\":\"1492\"},{\"@search.score\":1.0,\"HotelId\":\"1493\"},{\"@search.score\":1.0,\"HotelId\":\"1494\"},{\"@search.score\":1.0,\"HotelId\":\"1495\"},{\"@search.score\":1.0,\"HotelId\":\"1496\"},{\"@search.score\":1.0,\"HotelId\":\"1497\"},{\"@search.score\":1.0,\"HotelId\":\"1498\"},{\"@search.score\":1.0,\"HotelId\":\"1499\"},{\"@search.score\":1.0,\"HotelId\":\"15\"},{\"@search.score\":1.0,\"HotelId\":\"150\"},{\"@search.score\":1.0,\"HotelId\":\"1500\"},{\"@search.score\":1.0,\"HotelId\":\"1501\"},{\"@search.score\":1.0,\"HotelId\":\"1502\"},{\"@search.score\":1.0,\"HotelId\":\"1503\"},{\"@search.score\":1.0,\"HotelId\":\"1504\"},{\"@search.score\":1.0,\"HotelId\":\"1505\"},{\"@search.score\":1.0,\"HotelId\":\"1506\"},{\"@search.score\":1.0,\"HotelId\":\"1507\"},{\"@search.score\":1.0,\"HotelId\":\"1508\"},{\"@search.score\":1.0,\"HotelId\":\"1509\"},{\"@search.score\":1.0,\"HotelId\":\"151\"},{\"@search.score\":1.0,\"HotelId\":\"1510\"},{\"@search.score\":1.0,\"HotelId\":\"1511\"},{\"@search.score\":1.0,\"HotelId\":\"1512\"},{\"@search.score\":1.0,\"HotelId\":\"1513\"},{\"@search.score\":1.0,\"HotelId\":\"1514\"},{\"@search.score\":1.0,\"HotelId\":\"1515\"},{\"@search.score\":1.0,\"HotelId\":\"1516\"},{\"@search.score\":1.0,\"HotelId\":\"1517\"},{\"@search.score\":1.0,\"HotelId\":\"1518\"},{\"@search.score\":1.0,\"HotelId\":\"1519\"},{\"@search.score\":1.0,\"HotelId\":\"152\"},{\"@search.score\":1.0,\"HotelId\":\"1520\"},{\"@search.score\":1.0,\"HotelId\":\"1521\"},{\"@search.score\":1.0,\"HotelId\":\"1522\"},{\"@search.score\":1.0,\"HotelId\":\"1523\"},{\"@search.score\":1.0,\"HotelId\":\"1524\"},{\"@search.score\":1.0,\"HotelId\":\"1525\"},{\"@search.score\":1.0,\"HotelId\":\"1526\"},{\"@search.score\":1.0,\"HotelId\":\"1527\"},{\"@search.score\":1.0,\"HotelId\":\"1528\"},{\"@search.score\":1.0,\"HotelId\":\"1529\"},{\"@search.score\":1.0,\"HotelId\":\"153\"},{\"@search.score\":1.0,\"HotelId\":\"1530\"},{\"@search.score\":1.0,\"HotelId\":\"1531\"},{\"@search.score\":1.0,\"HotelId\":\"1532\"},{\"@search.score\":1.0,\"HotelId\":\"1533\"},{\"@search.score\":1.0,\"HotelId\":\"1534\"},{\"@search.score\":1.0,\"HotelId\":\"1535\"},{\"@search.score\":1.0,\"HotelId\":\"1536\"},{\"@search.score\":1.0,\"HotelId\":\"1537\"},{\"@search.score\":1.0,\"HotelId\":\"1538\"},{\"@search.score\":1.0,\"HotelId\":\"1539\"},{\"@search.score\":1.0,\"HotelId\":\"154\"},{\"@search.score\":1.0,\"HotelId\":\"1540\"},{\"@search.score\":1.0,\"HotelId\":\"1541\"},{\"@search.score\":1.0,\"HotelId\":\"1542\"},{\"@search.score\":1.0,\"HotelId\":\"1543\"},{\"@search.score\":1.0,\"HotelId\":\"1544\"},{\"@search.score\":1.0,\"HotelId\":\"1545\"},{\"@search.score\":1.0,\"HotelId\":\"1546\"},{\"@search.score\":1.0,\"HotelId\":\"1547\"},{\"@search.score\":1.0,\"HotelId\":\"1548\"},{\"@search.score\":1.0,\"HotelId\":\"1549\"},{\"@search.score\":1.0,\"HotelId\":\"155\"},{\"@search.score\":1.0,\"HotelId\":\"1550\"},{\"@search.score\":1.0,\"HotelId\":\"1551\"},{\"@search.score\":1.0,\"HotelId\":\"1552\"},{\"@search.score\":1.0,\"HotelId\":\"1553\"},{\"@search.score\":1.0,\"HotelId\":\"1554\"},{\"@search.score\":1.0,\"HotelId\":\"1555\"},{\"@search.score\":1.0,\"HotelId\":\"1556\"},{\"@search.score\":1.0,\"HotelId\":\"1557\"},{\"@search.score\":1.0,\"HotelId\":\"1558\"},{\"@search.score\":1.0,\"HotelId\":\"1559\"},{\"@search.score\":1.0,\"HotelId\":\"156\"},{\"@search.score\":1.0,\"HotelId\":\"1560\"},{\"@search.score\":1.0,\"HotelId\":\"1561\"},{\"@search.score\":1.0,\"HotelId\":\"1562\"},{\"@search.score\":1.0,\"HotelId\":\"1563\"},{\"@search.score\":1.0,\"HotelId\":\"1564\"},{\"@search.score\":1.0,\"HotelId\":\"1565\"},{\"@search.score\":1.0,\"HotelId\":\"1566\"},{\"@search.score\":1.0,\"HotelId\":\"1567\"},{\"@search.score\":1.0,\"HotelId\":\"1568\"},{\"@search.score\":1.0,\"HotelId\":\"1569\"},{\"@search.score\":1.0,\"HotelId\":\"157\"},{\"@search.score\":1.0,\"HotelId\":\"1570\"},{\"@search.score\":1.0,\"HotelId\":\"1571\"},{\"@search.score\":1.0,\"HotelId\":\"1572\"},{\"@search.score\":1.0,\"HotelId\":\"1573\"},{\"@search.score\":1.0,\"HotelId\":\"1574\"},{\"@search.score\":1.0,\"HotelId\":\"1575\"},{\"@search.score\":1.0,\"HotelId\":\"1576\"},{\"@search.score\":1.0,\"HotelId\":\"1577\"},{\"@search.score\":1.0,\"HotelId\":\"1578\"},{\"@search.score\":1.0,\"HotelId\":\"1579\"},{\"@search.score\":1.0,\"HotelId\":\"158\"},{\"@search.score\":1.0,\"HotelId\":\"1580\"},{\"@search.score\":1.0,\"HotelId\":\"1581\"},{\"@search.score\":1.0,\"HotelId\":\"1582\"},{\"@search.score\":1.0,\"HotelId\":\"1583\"},{\"@search.score\":1.0,\"HotelId\":\"1584\"},{\"@search.score\":1.0,\"HotelId\":\"1585\"},{\"@search.score\":1.0,\"HotelId\":\"1586\"},{\"@search.score\":1.0,\"HotelId\":\"1587\"},{\"@search.score\":1.0,\"HotelId\":\"1588\"},{\"@search.score\":1.0,\"HotelId\":\"1589\"},{\"@search.score\":1.0,\"HotelId\":\"159\"},{\"@search.score\":1.0,\"HotelId\":\"1590\"},{\"@search.score\":1.0,\"HotelId\":\"1591\"},{\"@search.score\":1.0,\"HotelId\":\"1592\"},{\"@search.score\":1.0,\"HotelId\":\"1593\"},{\"@search.score\":1.0,\"HotelId\":\"1594\"},{\"@search.score\":1.0,\"HotelId\":\"1595\"},{\"@search.score\":1.0,\"HotelId\":\"1596\"},{\"@search.score\":1.0,\"HotelId\":\"1597\"},{\"@search.score\":1.0,\"HotelId\":\"1598\"},{\"@search.score\":1.0,\"HotelId\":\"1599\"},{\"@search.score\":1.0,\"HotelId\":\"16\"},{\"@search.score\":1.0,\"HotelId\":\"160\"},{\"@search.score\":1.0,\"HotelId\":\"1600\"},{\"@search.score\":1.0,\"HotelId\":\"1601\"},{\"@search.score\":1.0,\"HotelId\":\"1602\"},{\"@search.score\":1.0,\"HotelId\":\"1603\"},{\"@search.score\":1.0,\"HotelId\":\"1604\"},{\"@search.score\":1.0,\"HotelId\":\"1605\"},{\"@search.score\":1.0,\"HotelId\":\"1606\"},{\"@search.score\":1.0,\"HotelId\":\"1607\"},{\"@search.score\":1.0,\"HotelId\":\"1608\"},{\"@search.score\":1.0,\"HotelId\":\"1609\"},{\"@search.score\":1.0,\"HotelId\":\"161\"},{\"@search.score\":1.0,\"HotelId\":\"1610\"},{\"@search.score\":1.0,\"HotelId\":\"1611\"},{\"@search.score\":1.0,\"HotelId\":\"1612\"},{\"@search.score\":1.0,\"HotelId\":\"1613\"},{\"@search.score\":1.0,\"HotelId\":\"1614\"},{\"@search.score\":1.0,\"HotelId\":\"1615\"},{\"@search.score\":1.0,\"HotelId\":\"1616\"},{\"@search.score\":1.0,\"HotelId\":\"1617\"},{\"@search.score\":1.0,\"HotelId\":\"1618\"},{\"@search.score\":1.0,\"HotelId\":\"1619\"},{\"@search.score\":1.0,\"HotelId\":\"162\"},{\"@search.score\":1.0,\"HotelId\":\"1620\"},{\"@search.score\":1.0,\"HotelId\":\"1621\"},{\"@search.score\":1.0,\"HotelId\":\"1622\"},{\"@search.score\":1.0,\"HotelId\":\"1623\"},{\"@search.score\":1.0,\"HotelId\":\"1624\"},{\"@search.score\":1.0,\"HotelId\":\"1625\"},{\"@search.score\":1.0,\"HotelId\":\"1626\"},{\"@search.score\":1.0,\"HotelId\":\"1627\"},{\"@search.score\":1.0,\"HotelId\":\"1628\"},{\"@search.score\":1.0,\"HotelId\":\"1629\"},{\"@search.score\":1.0,\"HotelId\":\"163\"},{\"@search.score\":1.0,\"HotelId\":\"1630\"},{\"@search.score\":1.0,\"HotelId\":\"1631\"},{\"@search.score\":1.0,\"HotelId\":\"1632\"},{\"@search.score\":1.0,\"HotelId\":\"1633\"},{\"@search.score\":1.0,\"HotelId\":\"1634\"},{\"@search.score\":1.0,\"HotelId\":\"1635\"},{\"@search.score\":1.0,\"HotelId\":\"1636\"},{\"@search.score\":1.0,\"HotelId\":\"1637\"},{\"@search.score\":1.0,\"HotelId\":\"1638\"},{\"@search.score\":1.0,\"HotelId\":\"1639\"},{\"@search.score\":1.0,\"HotelId\":\"164\"},{\"@search.score\":1.0,\"HotelId\":\"1640\"},{\"@search.score\":1.0,\"HotelId\":\"1641\"},{\"@search.score\":1.0,\"HotelId\":\"1642\"},{\"@search.score\":1.0,\"HotelId\":\"1643\"},{\"@search.score\":1.0,\"HotelId\":\"1644\"},{\"@search.score\":1.0,\"HotelId\":\"1645\"},{\"@search.score\":1.0,\"HotelId\":\"1646\"},{\"@search.score\":1.0,\"HotelId\":\"1647\"},{\"@search.score\":1.0,\"HotelId\":\"1648\"},{\"@search.score\":1.0,\"HotelId\":\"1649\"},{\"@search.score\":1.0,\"HotelId\":\"165\"},{\"@search.score\":1.0,\"HotelId\":\"1650\"},{\"@search.score\":1.0,\"HotelId\":\"1651\"},{\"@search.score\":1.0,\"HotelId\":\"1652\"},{\"@search.score\":1.0,\"HotelId\":\"1653\"},{\"@search.score\":1.0,\"HotelId\":\"1654\"},{\"@search.score\":1.0,\"HotelId\":\"1655\"},{\"@search.score\":1.0,\"HotelId\":\"1656\"},{\"@search.score\":1.0,\"HotelId\":\"1657\"},{\"@search.score\":1.0,\"HotelId\":\"1658\"},{\"@search.score\":1.0,\"HotelId\":\"1659\"},{\"@search.score\":1.0,\"HotelId\":\"166\"},{\"@search.score\":1.0,\"HotelId\":\"1660\"},{\"@search.score\":1.0,\"HotelId\":\"1661\"},{\"@search.score\":1.0,\"HotelId\":\"1662\"},{\"@search.score\":1.0,\"HotelId\":\"1663\"},{\"@search.score\":1.0,\"HotelId\":\"1664\"},{\"@search.score\":1.0,\"HotelId\":\"1665\"},{\"@search.score\":1.0,\"HotelId\":\"1666\"},{\"@search.score\":1.0,\"HotelId\":\"1667\"},{\"@search.score\":1.0,\"HotelId\":\"1668\"},{\"@search.score\":1.0,\"HotelId\":\"1669\"},{\"@search.score\":1.0,\"HotelId\":\"167\"},{\"@search.score\":1.0,\"HotelId\":\"1670\"},{\"@search.score\":1.0,\"HotelId\":\"1671\"},{\"@search.score\":1.0,\"HotelId\":\"1672\"},{\"@search.score\":1.0,\"HotelId\":\"1673\"},{\"@search.score\":1.0,\"HotelId\":\"1674\"},{\"@search.score\":1.0,\"HotelId\":\"1675\"},{\"@search.score\":1.0,\"HotelId\":\"1676\"},{\"@search.score\":1.0,\"HotelId\":\"1677\"},{\"@search.score\":1.0,\"HotelId\":\"1678\"},{\"@search.score\":1.0,\"HotelId\":\"1679\"},{\"@search.score\":1.0,\"HotelId\":\"168\"},{\"@search.score\":1.0,\"HotelId\":\"1680\"},{\"@search.score\":1.0,\"HotelId\":\"1681\"},{\"@search.score\":1.0,\"HotelId\":\"1682\"},{\"@search.score\":1.0,\"HotelId\":\"1683\"},{\"@search.score\":1.0,\"HotelId\":\"1684\"},{\"@search.score\":1.0,\"HotelId\":\"1685\"},{\"@search.score\":1.0,\"HotelId\":\"1686\"},{\"@search.score\":1.0,\"HotelId\":\"1687\"},{\"@search.score\":1.0,\"HotelId\":\"1688\"},{\"@search.score\":1.0,\"HotelId\":\"1689\"},{\"@search.score\":1.0,\"HotelId\":\"169\"},{\"@search.score\":1.0,\"HotelId\":\"1690\"},{\"@search.score\":1.0,\"HotelId\":\"1691\"},{\"@search.score\":1.0,\"HotelId\":\"1692\"},{\"@search.score\":1.0,\"HotelId\":\"1693\"},{\"@search.score\":1.0,\"HotelId\":\"1694\"},{\"@search.score\":1.0,\"HotelId\":\"1695\"},{\"@search.score\":1.0,\"HotelId\":\"1696\"},{\"@search.score\":1.0,\"HotelId\":\"1697\"},{\"@search.score\":1.0,\"HotelId\":\"1698\"},{\"@search.score\":1.0,\"HotelId\":\"1699\"},{\"@search.score\":1.0,\"HotelId\":\"17\"},{\"@search.score\":1.0,\"HotelId\":\"170\"},{\"@search.score\":1.0,\"HotelId\":\"1700\"},{\"@search.score\":1.0,\"HotelId\":\"1701\"},{\"@search.score\":1.0,\"HotelId\":\"1702\"},{\"@search.score\":1.0,\"HotelId\":\"1703\"},{\"@search.score\":1.0,\"HotelId\":\"1704\"},{\"@search.score\":1.0,\"HotelId\":\"1705\"},{\"@search.score\":1.0,\"HotelId\":\"1706\"},{\"@search.score\":1.0,\"HotelId\":\"1707\"},{\"@search.score\":1.0,\"HotelId\":\"1708\"},{\"@search.score\":1.0,\"HotelId\":\"1709\"},{\"@search.score\":1.0,\"HotelId\":\"171\"},{\"@search.score\":1.0,\"HotelId\":\"1710\"},{\"@search.score\":1.0,\"HotelId\":\"1711\"},{\"@search.score\":1.0,\"HotelId\":\"1712\"},{\"@search.score\":1.0,\"HotelId\":\"1713\"},{\"@search.score\":1.0,\"HotelId\":\"1714\"},{\"@search.score\":1.0,\"HotelId\":\"1715\"},{\"@search.score\":1.0,\"HotelId\":\"1716\"},{\"@search.score\":1.0,\"HotelId\":\"1717\"},{\"@search.score\":1.0,\"HotelId\":\"1718\"},{\"@search.score\":1.0,\"HotelId\":\"1719\"},{\"@search.score\":1.0,\"HotelId\":\"172\"},{\"@search.score\":1.0,\"HotelId\":\"1720\"},{\"@search.score\":1.0,\"HotelId\":\"1721\"},{\"@search.score\":1.0,\"HotelId\":\"1722\"},{\"@search.score\":1.0,\"HotelId\":\"1723\"},{\"@search.score\":1.0,\"HotelId\":\"1724\"},{\"@search.score\":1.0,\"HotelId\":\"1725\"},{\"@search.score\":1.0,\"HotelId\":\"1726\"},{\"@search.score\":1.0,\"HotelId\":\"1727\"},{\"@search.score\":1.0,\"HotelId\":\"1728\"},{\"@search.score\":1.0,\"HotelId\":\"1729\"},{\"@search.score\":1.0,\"HotelId\":\"173\"},{\"@search.score\":1.0,\"HotelId\":\"1730\"},{\"@search.score\":1.0,\"HotelId\":\"1731\"},{\"@search.score\":1.0,\"HotelId\":\"1732\"},{\"@search.score\":1.0,\"HotelId\":\"1733\"},{\"@search.score\":1.0,\"HotelId\":\"1734\"},{\"@search.score\":1.0,\"HotelId\":\"1735\"},{\"@search.score\":1.0,\"HotelId\":\"1736\"},{\"@search.score\":1.0,\"HotelId\":\"1737\"},{\"@search.score\":1.0,\"HotelId\":\"1738\"},{\"@search.score\":1.0,\"HotelId\":\"1739\"},{\"@search.score\":1.0,\"HotelId\":\"174\"},{\"@search.score\":1.0,\"HotelId\":\"1740\"},{\"@search.score\":1.0,\"HotelId\":\"1741\"},{\"@search.score\":1.0,\"HotelId\":\"1742\"},{\"@search.score\":1.0,\"HotelId\":\"1743\"},{\"@search.score\":1.0,\"HotelId\":\"1744\"},{\"@search.score\":1.0,\"HotelId\":\"1745\"},{\"@search.score\":1.0,\"HotelId\":\"1746\"},{\"@search.score\":1.0,\"HotelId\":\"1747\"},{\"@search.score\":1.0,\"HotelId\":\"1748\"},{\"@search.score\":1.0,\"HotelId\":\"1749\"},{\"@search.score\":1.0,\"HotelId\":\"175\"},{\"@search.score\":1.0,\"HotelId\":\"1750\"},{\"@search.score\":1.0,\"HotelId\":\"1751\"},{\"@search.score\":1.0,\"HotelId\":\"1752\"},{\"@search.score\":1.0,\"HotelId\":\"1753\"},{\"@search.score\":1.0,\"HotelId\":\"1754\"},{\"@search.score\":1.0,\"HotelId\":\"1755\"},{\"@search.score\":1.0,\"HotelId\":\"1756\"},{\"@search.score\":1.0,\"HotelId\":\"1757\"},{\"@search.score\":1.0,\"HotelId\":\"1758\"},{\"@search.score\":1.0,\"HotelId\":\"1759\"},{\"@search.score\":1.0,\"HotelId\":\"176\"},{\"@search.score\":1.0,\"HotelId\":\"1760\"},{\"@search.score\":1.0,\"HotelId\":\"1761\"},{\"@search.score\":1.0,\"HotelId\":\"1762\"},{\"@search.score\":1.0,\"HotelId\":\"1763\"},{\"@search.score\":1.0,\"HotelId\":\"1764\"},{\"@search.score\":1.0,\"HotelId\":\"1765\"},{\"@search.score\":1.0,\"HotelId\":\"1766\"},{\"@search.score\":1.0,\"HotelId\":\"1767\"},{\"@search.score\":1.0,\"HotelId\":\"1768\"},{\"@search.score\":1.0,\"HotelId\":\"1769\"},{\"@search.score\":1.0,\"HotelId\":\"177\"},{\"@search.score\":1.0,\"HotelId\":\"1770\"},{\"@search.score\":1.0,\"HotelId\":\"1771\"},{\"@search.score\":1.0,\"HotelId\":\"1772\"},{\"@search.score\":1.0,\"HotelId\":\"1773\"},{\"@search.score\":1.0,\"HotelId\":\"1774\"},{\"@search.score\":1.0,\"HotelId\":\"1775\"},{\"@search.score\":1.0,\"HotelId\":\"1776\"},{\"@search.score\":1.0,\"HotelId\":\"1777\"},{\"@search.score\":1.0,\"HotelId\":\"1778\"},{\"@search.score\":1.0,\"HotelId\":\"1779\"},{\"@search.score\":1.0,\"HotelId\":\"178\"},{\"@search.score\":1.0,\"HotelId\":\"1780\"},{\"@search.score\":1.0,\"HotelId\":\"1781\"},{\"@search.score\":1.0,\"HotelId\":\"1782\"},{\"@search.score\":1.0,\"HotelId\":\"1783\"},{\"@search.score\":1.0,\"HotelId\":\"1784\"},{\"@search.score\":1.0,\"HotelId\":\"1785\"},{\"@search.score\":1.0,\"HotelId\":\"1786\"},{\"@search.score\":1.0,\"HotelId\":\"1787\"},{\"@search.score\":1.0,\"HotelId\":\"1788\"},{\"@search.score\":1.0,\"HotelId\":\"1789\"},{\"@search.score\":1.0,\"HotelId\":\"179\"},{\"@search.score\":1.0,\"HotelId\":\"1790\"},{\"@search.score\":1.0,\"HotelId\":\"1791\"},{\"@search.score\":1.0,\"HotelId\":\"1792\"},{\"@search.score\":1.0,\"HotelId\":\"1793\"},{\"@search.score\":1.0,\"HotelId\":\"1794\"},{\"@search.score\":1.0,\"HotelId\":\"1795\"},{\"@search.score\":1.0,\"HotelId\":\"1796\"},{\"@search.score\":1.0,\"HotelId\":\"1797\"},{\"@search.score\":1.0,\"HotelId\":\"1798\"},{\"@search.score\":1.0,\"HotelId\":\"1799\"},{\"@search.score\":1.0,\"HotelId\":\"18\"},{\"@search.score\":1.0,\"HotelId\":\"180\"},{\"@search.score\":1.0,\"HotelId\":\"1800\"},{\"@search.score\":1.0,\"HotelId\":\"1801\"},{\"@search.score\":1.0,\"HotelId\":\"1802\"},{\"@search.score\":1.0,\"HotelId\":\"1803\"},{\"@search.score\":1.0,\"HotelId\":\"1804\"},{\"@search.score\":1.0,\"HotelId\":\"1805\"},{\"@search.score\":1.0,\"HotelId\":\"1806\"},{\"@search.score\":1.0,\"HotelId\":\"1807\"},{\"@search.score\":1.0,\"HotelId\":\"1808\"},{\"@search.score\":1.0,\"HotelId\":\"1809\"},{\"@search.score\":1.0,\"HotelId\":\"181\"},{\"@search.score\":1.0,\"HotelId\":\"1810\"},{\"@search.score\":1.0,\"HotelId\":\"1811\"},{\"@search.score\":1.0,\"HotelId\":\"1812\"},{\"@search.score\":1.0,\"HotelId\":\"1813\"},{\"@search.score\":1.0,\"HotelId\":\"1814\"},{\"@search.score\":1.0,\"HotelId\":\"1815\"},{\"@search.score\":1.0,\"HotelId\":\"1816\"},{\"@search.score\":1.0,\"HotelId\":\"1817\"},{\"@search.score\":1.0,\"HotelId\":\"1818\"},{\"@search.score\":1.0,\"HotelId\":\"1819\"},{\"@search.score\":1.0,\"HotelId\":\"182\"},{\"@search.score\":1.0,\"HotelId\":\"1820\"},{\"@search.score\":1.0,\"HotelId\":\"1821\"},{\"@search.score\":1.0,\"HotelId\":\"1822\"},{\"@search.score\":1.0,\"HotelId\":\"1823\"},{\"@search.score\":1.0,\"HotelId\":\"1824\"},{\"@search.score\":1.0,\"HotelId\":\"1825\"},{\"@search.score\":1.0,\"HotelId\":\"1826\"},{\"@search.score\":1.0,\"HotelId\":\"1827\"},{\"@search.score\":1.0,\"HotelId\":\"1828\"},{\"@search.score\":1.0,\"HotelId\":\"1829\"},{\"@search.score\":1.0,\"HotelId\":\"183\"},{\"@search.score\":1.0,\"HotelId\":\"1830\"},{\"@search.score\":1.0,\"HotelId\":\"1831\"},{\"@search.score\":1.0,\"HotelId\":\"1832\"},{\"@search.score\":1.0,\"HotelId\":\"1833\"},{\"@search.score\":1.0,\"HotelId\":\"1834\"},{\"@search.score\":1.0,\"HotelId\":\"1835\"},{\"@search.score\":1.0,\"HotelId\":\"1836\"},{\"@search.score\":1.0,\"HotelId\":\"1837\"},{\"@search.score\":1.0,\"HotelId\":\"1838\"},{\"@search.score\":1.0,\"HotelId\":\"1839\"},{\"@search.score\":1.0,\"HotelId\":\"184\"},{\"@search.score\":1.0,\"HotelId\":\"1840\"},{\"@search.score\":1.0,\"HotelId\":\"1841\"},{\"@search.score\":1.0,\"HotelId\":\"1842\"},{\"@search.score\":1.0,\"HotelId\":\"1843\"},{\"@search.score\":1.0,\"HotelId\":\"1844\"},{\"@search.score\":1.0,\"HotelId\":\"1845\"},{\"@search.score\":1.0,\"HotelId\":\"1846\"},{\"@search.score\":1.0,\"HotelId\":\"1847\"},{\"@search.score\":1.0,\"HotelId\":\"1848\"},{\"@search.score\":1.0,\"HotelId\":\"1849\"},{\"@search.score\":1.0,\"HotelId\":\"185\"},{\"@search.score\":1.0,\"HotelId\":\"1850\"},{\"@search.score\":1.0,\"HotelId\":\"1851\"},{\"@search.score\":1.0,\"HotelId\":\"1852\"},{\"@search.score\":1.0,\"HotelId\":\"1853\"},{\"@search.score\":1.0,\"HotelId\":\"1854\"},{\"@search.score\":1.0,\"HotelId\":\"1855\"},{\"@search.score\":1.0,\"HotelId\":\"1856\"},{\"@search.score\":1.0,\"HotelId\":\"1857\"},{\"@search.score\":1.0,\"HotelId\":\"1858\"},{\"@search.score\":1.0,\"HotelId\":\"1859\"},{\"@search.score\":1.0,\"HotelId\":\"186\"},{\"@search.score\":1.0,\"HotelId\":\"1860\"},{\"@search.score\":1.0,\"HotelId\":\"1861\"},{\"@search.score\":1.0,\"HotelId\":\"1862\"},{\"@search.score\":1.0,\"HotelId\":\"1863\"},{\"@search.score\":1.0,\"HotelId\":\"1864\"},{\"@search.score\":1.0,\"HotelId\":\"1865\"},{\"@search.score\":1.0,\"HotelId\":\"1866\"},{\"@search.score\":1.0,\"HotelId\":\"1867\"},{\"@search.score\":1.0,\"HotelId\":\"1868\"},{\"@search.score\":1.0,\"HotelId\":\"1869\"},{\"@search.score\":1.0,\"HotelId\":\"187\"},{\"@search.score\":1.0,\"HotelId\":\"1870\"},{\"@search.score\":1.0,\"HotelId\":\"1871\"},{\"@search.score\":1.0,\"HotelId\":\"1872\"},{\"@search.score\":1.0,\"HotelId\":\"1873\"},{\"@search.score\":1.0,\"HotelId\":\"1874\"},{\"@search.score\":1.0,\"HotelId\":\"1875\"},{\"@search.score\":1.0,\"HotelId\":\"1876\"},{\"@search.score\":1.0,\"HotelId\":\"1877\"},{\"@search.score\":1.0,\"HotelId\":\"1878\"},{\"@search.score\":1.0,\"HotelId\":\"1879\"},{\"@search.score\":1.0,\"HotelId\":\"188\"},{\"@search.score\":1.0,\"HotelId\":\"1880\"},{\"@search.score\":1.0,\"HotelId\":\"1881\"},{\"@search.score\":1.0,\"HotelId\":\"1882\"},{\"@search.score\":1.0,\"HotelId\":\"1883\"},{\"@search.score\":1.0,\"HotelId\":\"1884\"},{\"@search.score\":1.0,\"HotelId\":\"1885\"},{\"@search.score\":1.0,\"HotelId\":\"1886\"},{\"@search.score\":1.0,\"HotelId\":\"1887\"},{\"@search.score\":1.0,\"HotelId\":\"1888\"},{\"@search.score\":1.0,\"HotelId\":\"1889\"},{\"@search.score\":1.0,\"HotelId\":\"189\"},{\"@search.score\":1.0,\"HotelId\":\"1890\"},{\"@search.score\":1.0,\"HotelId\":\"1891\"},{\"@search.score\":1.0,\"HotelId\":\"1892\"},{\"@search.score\":1.0,\"HotelId\":\"1893\"},{\"@search.score\":1.0,\"HotelId\":\"1894\"},{\"@search.score\":1.0,\"HotelId\":\"1895\"},{\"@search.score\":1.0,\"HotelId\":\"1896\"},{\"@search.score\":1.0,\"HotelId\":\"1897\"},{\"@search.score\":1.0,\"HotelId\":\"1898\"},{\"@search.score\":1.0,\"HotelId\":\"1899\"}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscancontinuesearchwithtop8de86306145bc0168fb14')/docs/search.post.search?api-version=2020-06-30-Preview\"}", - "x-ms-client-request-id" : "bd28abaa-84d0-4acd-bfd3-5948eebff47b", + "Body" : "{\"@search.nextPageParameters\":{\"orderby\":\"HotelId asc\",\"search\":\"*\",\"select\":\"HotelId\",\"top\":1000,\"skip\":1000},\"value\":[{\"@search.score\":1.0,\"HotelId\":\"1\"},{\"@search.score\":1.0,\"HotelId\":\"10\"},{\"@search.score\":1.0,\"HotelId\":\"100\"},{\"@search.score\":1.0,\"HotelId\":\"1000\"},{\"@search.score\":1.0,\"HotelId\":\"1001\"},{\"@search.score\":1.0,\"HotelId\":\"1002\"},{\"@search.score\":1.0,\"HotelId\":\"1003\"},{\"@search.score\":1.0,\"HotelId\":\"1004\"},{\"@search.score\":1.0,\"HotelId\":\"1005\"},{\"@search.score\":1.0,\"HotelId\":\"1006\"},{\"@search.score\":1.0,\"HotelId\":\"1007\"},{\"@search.score\":1.0,\"HotelId\":\"1008\"},{\"@search.score\":1.0,\"HotelId\":\"1009\"},{\"@search.score\":1.0,\"HotelId\":\"101\"},{\"@search.score\":1.0,\"HotelId\":\"1010\"},{\"@search.score\":1.0,\"HotelId\":\"1011\"},{\"@search.score\":1.0,\"HotelId\":\"1012\"},{\"@search.score\":1.0,\"HotelId\":\"1013\"},{\"@search.score\":1.0,\"HotelId\":\"1014\"},{\"@search.score\":1.0,\"HotelId\":\"1015\"},{\"@search.score\":1.0,\"HotelId\":\"1016\"},{\"@search.score\":1.0,\"HotelId\":\"1017\"},{\"@search.score\":1.0,\"HotelId\":\"1018\"},{\"@search.score\":1.0,\"HotelId\":\"1019\"},{\"@search.score\":1.0,\"HotelId\":\"102\"},{\"@search.score\":1.0,\"HotelId\":\"1020\"},{\"@search.score\":1.0,\"HotelId\":\"1021\"},{\"@search.score\":1.0,\"HotelId\":\"1022\"},{\"@search.score\":1.0,\"HotelId\":\"1023\"},{\"@search.score\":1.0,\"HotelId\":\"1024\"},{\"@search.score\":1.0,\"HotelId\":\"1025\"},{\"@search.score\":1.0,\"HotelId\":\"1026\"},{\"@search.score\":1.0,\"HotelId\":\"1027\"},{\"@search.score\":1.0,\"HotelId\":\"1028\"},{\"@search.score\":1.0,\"HotelId\":\"1029\"},{\"@search.score\":1.0,\"HotelId\":\"103\"},{\"@search.score\":1.0,\"HotelId\":\"1030\"},{\"@search.score\":1.0,\"HotelId\":\"1031\"},{\"@search.score\":1.0,\"HotelId\":\"1032\"},{\"@search.score\":1.0,\"HotelId\":\"1033\"},{\"@search.score\":1.0,\"HotelId\":\"1034\"},{\"@search.score\":1.0,\"HotelId\":\"1035\"},{\"@search.score\":1.0,\"HotelId\":\"1036\"},{\"@search.score\":1.0,\"HotelId\":\"1037\"},{\"@search.score\":1.0,\"HotelId\":\"1038\"},{\"@search.score\":1.0,\"HotelId\":\"1039\"},{\"@search.score\":1.0,\"HotelId\":\"104\"},{\"@search.score\":1.0,\"HotelId\":\"1040\"},{\"@search.score\":1.0,\"HotelId\":\"1041\"},{\"@search.score\":1.0,\"HotelId\":\"1042\"},{\"@search.score\":1.0,\"HotelId\":\"1043\"},{\"@search.score\":1.0,\"HotelId\":\"1044\"},{\"@search.score\":1.0,\"HotelId\":\"1045\"},{\"@search.score\":1.0,\"HotelId\":\"1046\"},{\"@search.score\":1.0,\"HotelId\":\"1047\"},{\"@search.score\":1.0,\"HotelId\":\"1048\"},{\"@search.score\":1.0,\"HotelId\":\"1049\"},{\"@search.score\":1.0,\"HotelId\":\"105\"},{\"@search.score\":1.0,\"HotelId\":\"1050\"},{\"@search.score\":1.0,\"HotelId\":\"1051\"},{\"@search.score\":1.0,\"HotelId\":\"1052\"},{\"@search.score\":1.0,\"HotelId\":\"1053\"},{\"@search.score\":1.0,\"HotelId\":\"1054\"},{\"@search.score\":1.0,\"HotelId\":\"1055\"},{\"@search.score\":1.0,\"HotelId\":\"1056\"},{\"@search.score\":1.0,\"HotelId\":\"1057\"},{\"@search.score\":1.0,\"HotelId\":\"1058\"},{\"@search.score\":1.0,\"HotelId\":\"1059\"},{\"@search.score\":1.0,\"HotelId\":\"106\"},{\"@search.score\":1.0,\"HotelId\":\"1060\"},{\"@search.score\":1.0,\"HotelId\":\"1061\"},{\"@search.score\":1.0,\"HotelId\":\"1062\"},{\"@search.score\":1.0,\"HotelId\":\"1063\"},{\"@search.score\":1.0,\"HotelId\":\"1064\"},{\"@search.score\":1.0,\"HotelId\":\"1065\"},{\"@search.score\":1.0,\"HotelId\":\"1066\"},{\"@search.score\":1.0,\"HotelId\":\"1067\"},{\"@search.score\":1.0,\"HotelId\":\"1068\"},{\"@search.score\":1.0,\"HotelId\":\"1069\"},{\"@search.score\":1.0,\"HotelId\":\"107\"},{\"@search.score\":1.0,\"HotelId\":\"1070\"},{\"@search.score\":1.0,\"HotelId\":\"1071\"},{\"@search.score\":1.0,\"HotelId\":\"1072\"},{\"@search.score\":1.0,\"HotelId\":\"1073\"},{\"@search.score\":1.0,\"HotelId\":\"1074\"},{\"@search.score\":1.0,\"HotelId\":\"1075\"},{\"@search.score\":1.0,\"HotelId\":\"1076\"},{\"@search.score\":1.0,\"HotelId\":\"1077\"},{\"@search.score\":1.0,\"HotelId\":\"1078\"},{\"@search.score\":1.0,\"HotelId\":\"1079\"},{\"@search.score\":1.0,\"HotelId\":\"108\"},{\"@search.score\":1.0,\"HotelId\":\"1080\"},{\"@search.score\":1.0,\"HotelId\":\"1081\"},{\"@search.score\":1.0,\"HotelId\":\"1082\"},{\"@search.score\":1.0,\"HotelId\":\"1083\"},{\"@search.score\":1.0,\"HotelId\":\"1084\"},{\"@search.score\":1.0,\"HotelId\":\"1085\"},{\"@search.score\":1.0,\"HotelId\":\"1086\"},{\"@search.score\":1.0,\"HotelId\":\"1087\"},{\"@search.score\":1.0,\"HotelId\":\"1088\"},{\"@search.score\":1.0,\"HotelId\":\"1089\"},{\"@search.score\":1.0,\"HotelId\":\"109\"},{\"@search.score\":1.0,\"HotelId\":\"1090\"},{\"@search.score\":1.0,\"HotelId\":\"1091\"},{\"@search.score\":1.0,\"HotelId\":\"1092\"},{\"@search.score\":1.0,\"HotelId\":\"1093\"},{\"@search.score\":1.0,\"HotelId\":\"1094\"},{\"@search.score\":1.0,\"HotelId\":\"1095\"},{\"@search.score\":1.0,\"HotelId\":\"1096\"},{\"@search.score\":1.0,\"HotelId\":\"1097\"},{\"@search.score\":1.0,\"HotelId\":\"1098\"},{\"@search.score\":1.0,\"HotelId\":\"1099\"},{\"@search.score\":1.0,\"HotelId\":\"11\"},{\"@search.score\":1.0,\"HotelId\":\"110\"},{\"@search.score\":1.0,\"HotelId\":\"1100\"},{\"@search.score\":1.0,\"HotelId\":\"1101\"},{\"@search.score\":1.0,\"HotelId\":\"1102\"},{\"@search.score\":1.0,\"HotelId\":\"1103\"},{\"@search.score\":1.0,\"HotelId\":\"1104\"},{\"@search.score\":1.0,\"HotelId\":\"1105\"},{\"@search.score\":1.0,\"HotelId\":\"1106\"},{\"@search.score\":1.0,\"HotelId\":\"1107\"},{\"@search.score\":1.0,\"HotelId\":\"1108\"},{\"@search.score\":1.0,\"HotelId\":\"1109\"},{\"@search.score\":1.0,\"HotelId\":\"111\"},{\"@search.score\":1.0,\"HotelId\":\"1110\"},{\"@search.score\":1.0,\"HotelId\":\"1111\"},{\"@search.score\":1.0,\"HotelId\":\"1112\"},{\"@search.score\":1.0,\"HotelId\":\"1113\"},{\"@search.score\":1.0,\"HotelId\":\"1114\"},{\"@search.score\":1.0,\"HotelId\":\"1115\"},{\"@search.score\":1.0,\"HotelId\":\"1116\"},{\"@search.score\":1.0,\"HotelId\":\"1117\"},{\"@search.score\":1.0,\"HotelId\":\"1118\"},{\"@search.score\":1.0,\"HotelId\":\"1119\"},{\"@search.score\":1.0,\"HotelId\":\"112\"},{\"@search.score\":1.0,\"HotelId\":\"1120\"},{\"@search.score\":1.0,\"HotelId\":\"1121\"},{\"@search.score\":1.0,\"HotelId\":\"1122\"},{\"@search.score\":1.0,\"HotelId\":\"1123\"},{\"@search.score\":1.0,\"HotelId\":\"1124\"},{\"@search.score\":1.0,\"HotelId\":\"1125\"},{\"@search.score\":1.0,\"HotelId\":\"1126\"},{\"@search.score\":1.0,\"HotelId\":\"1127\"},{\"@search.score\":1.0,\"HotelId\":\"1128\"},{\"@search.score\":1.0,\"HotelId\":\"1129\"},{\"@search.score\":1.0,\"HotelId\":\"113\"},{\"@search.score\":1.0,\"HotelId\":\"1130\"},{\"@search.score\":1.0,\"HotelId\":\"1131\"},{\"@search.score\":1.0,\"HotelId\":\"1132\"},{\"@search.score\":1.0,\"HotelId\":\"1133\"},{\"@search.score\":1.0,\"HotelId\":\"1134\"},{\"@search.score\":1.0,\"HotelId\":\"1135\"},{\"@search.score\":1.0,\"HotelId\":\"1136\"},{\"@search.score\":1.0,\"HotelId\":\"1137\"},{\"@search.score\":1.0,\"HotelId\":\"1138\"},{\"@search.score\":1.0,\"HotelId\":\"1139\"},{\"@search.score\":1.0,\"HotelId\":\"114\"},{\"@search.score\":1.0,\"HotelId\":\"1140\"},{\"@search.score\":1.0,\"HotelId\":\"1141\"},{\"@search.score\":1.0,\"HotelId\":\"1142\"},{\"@search.score\":1.0,\"HotelId\":\"1143\"},{\"@search.score\":1.0,\"HotelId\":\"1144\"},{\"@search.score\":1.0,\"HotelId\":\"1145\"},{\"@search.score\":1.0,\"HotelId\":\"1146\"},{\"@search.score\":1.0,\"HotelId\":\"1147\"},{\"@search.score\":1.0,\"HotelId\":\"1148\"},{\"@search.score\":1.0,\"HotelId\":\"1149\"},{\"@search.score\":1.0,\"HotelId\":\"115\"},{\"@search.score\":1.0,\"HotelId\":\"1150\"},{\"@search.score\":1.0,\"HotelId\":\"1151\"},{\"@search.score\":1.0,\"HotelId\":\"1152\"},{\"@search.score\":1.0,\"HotelId\":\"1153\"},{\"@search.score\":1.0,\"HotelId\":\"1154\"},{\"@search.score\":1.0,\"HotelId\":\"1155\"},{\"@search.score\":1.0,\"HotelId\":\"1156\"},{\"@search.score\":1.0,\"HotelId\":\"1157\"},{\"@search.score\":1.0,\"HotelId\":\"1158\"},{\"@search.score\":1.0,\"HotelId\":\"1159\"},{\"@search.score\":1.0,\"HotelId\":\"116\"},{\"@search.score\":1.0,\"HotelId\":\"1160\"},{\"@search.score\":1.0,\"HotelId\":\"1161\"},{\"@search.score\":1.0,\"HotelId\":\"1162\"},{\"@search.score\":1.0,\"HotelId\":\"1163\"},{\"@search.score\":1.0,\"HotelId\":\"1164\"},{\"@search.score\":1.0,\"HotelId\":\"1165\"},{\"@search.score\":1.0,\"HotelId\":\"1166\"},{\"@search.score\":1.0,\"HotelId\":\"1167\"},{\"@search.score\":1.0,\"HotelId\":\"1168\"},{\"@search.score\":1.0,\"HotelId\":\"1169\"},{\"@search.score\":1.0,\"HotelId\":\"117\"},{\"@search.score\":1.0,\"HotelId\":\"1170\"},{\"@search.score\":1.0,\"HotelId\":\"1171\"},{\"@search.score\":1.0,\"HotelId\":\"1172\"},{\"@search.score\":1.0,\"HotelId\":\"1173\"},{\"@search.score\":1.0,\"HotelId\":\"1174\"},{\"@search.score\":1.0,\"HotelId\":\"1175\"},{\"@search.score\":1.0,\"HotelId\":\"1176\"},{\"@search.score\":1.0,\"HotelId\":\"1177\"},{\"@search.score\":1.0,\"HotelId\":\"1178\"},{\"@search.score\":1.0,\"HotelId\":\"1179\"},{\"@search.score\":1.0,\"HotelId\":\"118\"},{\"@search.score\":1.0,\"HotelId\":\"1180\"},{\"@search.score\":1.0,\"HotelId\":\"1181\"},{\"@search.score\":1.0,\"HotelId\":\"1182\"},{\"@search.score\":1.0,\"HotelId\":\"1183\"},{\"@search.score\":1.0,\"HotelId\":\"1184\"},{\"@search.score\":1.0,\"HotelId\":\"1185\"},{\"@search.score\":1.0,\"HotelId\":\"1186\"},{\"@search.score\":1.0,\"HotelId\":\"1187\"},{\"@search.score\":1.0,\"HotelId\":\"1188\"},{\"@search.score\":1.0,\"HotelId\":\"1189\"},{\"@search.score\":1.0,\"HotelId\":\"119\"},{\"@search.score\":1.0,\"HotelId\":\"1190\"},{\"@search.score\":1.0,\"HotelId\":\"1191\"},{\"@search.score\":1.0,\"HotelId\":\"1192\"},{\"@search.score\":1.0,\"HotelId\":\"1193\"},{\"@search.score\":1.0,\"HotelId\":\"1194\"},{\"@search.score\":1.0,\"HotelId\":\"1195\"},{\"@search.score\":1.0,\"HotelId\":\"1196\"},{\"@search.score\":1.0,\"HotelId\":\"1197\"},{\"@search.score\":1.0,\"HotelId\":\"1198\"},{\"@search.score\":1.0,\"HotelId\":\"1199\"},{\"@search.score\":1.0,\"HotelId\":\"12\"},{\"@search.score\":1.0,\"HotelId\":\"120\"},{\"@search.score\":1.0,\"HotelId\":\"1200\"},{\"@search.score\":1.0,\"HotelId\":\"1201\"},{\"@search.score\":1.0,\"HotelId\":\"1202\"},{\"@search.score\":1.0,\"HotelId\":\"1203\"},{\"@search.score\":1.0,\"HotelId\":\"1204\"},{\"@search.score\":1.0,\"HotelId\":\"1205\"},{\"@search.score\":1.0,\"HotelId\":\"1206\"},{\"@search.score\":1.0,\"HotelId\":\"1207\"},{\"@search.score\":1.0,\"HotelId\":\"1208\"},{\"@search.score\":1.0,\"HotelId\":\"1209\"},{\"@search.score\":1.0,\"HotelId\":\"121\"},{\"@search.score\":1.0,\"HotelId\":\"1210\"},{\"@search.score\":1.0,\"HotelId\":\"1211\"},{\"@search.score\":1.0,\"HotelId\":\"1212\"},{\"@search.score\":1.0,\"HotelId\":\"1213\"},{\"@search.score\":1.0,\"HotelId\":\"1214\"},{\"@search.score\":1.0,\"HotelId\":\"1215\"},{\"@search.score\":1.0,\"HotelId\":\"1216\"},{\"@search.score\":1.0,\"HotelId\":\"1217\"},{\"@search.score\":1.0,\"HotelId\":\"1218\"},{\"@search.score\":1.0,\"HotelId\":\"1219\"},{\"@search.score\":1.0,\"HotelId\":\"122\"},{\"@search.score\":1.0,\"HotelId\":\"1220\"},{\"@search.score\":1.0,\"HotelId\":\"1221\"},{\"@search.score\":1.0,\"HotelId\":\"1222\"},{\"@search.score\":1.0,\"HotelId\":\"1223\"},{\"@search.score\":1.0,\"HotelId\":\"1224\"},{\"@search.score\":1.0,\"HotelId\":\"1225\"},{\"@search.score\":1.0,\"HotelId\":\"1226\"},{\"@search.score\":1.0,\"HotelId\":\"1227\"},{\"@search.score\":1.0,\"HotelId\":\"1228\"},{\"@search.score\":1.0,\"HotelId\":\"1229\"},{\"@search.score\":1.0,\"HotelId\":\"123\"},{\"@search.score\":1.0,\"HotelId\":\"1230\"},{\"@search.score\":1.0,\"HotelId\":\"1231\"},{\"@search.score\":1.0,\"HotelId\":\"1232\"},{\"@search.score\":1.0,\"HotelId\":\"1233\"},{\"@search.score\":1.0,\"HotelId\":\"1234\"},{\"@search.score\":1.0,\"HotelId\":\"1235\"},{\"@search.score\":1.0,\"HotelId\":\"1236\"},{\"@search.score\":1.0,\"HotelId\":\"1237\"},{\"@search.score\":1.0,\"HotelId\":\"1238\"},{\"@search.score\":1.0,\"HotelId\":\"1239\"},{\"@search.score\":1.0,\"HotelId\":\"124\"},{\"@search.score\":1.0,\"HotelId\":\"1240\"},{\"@search.score\":1.0,\"HotelId\":\"1241\"},{\"@search.score\":1.0,\"HotelId\":\"1242\"},{\"@search.score\":1.0,\"HotelId\":\"1243\"},{\"@search.score\":1.0,\"HotelId\":\"1244\"},{\"@search.score\":1.0,\"HotelId\":\"1245\"},{\"@search.score\":1.0,\"HotelId\":\"1246\"},{\"@search.score\":1.0,\"HotelId\":\"1247\"},{\"@search.score\":1.0,\"HotelId\":\"1248\"},{\"@search.score\":1.0,\"HotelId\":\"1249\"},{\"@search.score\":1.0,\"HotelId\":\"125\"},{\"@search.score\":1.0,\"HotelId\":\"1250\"},{\"@search.score\":1.0,\"HotelId\":\"1251\"},{\"@search.score\":1.0,\"HotelId\":\"1252\"},{\"@search.score\":1.0,\"HotelId\":\"1253\"},{\"@search.score\":1.0,\"HotelId\":\"1254\"},{\"@search.score\":1.0,\"HotelId\":\"1255\"},{\"@search.score\":1.0,\"HotelId\":\"1256\"},{\"@search.score\":1.0,\"HotelId\":\"1257\"},{\"@search.score\":1.0,\"HotelId\":\"1258\"},{\"@search.score\":1.0,\"HotelId\":\"1259\"},{\"@search.score\":1.0,\"HotelId\":\"126\"},{\"@search.score\":1.0,\"HotelId\":\"1260\"},{\"@search.score\":1.0,\"HotelId\":\"1261\"},{\"@search.score\":1.0,\"HotelId\":\"1262\"},{\"@search.score\":1.0,\"HotelId\":\"1263\"},{\"@search.score\":1.0,\"HotelId\":\"1264\"},{\"@search.score\":1.0,\"HotelId\":\"1265\"},{\"@search.score\":1.0,\"HotelId\":\"1266\"},{\"@search.score\":1.0,\"HotelId\":\"1267\"},{\"@search.score\":1.0,\"HotelId\":\"1268\"},{\"@search.score\":1.0,\"HotelId\":\"1269\"},{\"@search.score\":1.0,\"HotelId\":\"127\"},{\"@search.score\":1.0,\"HotelId\":\"1270\"},{\"@search.score\":1.0,\"HotelId\":\"1271\"},{\"@search.score\":1.0,\"HotelId\":\"1272\"},{\"@search.score\":1.0,\"HotelId\":\"1273\"},{\"@search.score\":1.0,\"HotelId\":\"1274\"},{\"@search.score\":1.0,\"HotelId\":\"1275\"},{\"@search.score\":1.0,\"HotelId\":\"1276\"},{\"@search.score\":1.0,\"HotelId\":\"1277\"},{\"@search.score\":1.0,\"HotelId\":\"1278\"},{\"@search.score\":1.0,\"HotelId\":\"1279\"},{\"@search.score\":1.0,\"HotelId\":\"128\"},{\"@search.score\":1.0,\"HotelId\":\"1280\"},{\"@search.score\":1.0,\"HotelId\":\"1281\"},{\"@search.score\":1.0,\"HotelId\":\"1282\"},{\"@search.score\":1.0,\"HotelId\":\"1283\"},{\"@search.score\":1.0,\"HotelId\":\"1284\"},{\"@search.score\":1.0,\"HotelId\":\"1285\"},{\"@search.score\":1.0,\"HotelId\":\"1286\"},{\"@search.score\":1.0,\"HotelId\":\"1287\"},{\"@search.score\":1.0,\"HotelId\":\"1288\"},{\"@search.score\":1.0,\"HotelId\":\"1289\"},{\"@search.score\":1.0,\"HotelId\":\"129\"},{\"@search.score\":1.0,\"HotelId\":\"1290\"},{\"@search.score\":1.0,\"HotelId\":\"1291\"},{\"@search.score\":1.0,\"HotelId\":\"1292\"},{\"@search.score\":1.0,\"HotelId\":\"1293\"},{\"@search.score\":1.0,\"HotelId\":\"1294\"},{\"@search.score\":1.0,\"HotelId\":\"1295\"},{\"@search.score\":1.0,\"HotelId\":\"1296\"},{\"@search.score\":1.0,\"HotelId\":\"1297\"},{\"@search.score\":1.0,\"HotelId\":\"1298\"},{\"@search.score\":1.0,\"HotelId\":\"1299\"},{\"@search.score\":1.0,\"HotelId\":\"13\"},{\"@search.score\":1.0,\"HotelId\":\"130\"},{\"@search.score\":1.0,\"HotelId\":\"1300\"},{\"@search.score\":1.0,\"HotelId\":\"1301\"},{\"@search.score\":1.0,\"HotelId\":\"1302\"},{\"@search.score\":1.0,\"HotelId\":\"1303\"},{\"@search.score\":1.0,\"HotelId\":\"1304\"},{\"@search.score\":1.0,\"HotelId\":\"1305\"},{\"@search.score\":1.0,\"HotelId\":\"1306\"},{\"@search.score\":1.0,\"HotelId\":\"1307\"},{\"@search.score\":1.0,\"HotelId\":\"1308\"},{\"@search.score\":1.0,\"HotelId\":\"1309\"},{\"@search.score\":1.0,\"HotelId\":\"131\"},{\"@search.score\":1.0,\"HotelId\":\"1310\"},{\"@search.score\":1.0,\"HotelId\":\"1311\"},{\"@search.score\":1.0,\"HotelId\":\"1312\"},{\"@search.score\":1.0,\"HotelId\":\"1313\"},{\"@search.score\":1.0,\"HotelId\":\"1314\"},{\"@search.score\":1.0,\"HotelId\":\"1315\"},{\"@search.score\":1.0,\"HotelId\":\"1316\"},{\"@search.score\":1.0,\"HotelId\":\"1317\"},{\"@search.score\":1.0,\"HotelId\":\"1318\"},{\"@search.score\":1.0,\"HotelId\":\"1319\"},{\"@search.score\":1.0,\"HotelId\":\"132\"},{\"@search.score\":1.0,\"HotelId\":\"1320\"},{\"@search.score\":1.0,\"HotelId\":\"1321\"},{\"@search.score\":1.0,\"HotelId\":\"1322\"},{\"@search.score\":1.0,\"HotelId\":\"1323\"},{\"@search.score\":1.0,\"HotelId\":\"1324\"},{\"@search.score\":1.0,\"HotelId\":\"1325\"},{\"@search.score\":1.0,\"HotelId\":\"1326\"},{\"@search.score\":1.0,\"HotelId\":\"1327\"},{\"@search.score\":1.0,\"HotelId\":\"1328\"},{\"@search.score\":1.0,\"HotelId\":\"1329\"},{\"@search.score\":1.0,\"HotelId\":\"133\"},{\"@search.score\":1.0,\"HotelId\":\"1330\"},{\"@search.score\":1.0,\"HotelId\":\"1331\"},{\"@search.score\":1.0,\"HotelId\":\"1332\"},{\"@search.score\":1.0,\"HotelId\":\"1333\"},{\"@search.score\":1.0,\"HotelId\":\"1334\"},{\"@search.score\":1.0,\"HotelId\":\"1335\"},{\"@search.score\":1.0,\"HotelId\":\"1336\"},{\"@search.score\":1.0,\"HotelId\":\"1337\"},{\"@search.score\":1.0,\"HotelId\":\"1338\"},{\"@search.score\":1.0,\"HotelId\":\"1339\"},{\"@search.score\":1.0,\"HotelId\":\"134\"},{\"@search.score\":1.0,\"HotelId\":\"1340\"},{\"@search.score\":1.0,\"HotelId\":\"1341\"},{\"@search.score\":1.0,\"HotelId\":\"1342\"},{\"@search.score\":1.0,\"HotelId\":\"1343\"},{\"@search.score\":1.0,\"HotelId\":\"1344\"},{\"@search.score\":1.0,\"HotelId\":\"1345\"},{\"@search.score\":1.0,\"HotelId\":\"1346\"},{\"@search.score\":1.0,\"HotelId\":\"1347\"},{\"@search.score\":1.0,\"HotelId\":\"1348\"},{\"@search.score\":1.0,\"HotelId\":\"1349\"},{\"@search.score\":1.0,\"HotelId\":\"135\"},{\"@search.score\":1.0,\"HotelId\":\"1350\"},{\"@search.score\":1.0,\"HotelId\":\"1351\"},{\"@search.score\":1.0,\"HotelId\":\"1352\"},{\"@search.score\":1.0,\"HotelId\":\"1353\"},{\"@search.score\":1.0,\"HotelId\":\"1354\"},{\"@search.score\":1.0,\"HotelId\":\"1355\"},{\"@search.score\":1.0,\"HotelId\":\"1356\"},{\"@search.score\":1.0,\"HotelId\":\"1357\"},{\"@search.score\":1.0,\"HotelId\":\"1358\"},{\"@search.score\":1.0,\"HotelId\":\"1359\"},{\"@search.score\":1.0,\"HotelId\":\"136\"},{\"@search.score\":1.0,\"HotelId\":\"1360\"},{\"@search.score\":1.0,\"HotelId\":\"1361\"},{\"@search.score\":1.0,\"HotelId\":\"1362\"},{\"@search.score\":1.0,\"HotelId\":\"1363\"},{\"@search.score\":1.0,\"HotelId\":\"1364\"},{\"@search.score\":1.0,\"HotelId\":\"1365\"},{\"@search.score\":1.0,\"HotelId\":\"1366\"},{\"@search.score\":1.0,\"HotelId\":\"1367\"},{\"@search.score\":1.0,\"HotelId\":\"1368\"},{\"@search.score\":1.0,\"HotelId\":\"1369\"},{\"@search.score\":1.0,\"HotelId\":\"137\"},{\"@search.score\":1.0,\"HotelId\":\"1370\"},{\"@search.score\":1.0,\"HotelId\":\"1371\"},{\"@search.score\":1.0,\"HotelId\":\"1372\"},{\"@search.score\":1.0,\"HotelId\":\"1373\"},{\"@search.score\":1.0,\"HotelId\":\"1374\"},{\"@search.score\":1.0,\"HotelId\":\"1375\"},{\"@search.score\":1.0,\"HotelId\":\"1376\"},{\"@search.score\":1.0,\"HotelId\":\"1377\"},{\"@search.score\":1.0,\"HotelId\":\"1378\"},{\"@search.score\":1.0,\"HotelId\":\"1379\"},{\"@search.score\":1.0,\"HotelId\":\"138\"},{\"@search.score\":1.0,\"HotelId\":\"1380\"},{\"@search.score\":1.0,\"HotelId\":\"1381\"},{\"@search.score\":1.0,\"HotelId\":\"1382\"},{\"@search.score\":1.0,\"HotelId\":\"1383\"},{\"@search.score\":1.0,\"HotelId\":\"1384\"},{\"@search.score\":1.0,\"HotelId\":\"1385\"},{\"@search.score\":1.0,\"HotelId\":\"1386\"},{\"@search.score\":1.0,\"HotelId\":\"1387\"},{\"@search.score\":1.0,\"HotelId\":\"1388\"},{\"@search.score\":1.0,\"HotelId\":\"1389\"},{\"@search.score\":1.0,\"HotelId\":\"139\"},{\"@search.score\":1.0,\"HotelId\":\"1390\"},{\"@search.score\":1.0,\"HotelId\":\"1391\"},{\"@search.score\":1.0,\"HotelId\":\"1392\"},{\"@search.score\":1.0,\"HotelId\":\"1393\"},{\"@search.score\":1.0,\"HotelId\":\"1394\"},{\"@search.score\":1.0,\"HotelId\":\"1395\"},{\"@search.score\":1.0,\"HotelId\":\"1396\"},{\"@search.score\":1.0,\"HotelId\":\"1397\"},{\"@search.score\":1.0,\"HotelId\":\"1398\"},{\"@search.score\":1.0,\"HotelId\":\"1399\"},{\"@search.score\":1.0,\"HotelId\":\"14\"},{\"@search.score\":1.0,\"HotelId\":\"140\"},{\"@search.score\":1.0,\"HotelId\":\"1400\"},{\"@search.score\":1.0,\"HotelId\":\"1401\"},{\"@search.score\":1.0,\"HotelId\":\"1402\"},{\"@search.score\":1.0,\"HotelId\":\"1403\"},{\"@search.score\":1.0,\"HotelId\":\"1404\"},{\"@search.score\":1.0,\"HotelId\":\"1405\"},{\"@search.score\":1.0,\"HotelId\":\"1406\"},{\"@search.score\":1.0,\"HotelId\":\"1407\"},{\"@search.score\":1.0,\"HotelId\":\"1408\"},{\"@search.score\":1.0,\"HotelId\":\"1409\"},{\"@search.score\":1.0,\"HotelId\":\"141\"},{\"@search.score\":1.0,\"HotelId\":\"1410\"},{\"@search.score\":1.0,\"HotelId\":\"1411\"},{\"@search.score\":1.0,\"HotelId\":\"1412\"},{\"@search.score\":1.0,\"HotelId\":\"1413\"},{\"@search.score\":1.0,\"HotelId\":\"1414\"},{\"@search.score\":1.0,\"HotelId\":\"1415\"},{\"@search.score\":1.0,\"HotelId\":\"1416\"},{\"@search.score\":1.0,\"HotelId\":\"1417\"},{\"@search.score\":1.0,\"HotelId\":\"1418\"},{\"@search.score\":1.0,\"HotelId\":\"1419\"},{\"@search.score\":1.0,\"HotelId\":\"142\"},{\"@search.score\":1.0,\"HotelId\":\"1420\"},{\"@search.score\":1.0,\"HotelId\":\"1421\"},{\"@search.score\":1.0,\"HotelId\":\"1422\"},{\"@search.score\":1.0,\"HotelId\":\"1423\"},{\"@search.score\":1.0,\"HotelId\":\"1424\"},{\"@search.score\":1.0,\"HotelId\":\"1425\"},{\"@search.score\":1.0,\"HotelId\":\"1426\"},{\"@search.score\":1.0,\"HotelId\":\"1427\"},{\"@search.score\":1.0,\"HotelId\":\"1428\"},{\"@search.score\":1.0,\"HotelId\":\"1429\"},{\"@search.score\":1.0,\"HotelId\":\"143\"},{\"@search.score\":1.0,\"HotelId\":\"1430\"},{\"@search.score\":1.0,\"HotelId\":\"1431\"},{\"@search.score\":1.0,\"HotelId\":\"1432\"},{\"@search.score\":1.0,\"HotelId\":\"1433\"},{\"@search.score\":1.0,\"HotelId\":\"1434\"},{\"@search.score\":1.0,\"HotelId\":\"1435\"},{\"@search.score\":1.0,\"HotelId\":\"1436\"},{\"@search.score\":1.0,\"HotelId\":\"1437\"},{\"@search.score\":1.0,\"HotelId\":\"1438\"},{\"@search.score\":1.0,\"HotelId\":\"1439\"},{\"@search.score\":1.0,\"HotelId\":\"144\"},{\"@search.score\":1.0,\"HotelId\":\"1440\"},{\"@search.score\":1.0,\"HotelId\":\"1441\"},{\"@search.score\":1.0,\"HotelId\":\"1442\"},{\"@search.score\":1.0,\"HotelId\":\"1443\"},{\"@search.score\":1.0,\"HotelId\":\"1444\"},{\"@search.score\":1.0,\"HotelId\":\"1445\"},{\"@search.score\":1.0,\"HotelId\":\"1446\"},{\"@search.score\":1.0,\"HotelId\":\"1447\"},{\"@search.score\":1.0,\"HotelId\":\"1448\"},{\"@search.score\":1.0,\"HotelId\":\"1449\"},{\"@search.score\":1.0,\"HotelId\":\"145\"},{\"@search.score\":1.0,\"HotelId\":\"1450\"},{\"@search.score\":1.0,\"HotelId\":\"1451\"},{\"@search.score\":1.0,\"HotelId\":\"1452\"},{\"@search.score\":1.0,\"HotelId\":\"1453\"},{\"@search.score\":1.0,\"HotelId\":\"1454\"},{\"@search.score\":1.0,\"HotelId\":\"1455\"},{\"@search.score\":1.0,\"HotelId\":\"1456\"},{\"@search.score\":1.0,\"HotelId\":\"1457\"},{\"@search.score\":1.0,\"HotelId\":\"1458\"},{\"@search.score\":1.0,\"HotelId\":\"1459\"},{\"@search.score\":1.0,\"HotelId\":\"146\"},{\"@search.score\":1.0,\"HotelId\":\"1460\"},{\"@search.score\":1.0,\"HotelId\":\"1461\"},{\"@search.score\":1.0,\"HotelId\":\"1462\"},{\"@search.score\":1.0,\"HotelId\":\"1463\"},{\"@search.score\":1.0,\"HotelId\":\"1464\"},{\"@search.score\":1.0,\"HotelId\":\"1465\"},{\"@search.score\":1.0,\"HotelId\":\"1466\"},{\"@search.score\":1.0,\"HotelId\":\"1467\"},{\"@search.score\":1.0,\"HotelId\":\"1468\"},{\"@search.score\":1.0,\"HotelId\":\"1469\"},{\"@search.score\":1.0,\"HotelId\":\"147\"},{\"@search.score\":1.0,\"HotelId\":\"1470\"},{\"@search.score\":1.0,\"HotelId\":\"1471\"},{\"@search.score\":1.0,\"HotelId\":\"1472\"},{\"@search.score\":1.0,\"HotelId\":\"1473\"},{\"@search.score\":1.0,\"HotelId\":\"1474\"},{\"@search.score\":1.0,\"HotelId\":\"1475\"},{\"@search.score\":1.0,\"HotelId\":\"1476\"},{\"@search.score\":1.0,\"HotelId\":\"1477\"},{\"@search.score\":1.0,\"HotelId\":\"1478\"},{\"@search.score\":1.0,\"HotelId\":\"1479\"},{\"@search.score\":1.0,\"HotelId\":\"148\"},{\"@search.score\":1.0,\"HotelId\":\"1480\"},{\"@search.score\":1.0,\"HotelId\":\"1481\"},{\"@search.score\":1.0,\"HotelId\":\"1482\"},{\"@search.score\":1.0,\"HotelId\":\"1483\"},{\"@search.score\":1.0,\"HotelId\":\"1484\"},{\"@search.score\":1.0,\"HotelId\":\"1485\"},{\"@search.score\":1.0,\"HotelId\":\"1486\"},{\"@search.score\":1.0,\"HotelId\":\"1487\"},{\"@search.score\":1.0,\"HotelId\":\"1488\"},{\"@search.score\":1.0,\"HotelId\":\"1489\"},{\"@search.score\":1.0,\"HotelId\":\"149\"},{\"@search.score\":1.0,\"HotelId\":\"1490\"},{\"@search.score\":1.0,\"HotelId\":\"1491\"},{\"@search.score\":1.0,\"HotelId\":\"1492\"},{\"@search.score\":1.0,\"HotelId\":\"1493\"},{\"@search.score\":1.0,\"HotelId\":\"1494\"},{\"@search.score\":1.0,\"HotelId\":\"1495\"},{\"@search.score\":1.0,\"HotelId\":\"1496\"},{\"@search.score\":1.0,\"HotelId\":\"1497\"},{\"@search.score\":1.0,\"HotelId\":\"1498\"},{\"@search.score\":1.0,\"HotelId\":\"1499\"},{\"@search.score\":1.0,\"HotelId\":\"15\"},{\"@search.score\":1.0,\"HotelId\":\"150\"},{\"@search.score\":1.0,\"HotelId\":\"1500\"},{\"@search.score\":1.0,\"HotelId\":\"1501\"},{\"@search.score\":1.0,\"HotelId\":\"1502\"},{\"@search.score\":1.0,\"HotelId\":\"1503\"},{\"@search.score\":1.0,\"HotelId\":\"1504\"},{\"@search.score\":1.0,\"HotelId\":\"1505\"},{\"@search.score\":1.0,\"HotelId\":\"1506\"},{\"@search.score\":1.0,\"HotelId\":\"1507\"},{\"@search.score\":1.0,\"HotelId\":\"1508\"},{\"@search.score\":1.0,\"HotelId\":\"1509\"},{\"@search.score\":1.0,\"HotelId\":\"151\"},{\"@search.score\":1.0,\"HotelId\":\"1510\"},{\"@search.score\":1.0,\"HotelId\":\"1511\"},{\"@search.score\":1.0,\"HotelId\":\"1512\"},{\"@search.score\":1.0,\"HotelId\":\"1513\"},{\"@search.score\":1.0,\"HotelId\":\"1514\"},{\"@search.score\":1.0,\"HotelId\":\"1515\"},{\"@search.score\":1.0,\"HotelId\":\"1516\"},{\"@search.score\":1.0,\"HotelId\":\"1517\"},{\"@search.score\":1.0,\"HotelId\":\"1518\"},{\"@search.score\":1.0,\"HotelId\":\"1519\"},{\"@search.score\":1.0,\"HotelId\":\"152\"},{\"@search.score\":1.0,\"HotelId\":\"1520\"},{\"@search.score\":1.0,\"HotelId\":\"1521\"},{\"@search.score\":1.0,\"HotelId\":\"1522\"},{\"@search.score\":1.0,\"HotelId\":\"1523\"},{\"@search.score\":1.0,\"HotelId\":\"1524\"},{\"@search.score\":1.0,\"HotelId\":\"1525\"},{\"@search.score\":1.0,\"HotelId\":\"1526\"},{\"@search.score\":1.0,\"HotelId\":\"1527\"},{\"@search.score\":1.0,\"HotelId\":\"1528\"},{\"@search.score\":1.0,\"HotelId\":\"1529\"},{\"@search.score\":1.0,\"HotelId\":\"153\"},{\"@search.score\":1.0,\"HotelId\":\"1530\"},{\"@search.score\":1.0,\"HotelId\":\"1531\"},{\"@search.score\":1.0,\"HotelId\":\"1532\"},{\"@search.score\":1.0,\"HotelId\":\"1533\"},{\"@search.score\":1.0,\"HotelId\":\"1534\"},{\"@search.score\":1.0,\"HotelId\":\"1535\"},{\"@search.score\":1.0,\"HotelId\":\"1536\"},{\"@search.score\":1.0,\"HotelId\":\"1537\"},{\"@search.score\":1.0,\"HotelId\":\"1538\"},{\"@search.score\":1.0,\"HotelId\":\"1539\"},{\"@search.score\":1.0,\"HotelId\":\"154\"},{\"@search.score\":1.0,\"HotelId\":\"1540\"},{\"@search.score\":1.0,\"HotelId\":\"1541\"},{\"@search.score\":1.0,\"HotelId\":\"1542\"},{\"@search.score\":1.0,\"HotelId\":\"1543\"},{\"@search.score\":1.0,\"HotelId\":\"1544\"},{\"@search.score\":1.0,\"HotelId\":\"1545\"},{\"@search.score\":1.0,\"HotelId\":\"1546\"},{\"@search.score\":1.0,\"HotelId\":\"1547\"},{\"@search.score\":1.0,\"HotelId\":\"1548\"},{\"@search.score\":1.0,\"HotelId\":\"1549\"},{\"@search.score\":1.0,\"HotelId\":\"155\"},{\"@search.score\":1.0,\"HotelId\":\"1550\"},{\"@search.score\":1.0,\"HotelId\":\"1551\"},{\"@search.score\":1.0,\"HotelId\":\"1552\"},{\"@search.score\":1.0,\"HotelId\":\"1553\"},{\"@search.score\":1.0,\"HotelId\":\"1554\"},{\"@search.score\":1.0,\"HotelId\":\"1555\"},{\"@search.score\":1.0,\"HotelId\":\"1556\"},{\"@search.score\":1.0,\"HotelId\":\"1557\"},{\"@search.score\":1.0,\"HotelId\":\"1558\"},{\"@search.score\":1.0,\"HotelId\":\"1559\"},{\"@search.score\":1.0,\"HotelId\":\"156\"},{\"@search.score\":1.0,\"HotelId\":\"1560\"},{\"@search.score\":1.0,\"HotelId\":\"1561\"},{\"@search.score\":1.0,\"HotelId\":\"1562\"},{\"@search.score\":1.0,\"HotelId\":\"1563\"},{\"@search.score\":1.0,\"HotelId\":\"1564\"},{\"@search.score\":1.0,\"HotelId\":\"1565\"},{\"@search.score\":1.0,\"HotelId\":\"1566\"},{\"@search.score\":1.0,\"HotelId\":\"1567\"},{\"@search.score\":1.0,\"HotelId\":\"1568\"},{\"@search.score\":1.0,\"HotelId\":\"1569\"},{\"@search.score\":1.0,\"HotelId\":\"157\"},{\"@search.score\":1.0,\"HotelId\":\"1570\"},{\"@search.score\":1.0,\"HotelId\":\"1571\"},{\"@search.score\":1.0,\"HotelId\":\"1572\"},{\"@search.score\":1.0,\"HotelId\":\"1573\"},{\"@search.score\":1.0,\"HotelId\":\"1574\"},{\"@search.score\":1.0,\"HotelId\":\"1575\"},{\"@search.score\":1.0,\"HotelId\":\"1576\"},{\"@search.score\":1.0,\"HotelId\":\"1577\"},{\"@search.score\":1.0,\"HotelId\":\"1578\"},{\"@search.score\":1.0,\"HotelId\":\"1579\"},{\"@search.score\":1.0,\"HotelId\":\"158\"},{\"@search.score\":1.0,\"HotelId\":\"1580\"},{\"@search.score\":1.0,\"HotelId\":\"1581\"},{\"@search.score\":1.0,\"HotelId\":\"1582\"},{\"@search.score\":1.0,\"HotelId\":\"1583\"},{\"@search.score\":1.0,\"HotelId\":\"1584\"},{\"@search.score\":1.0,\"HotelId\":\"1585\"},{\"@search.score\":1.0,\"HotelId\":\"1586\"},{\"@search.score\":1.0,\"HotelId\":\"1587\"},{\"@search.score\":1.0,\"HotelId\":\"1588\"},{\"@search.score\":1.0,\"HotelId\":\"1589\"},{\"@search.score\":1.0,\"HotelId\":\"159\"},{\"@search.score\":1.0,\"HotelId\":\"1590\"},{\"@search.score\":1.0,\"HotelId\":\"1591\"},{\"@search.score\":1.0,\"HotelId\":\"1592\"},{\"@search.score\":1.0,\"HotelId\":\"1593\"},{\"@search.score\":1.0,\"HotelId\":\"1594\"},{\"@search.score\":1.0,\"HotelId\":\"1595\"},{\"@search.score\":1.0,\"HotelId\":\"1596\"},{\"@search.score\":1.0,\"HotelId\":\"1597\"},{\"@search.score\":1.0,\"HotelId\":\"1598\"},{\"@search.score\":1.0,\"HotelId\":\"1599\"},{\"@search.score\":1.0,\"HotelId\":\"16\"},{\"@search.score\":1.0,\"HotelId\":\"160\"},{\"@search.score\":1.0,\"HotelId\":\"1600\"},{\"@search.score\":1.0,\"HotelId\":\"1601\"},{\"@search.score\":1.0,\"HotelId\":\"1602\"},{\"@search.score\":1.0,\"HotelId\":\"1603\"},{\"@search.score\":1.0,\"HotelId\":\"1604\"},{\"@search.score\":1.0,\"HotelId\":\"1605\"},{\"@search.score\":1.0,\"HotelId\":\"1606\"},{\"@search.score\":1.0,\"HotelId\":\"1607\"},{\"@search.score\":1.0,\"HotelId\":\"1608\"},{\"@search.score\":1.0,\"HotelId\":\"1609\"},{\"@search.score\":1.0,\"HotelId\":\"161\"},{\"@search.score\":1.0,\"HotelId\":\"1610\"},{\"@search.score\":1.0,\"HotelId\":\"1611\"},{\"@search.score\":1.0,\"HotelId\":\"1612\"},{\"@search.score\":1.0,\"HotelId\":\"1613\"},{\"@search.score\":1.0,\"HotelId\":\"1614\"},{\"@search.score\":1.0,\"HotelId\":\"1615\"},{\"@search.score\":1.0,\"HotelId\":\"1616\"},{\"@search.score\":1.0,\"HotelId\":\"1617\"},{\"@search.score\":1.0,\"HotelId\":\"1618\"},{\"@search.score\":1.0,\"HotelId\":\"1619\"},{\"@search.score\":1.0,\"HotelId\":\"162\"},{\"@search.score\":1.0,\"HotelId\":\"1620\"},{\"@search.score\":1.0,\"HotelId\":\"1621\"},{\"@search.score\":1.0,\"HotelId\":\"1622\"},{\"@search.score\":1.0,\"HotelId\":\"1623\"},{\"@search.score\":1.0,\"HotelId\":\"1624\"},{\"@search.score\":1.0,\"HotelId\":\"1625\"},{\"@search.score\":1.0,\"HotelId\":\"1626\"},{\"@search.score\":1.0,\"HotelId\":\"1627\"},{\"@search.score\":1.0,\"HotelId\":\"1628\"},{\"@search.score\":1.0,\"HotelId\":\"1629\"},{\"@search.score\":1.0,\"HotelId\":\"163\"},{\"@search.score\":1.0,\"HotelId\":\"1630\"},{\"@search.score\":1.0,\"HotelId\":\"1631\"},{\"@search.score\":1.0,\"HotelId\":\"1632\"},{\"@search.score\":1.0,\"HotelId\":\"1633\"},{\"@search.score\":1.0,\"HotelId\":\"1634\"},{\"@search.score\":1.0,\"HotelId\":\"1635\"},{\"@search.score\":1.0,\"HotelId\":\"1636\"},{\"@search.score\":1.0,\"HotelId\":\"1637\"},{\"@search.score\":1.0,\"HotelId\":\"1638\"},{\"@search.score\":1.0,\"HotelId\":\"1639\"},{\"@search.score\":1.0,\"HotelId\":\"164\"},{\"@search.score\":1.0,\"HotelId\":\"1640\"},{\"@search.score\":1.0,\"HotelId\":\"1641\"},{\"@search.score\":1.0,\"HotelId\":\"1642\"},{\"@search.score\":1.0,\"HotelId\":\"1643\"},{\"@search.score\":1.0,\"HotelId\":\"1644\"},{\"@search.score\":1.0,\"HotelId\":\"1645\"},{\"@search.score\":1.0,\"HotelId\":\"1646\"},{\"@search.score\":1.0,\"HotelId\":\"1647\"},{\"@search.score\":1.0,\"HotelId\":\"1648\"},{\"@search.score\":1.0,\"HotelId\":\"1649\"},{\"@search.score\":1.0,\"HotelId\":\"165\"},{\"@search.score\":1.0,\"HotelId\":\"1650\"},{\"@search.score\":1.0,\"HotelId\":\"1651\"},{\"@search.score\":1.0,\"HotelId\":\"1652\"},{\"@search.score\":1.0,\"HotelId\":\"1653\"},{\"@search.score\":1.0,\"HotelId\":\"1654\"},{\"@search.score\":1.0,\"HotelId\":\"1655\"},{\"@search.score\":1.0,\"HotelId\":\"1656\"},{\"@search.score\":1.0,\"HotelId\":\"1657\"},{\"@search.score\":1.0,\"HotelId\":\"1658\"},{\"@search.score\":1.0,\"HotelId\":\"1659\"},{\"@search.score\":1.0,\"HotelId\":\"166\"},{\"@search.score\":1.0,\"HotelId\":\"1660\"},{\"@search.score\":1.0,\"HotelId\":\"1661\"},{\"@search.score\":1.0,\"HotelId\":\"1662\"},{\"@search.score\":1.0,\"HotelId\":\"1663\"},{\"@search.score\":1.0,\"HotelId\":\"1664\"},{\"@search.score\":1.0,\"HotelId\":\"1665\"},{\"@search.score\":1.0,\"HotelId\":\"1666\"},{\"@search.score\":1.0,\"HotelId\":\"1667\"},{\"@search.score\":1.0,\"HotelId\":\"1668\"},{\"@search.score\":1.0,\"HotelId\":\"1669\"},{\"@search.score\":1.0,\"HotelId\":\"167\"},{\"@search.score\":1.0,\"HotelId\":\"1670\"},{\"@search.score\":1.0,\"HotelId\":\"1671\"},{\"@search.score\":1.0,\"HotelId\":\"1672\"},{\"@search.score\":1.0,\"HotelId\":\"1673\"},{\"@search.score\":1.0,\"HotelId\":\"1674\"},{\"@search.score\":1.0,\"HotelId\":\"1675\"},{\"@search.score\":1.0,\"HotelId\":\"1676\"},{\"@search.score\":1.0,\"HotelId\":\"1677\"},{\"@search.score\":1.0,\"HotelId\":\"1678\"},{\"@search.score\":1.0,\"HotelId\":\"1679\"},{\"@search.score\":1.0,\"HotelId\":\"168\"},{\"@search.score\":1.0,\"HotelId\":\"1680\"},{\"@search.score\":1.0,\"HotelId\":\"1681\"},{\"@search.score\":1.0,\"HotelId\":\"1682\"},{\"@search.score\":1.0,\"HotelId\":\"1683\"},{\"@search.score\":1.0,\"HotelId\":\"1684\"},{\"@search.score\":1.0,\"HotelId\":\"1685\"},{\"@search.score\":1.0,\"HotelId\":\"1686\"},{\"@search.score\":1.0,\"HotelId\":\"1687\"},{\"@search.score\":1.0,\"HotelId\":\"1688\"},{\"@search.score\":1.0,\"HotelId\":\"1689\"},{\"@search.score\":1.0,\"HotelId\":\"169\"},{\"@search.score\":1.0,\"HotelId\":\"1690\"},{\"@search.score\":1.0,\"HotelId\":\"1691\"},{\"@search.score\":1.0,\"HotelId\":\"1692\"},{\"@search.score\":1.0,\"HotelId\":\"1693\"},{\"@search.score\":1.0,\"HotelId\":\"1694\"},{\"@search.score\":1.0,\"HotelId\":\"1695\"},{\"@search.score\":1.0,\"HotelId\":\"1696\"},{\"@search.score\":1.0,\"HotelId\":\"1697\"},{\"@search.score\":1.0,\"HotelId\":\"1698\"},{\"@search.score\":1.0,\"HotelId\":\"1699\"},{\"@search.score\":1.0,\"HotelId\":\"17\"},{\"@search.score\":1.0,\"HotelId\":\"170\"},{\"@search.score\":1.0,\"HotelId\":\"1700\"},{\"@search.score\":1.0,\"HotelId\":\"1701\"},{\"@search.score\":1.0,\"HotelId\":\"1702\"},{\"@search.score\":1.0,\"HotelId\":\"1703\"},{\"@search.score\":1.0,\"HotelId\":\"1704\"},{\"@search.score\":1.0,\"HotelId\":\"1705\"},{\"@search.score\":1.0,\"HotelId\":\"1706\"},{\"@search.score\":1.0,\"HotelId\":\"1707\"},{\"@search.score\":1.0,\"HotelId\":\"1708\"},{\"@search.score\":1.0,\"HotelId\":\"1709\"},{\"@search.score\":1.0,\"HotelId\":\"171\"},{\"@search.score\":1.0,\"HotelId\":\"1710\"},{\"@search.score\":1.0,\"HotelId\":\"1711\"},{\"@search.score\":1.0,\"HotelId\":\"1712\"},{\"@search.score\":1.0,\"HotelId\":\"1713\"},{\"@search.score\":1.0,\"HotelId\":\"1714\"},{\"@search.score\":1.0,\"HotelId\":\"1715\"},{\"@search.score\":1.0,\"HotelId\":\"1716\"},{\"@search.score\":1.0,\"HotelId\":\"1717\"},{\"@search.score\":1.0,\"HotelId\":\"1718\"},{\"@search.score\":1.0,\"HotelId\":\"1719\"},{\"@search.score\":1.0,\"HotelId\":\"172\"},{\"@search.score\":1.0,\"HotelId\":\"1720\"},{\"@search.score\":1.0,\"HotelId\":\"1721\"},{\"@search.score\":1.0,\"HotelId\":\"1722\"},{\"@search.score\":1.0,\"HotelId\":\"1723\"},{\"@search.score\":1.0,\"HotelId\":\"1724\"},{\"@search.score\":1.0,\"HotelId\":\"1725\"},{\"@search.score\":1.0,\"HotelId\":\"1726\"},{\"@search.score\":1.0,\"HotelId\":\"1727\"},{\"@search.score\":1.0,\"HotelId\":\"1728\"},{\"@search.score\":1.0,\"HotelId\":\"1729\"},{\"@search.score\":1.0,\"HotelId\":\"173\"},{\"@search.score\":1.0,\"HotelId\":\"1730\"},{\"@search.score\":1.0,\"HotelId\":\"1731\"},{\"@search.score\":1.0,\"HotelId\":\"1732\"},{\"@search.score\":1.0,\"HotelId\":\"1733\"},{\"@search.score\":1.0,\"HotelId\":\"1734\"},{\"@search.score\":1.0,\"HotelId\":\"1735\"},{\"@search.score\":1.0,\"HotelId\":\"1736\"},{\"@search.score\":1.0,\"HotelId\":\"1737\"},{\"@search.score\":1.0,\"HotelId\":\"1738\"},{\"@search.score\":1.0,\"HotelId\":\"1739\"},{\"@search.score\":1.0,\"HotelId\":\"174\"},{\"@search.score\":1.0,\"HotelId\":\"1740\"},{\"@search.score\":1.0,\"HotelId\":\"1741\"},{\"@search.score\":1.0,\"HotelId\":\"1742\"},{\"@search.score\":1.0,\"HotelId\":\"1743\"},{\"@search.score\":1.0,\"HotelId\":\"1744\"},{\"@search.score\":1.0,\"HotelId\":\"1745\"},{\"@search.score\":1.0,\"HotelId\":\"1746\"},{\"@search.score\":1.0,\"HotelId\":\"1747\"},{\"@search.score\":1.0,\"HotelId\":\"1748\"},{\"@search.score\":1.0,\"HotelId\":\"1749\"},{\"@search.score\":1.0,\"HotelId\":\"175\"},{\"@search.score\":1.0,\"HotelId\":\"1750\"},{\"@search.score\":1.0,\"HotelId\":\"1751\"},{\"@search.score\":1.0,\"HotelId\":\"1752\"},{\"@search.score\":1.0,\"HotelId\":\"1753\"},{\"@search.score\":1.0,\"HotelId\":\"1754\"},{\"@search.score\":1.0,\"HotelId\":\"1755\"},{\"@search.score\":1.0,\"HotelId\":\"1756\"},{\"@search.score\":1.0,\"HotelId\":\"1757\"},{\"@search.score\":1.0,\"HotelId\":\"1758\"},{\"@search.score\":1.0,\"HotelId\":\"1759\"},{\"@search.score\":1.0,\"HotelId\":\"176\"},{\"@search.score\":1.0,\"HotelId\":\"1760\"},{\"@search.score\":1.0,\"HotelId\":\"1761\"},{\"@search.score\":1.0,\"HotelId\":\"1762\"},{\"@search.score\":1.0,\"HotelId\":\"1763\"},{\"@search.score\":1.0,\"HotelId\":\"1764\"},{\"@search.score\":1.0,\"HotelId\":\"1765\"},{\"@search.score\":1.0,\"HotelId\":\"1766\"},{\"@search.score\":1.0,\"HotelId\":\"1767\"},{\"@search.score\":1.0,\"HotelId\":\"1768\"},{\"@search.score\":1.0,\"HotelId\":\"1769\"},{\"@search.score\":1.0,\"HotelId\":\"177\"},{\"@search.score\":1.0,\"HotelId\":\"1770\"},{\"@search.score\":1.0,\"HotelId\":\"1771\"},{\"@search.score\":1.0,\"HotelId\":\"1772\"},{\"@search.score\":1.0,\"HotelId\":\"1773\"},{\"@search.score\":1.0,\"HotelId\":\"1774\"},{\"@search.score\":1.0,\"HotelId\":\"1775\"},{\"@search.score\":1.0,\"HotelId\":\"1776\"},{\"@search.score\":1.0,\"HotelId\":\"1777\"},{\"@search.score\":1.0,\"HotelId\":\"1778\"},{\"@search.score\":1.0,\"HotelId\":\"1779\"},{\"@search.score\":1.0,\"HotelId\":\"178\"},{\"@search.score\":1.0,\"HotelId\":\"1780\"},{\"@search.score\":1.0,\"HotelId\":\"1781\"},{\"@search.score\":1.0,\"HotelId\":\"1782\"},{\"@search.score\":1.0,\"HotelId\":\"1783\"},{\"@search.score\":1.0,\"HotelId\":\"1784\"},{\"@search.score\":1.0,\"HotelId\":\"1785\"},{\"@search.score\":1.0,\"HotelId\":\"1786\"},{\"@search.score\":1.0,\"HotelId\":\"1787\"},{\"@search.score\":1.0,\"HotelId\":\"1788\"},{\"@search.score\":1.0,\"HotelId\":\"1789\"},{\"@search.score\":1.0,\"HotelId\":\"179\"},{\"@search.score\":1.0,\"HotelId\":\"1790\"},{\"@search.score\":1.0,\"HotelId\":\"1791\"},{\"@search.score\":1.0,\"HotelId\":\"1792\"},{\"@search.score\":1.0,\"HotelId\":\"1793\"},{\"@search.score\":1.0,\"HotelId\":\"1794\"},{\"@search.score\":1.0,\"HotelId\":\"1795\"},{\"@search.score\":1.0,\"HotelId\":\"1796\"},{\"@search.score\":1.0,\"HotelId\":\"1797\"},{\"@search.score\":1.0,\"HotelId\":\"1798\"},{\"@search.score\":1.0,\"HotelId\":\"1799\"},{\"@search.score\":1.0,\"HotelId\":\"18\"},{\"@search.score\":1.0,\"HotelId\":\"180\"},{\"@search.score\":1.0,\"HotelId\":\"1800\"},{\"@search.score\":1.0,\"HotelId\":\"1801\"},{\"@search.score\":1.0,\"HotelId\":\"1802\"},{\"@search.score\":1.0,\"HotelId\":\"1803\"},{\"@search.score\":1.0,\"HotelId\":\"1804\"},{\"@search.score\":1.0,\"HotelId\":\"1805\"},{\"@search.score\":1.0,\"HotelId\":\"1806\"},{\"@search.score\":1.0,\"HotelId\":\"1807\"},{\"@search.score\":1.0,\"HotelId\":\"1808\"},{\"@search.score\":1.0,\"HotelId\":\"1809\"},{\"@search.score\":1.0,\"HotelId\":\"181\"},{\"@search.score\":1.0,\"HotelId\":\"1810\"},{\"@search.score\":1.0,\"HotelId\":\"1811\"},{\"@search.score\":1.0,\"HotelId\":\"1812\"},{\"@search.score\":1.0,\"HotelId\":\"1813\"},{\"@search.score\":1.0,\"HotelId\":\"1814\"},{\"@search.score\":1.0,\"HotelId\":\"1815\"},{\"@search.score\":1.0,\"HotelId\":\"1816\"},{\"@search.score\":1.0,\"HotelId\":\"1817\"},{\"@search.score\":1.0,\"HotelId\":\"1818\"},{\"@search.score\":1.0,\"HotelId\":\"1819\"},{\"@search.score\":1.0,\"HotelId\":\"182\"},{\"@search.score\":1.0,\"HotelId\":\"1820\"},{\"@search.score\":1.0,\"HotelId\":\"1821\"},{\"@search.score\":1.0,\"HotelId\":\"1822\"},{\"@search.score\":1.0,\"HotelId\":\"1823\"},{\"@search.score\":1.0,\"HotelId\":\"1824\"},{\"@search.score\":1.0,\"HotelId\":\"1825\"},{\"@search.score\":1.0,\"HotelId\":\"1826\"},{\"@search.score\":1.0,\"HotelId\":\"1827\"},{\"@search.score\":1.0,\"HotelId\":\"1828\"},{\"@search.score\":1.0,\"HotelId\":\"1829\"},{\"@search.score\":1.0,\"HotelId\":\"183\"},{\"@search.score\":1.0,\"HotelId\":\"1830\"},{\"@search.score\":1.0,\"HotelId\":\"1831\"},{\"@search.score\":1.0,\"HotelId\":\"1832\"},{\"@search.score\":1.0,\"HotelId\":\"1833\"},{\"@search.score\":1.0,\"HotelId\":\"1834\"},{\"@search.score\":1.0,\"HotelId\":\"1835\"},{\"@search.score\":1.0,\"HotelId\":\"1836\"},{\"@search.score\":1.0,\"HotelId\":\"1837\"},{\"@search.score\":1.0,\"HotelId\":\"1838\"},{\"@search.score\":1.0,\"HotelId\":\"1839\"},{\"@search.score\":1.0,\"HotelId\":\"184\"},{\"@search.score\":1.0,\"HotelId\":\"1840\"},{\"@search.score\":1.0,\"HotelId\":\"1841\"},{\"@search.score\":1.0,\"HotelId\":\"1842\"},{\"@search.score\":1.0,\"HotelId\":\"1843\"},{\"@search.score\":1.0,\"HotelId\":\"1844\"},{\"@search.score\":1.0,\"HotelId\":\"1845\"},{\"@search.score\":1.0,\"HotelId\":\"1846\"},{\"@search.score\":1.0,\"HotelId\":\"1847\"},{\"@search.score\":1.0,\"HotelId\":\"1848\"},{\"@search.score\":1.0,\"HotelId\":\"1849\"},{\"@search.score\":1.0,\"HotelId\":\"185\"},{\"@search.score\":1.0,\"HotelId\":\"1850\"},{\"@search.score\":1.0,\"HotelId\":\"1851\"},{\"@search.score\":1.0,\"HotelId\":\"1852\"},{\"@search.score\":1.0,\"HotelId\":\"1853\"},{\"@search.score\":1.0,\"HotelId\":\"1854\"},{\"@search.score\":1.0,\"HotelId\":\"1855\"},{\"@search.score\":1.0,\"HotelId\":\"1856\"},{\"@search.score\":1.0,\"HotelId\":\"1857\"},{\"@search.score\":1.0,\"HotelId\":\"1858\"},{\"@search.score\":1.0,\"HotelId\":\"1859\"},{\"@search.score\":1.0,\"HotelId\":\"186\"},{\"@search.score\":1.0,\"HotelId\":\"1860\"},{\"@search.score\":1.0,\"HotelId\":\"1861\"},{\"@search.score\":1.0,\"HotelId\":\"1862\"},{\"@search.score\":1.0,\"HotelId\":\"1863\"},{\"@search.score\":1.0,\"HotelId\":\"1864\"},{\"@search.score\":1.0,\"HotelId\":\"1865\"},{\"@search.score\":1.0,\"HotelId\":\"1866\"},{\"@search.score\":1.0,\"HotelId\":\"1867\"},{\"@search.score\":1.0,\"HotelId\":\"1868\"},{\"@search.score\":1.0,\"HotelId\":\"1869\"},{\"@search.score\":1.0,\"HotelId\":\"187\"},{\"@search.score\":1.0,\"HotelId\":\"1870\"},{\"@search.score\":1.0,\"HotelId\":\"1871\"},{\"@search.score\":1.0,\"HotelId\":\"1872\"},{\"@search.score\":1.0,\"HotelId\":\"1873\"},{\"@search.score\":1.0,\"HotelId\":\"1874\"},{\"@search.score\":1.0,\"HotelId\":\"1875\"},{\"@search.score\":1.0,\"HotelId\":\"1876\"},{\"@search.score\":1.0,\"HotelId\":\"1877\"},{\"@search.score\":1.0,\"HotelId\":\"1878\"},{\"@search.score\":1.0,\"HotelId\":\"1879\"},{\"@search.score\":1.0,\"HotelId\":\"188\"},{\"@search.score\":1.0,\"HotelId\":\"1880\"},{\"@search.score\":1.0,\"HotelId\":\"1881\"},{\"@search.score\":1.0,\"HotelId\":\"1882\"},{\"@search.score\":1.0,\"HotelId\":\"1883\"},{\"@search.score\":1.0,\"HotelId\":\"1884\"},{\"@search.score\":1.0,\"HotelId\":\"1885\"},{\"@search.score\":1.0,\"HotelId\":\"1886\"},{\"@search.score\":1.0,\"HotelId\":\"1887\"},{\"@search.score\":1.0,\"HotelId\":\"1888\"},{\"@search.score\":1.0,\"HotelId\":\"1889\"},{\"@search.score\":1.0,\"HotelId\":\"189\"},{\"@search.score\":1.0,\"HotelId\":\"1890\"},{\"@search.score\":1.0,\"HotelId\":\"1891\"},{\"@search.score\":1.0,\"HotelId\":\"1892\"},{\"@search.score\":1.0,\"HotelId\":\"1893\"},{\"@search.score\":1.0,\"HotelId\":\"1894\"},{\"@search.score\":1.0,\"HotelId\":\"1895\"},{\"@search.score\":1.0,\"HotelId\":\"1896\"},{\"@search.score\":1.0,\"HotelId\":\"1897\"},{\"@search.score\":1.0,\"HotelId\":\"1898\"},{\"@search.score\":1.0,\"HotelId\":\"1899\"}],\"@odata.nextLink\":\"https://alzimmer-test.search.windows.net/indexes('hotelscancontinuesearchwithtop41c652249c5d8bc447884')/docs/search.post.search?api-version=2020-06-30\"}", + "x-ms-client-request-id" : "a4fd3ef0-968b-48df-925c-d02fcff7b333", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearchwithtop8de86306145bc0168fb14')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearchwithtop41c652249c5d8bc447884')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7dae9e8a-8afb-4322-9f05-633bdc15e6df", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "57065f7f-b5fa-443e-b054-621d09f0558b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "38900", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "7dae9e8a-8afb-4322-9f05-633bdc15e6df", + "request-id" : "57065f7f-b5fa-443e-b054-621d09f0558b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:16 GMT", + "Date" : "Thu, 27 May 2021 21:12:45 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7dae9e8a-8afb-4322-9f05-633bdc15e6df", - "elapsed-time" : "102", + "client-request-id" : "57065f7f-b5fa-443e-b054-621d09f0558b", + "elapsed-time" : "100", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "38900", "Body" : "{\"value\":[{\"@search.score\":1.0,\"HotelId\":\"19\"},{\"@search.score\":1.0,\"HotelId\":\"190\"},{\"@search.score\":1.0,\"HotelId\":\"1900\"},{\"@search.score\":1.0,\"HotelId\":\"1901\"},{\"@search.score\":1.0,\"HotelId\":\"1902\"},{\"@search.score\":1.0,\"HotelId\":\"1903\"},{\"@search.score\":1.0,\"HotelId\":\"1904\"},{\"@search.score\":1.0,\"HotelId\":\"1905\"},{\"@search.score\":1.0,\"HotelId\":\"1906\"},{\"@search.score\":1.0,\"HotelId\":\"1907\"},{\"@search.score\":1.0,\"HotelId\":\"1908\"},{\"@search.score\":1.0,\"HotelId\":\"1909\"},{\"@search.score\":1.0,\"HotelId\":\"191\"},{\"@search.score\":1.0,\"HotelId\":\"1910\"},{\"@search.score\":1.0,\"HotelId\":\"1911\"},{\"@search.score\":1.0,\"HotelId\":\"1912\"},{\"@search.score\":1.0,\"HotelId\":\"1913\"},{\"@search.score\":1.0,\"HotelId\":\"1914\"},{\"@search.score\":1.0,\"HotelId\":\"1915\"},{\"@search.score\":1.0,\"HotelId\":\"1916\"},{\"@search.score\":1.0,\"HotelId\":\"1917\"},{\"@search.score\":1.0,\"HotelId\":\"1918\"},{\"@search.score\":1.0,\"HotelId\":\"1919\"},{\"@search.score\":1.0,\"HotelId\":\"192\"},{\"@search.score\":1.0,\"HotelId\":\"1920\"},{\"@search.score\":1.0,\"HotelId\":\"1921\"},{\"@search.score\":1.0,\"HotelId\":\"1922\"},{\"@search.score\":1.0,\"HotelId\":\"1923\"},{\"@search.score\":1.0,\"HotelId\":\"1924\"},{\"@search.score\":1.0,\"HotelId\":\"1925\"},{\"@search.score\":1.0,\"HotelId\":\"1926\"},{\"@search.score\":1.0,\"HotelId\":\"1927\"},{\"@search.score\":1.0,\"HotelId\":\"1928\"},{\"@search.score\":1.0,\"HotelId\":\"1929\"},{\"@search.score\":1.0,\"HotelId\":\"193\"},{\"@search.score\":1.0,\"HotelId\":\"1930\"},{\"@search.score\":1.0,\"HotelId\":\"1931\"},{\"@search.score\":1.0,\"HotelId\":\"1932\"},{\"@search.score\":1.0,\"HotelId\":\"1933\"},{\"@search.score\":1.0,\"HotelId\":\"1934\"},{\"@search.score\":1.0,\"HotelId\":\"1935\"},{\"@search.score\":1.0,\"HotelId\":\"1936\"},{\"@search.score\":1.0,\"HotelId\":\"1937\"},{\"@search.score\":1.0,\"HotelId\":\"1938\"},{\"@search.score\":1.0,\"HotelId\":\"1939\"},{\"@search.score\":1.0,\"HotelId\":\"194\"},{\"@search.score\":1.0,\"HotelId\":\"1940\"},{\"@search.score\":1.0,\"HotelId\":\"1941\"},{\"@search.score\":1.0,\"HotelId\":\"1942\"},{\"@search.score\":1.0,\"HotelId\":\"1943\"},{\"@search.score\":1.0,\"HotelId\":\"1944\"},{\"@search.score\":1.0,\"HotelId\":\"1945\"},{\"@search.score\":1.0,\"HotelId\":\"1946\"},{\"@search.score\":1.0,\"HotelId\":\"1947\"},{\"@search.score\":1.0,\"HotelId\":\"1948\"},{\"@search.score\":1.0,\"HotelId\":\"1949\"},{\"@search.score\":1.0,\"HotelId\":\"195\"},{\"@search.score\":1.0,\"HotelId\":\"1950\"},{\"@search.score\":1.0,\"HotelId\":\"1951\"},{\"@search.score\":1.0,\"HotelId\":\"1952\"},{\"@search.score\":1.0,\"HotelId\":\"1953\"},{\"@search.score\":1.0,\"HotelId\":\"1954\"},{\"@search.score\":1.0,\"HotelId\":\"1955\"},{\"@search.score\":1.0,\"HotelId\":\"1956\"},{\"@search.score\":1.0,\"HotelId\":\"1957\"},{\"@search.score\":1.0,\"HotelId\":\"1958\"},{\"@search.score\":1.0,\"HotelId\":\"1959\"},{\"@search.score\":1.0,\"HotelId\":\"196\"},{\"@search.score\":1.0,\"HotelId\":\"1960\"},{\"@search.score\":1.0,\"HotelId\":\"1961\"},{\"@search.score\":1.0,\"HotelId\":\"1962\"},{\"@search.score\":1.0,\"HotelId\":\"1963\"},{\"@search.score\":1.0,\"HotelId\":\"1964\"},{\"@search.score\":1.0,\"HotelId\":\"1965\"},{\"@search.score\":1.0,\"HotelId\":\"1966\"},{\"@search.score\":1.0,\"HotelId\":\"1967\"},{\"@search.score\":1.0,\"HotelId\":\"1968\"},{\"@search.score\":1.0,\"HotelId\":\"1969\"},{\"@search.score\":1.0,\"HotelId\":\"197\"},{\"@search.score\":1.0,\"HotelId\":\"1970\"},{\"@search.score\":1.0,\"HotelId\":\"1971\"},{\"@search.score\":1.0,\"HotelId\":\"1972\"},{\"@search.score\":1.0,\"HotelId\":\"1973\"},{\"@search.score\":1.0,\"HotelId\":\"1974\"},{\"@search.score\":1.0,\"HotelId\":\"1975\"},{\"@search.score\":1.0,\"HotelId\":\"1976\"},{\"@search.score\":1.0,\"HotelId\":\"1977\"},{\"@search.score\":1.0,\"HotelId\":\"1978\"},{\"@search.score\":1.0,\"HotelId\":\"1979\"},{\"@search.score\":1.0,\"HotelId\":\"198\"},{\"@search.score\":1.0,\"HotelId\":\"1980\"},{\"@search.score\":1.0,\"HotelId\":\"1981\"},{\"@search.score\":1.0,\"HotelId\":\"1982\"},{\"@search.score\":1.0,\"HotelId\":\"1983\"},{\"@search.score\":1.0,\"HotelId\":\"1984\"},{\"@search.score\":1.0,\"HotelId\":\"1985\"},{\"@search.score\":1.0,\"HotelId\":\"1986\"},{\"@search.score\":1.0,\"HotelId\":\"1987\"},{\"@search.score\":1.0,\"HotelId\":\"1988\"},{\"@search.score\":1.0,\"HotelId\":\"1989\"},{\"@search.score\":1.0,\"HotelId\":\"199\"},{\"@search.score\":1.0,\"HotelId\":\"1990\"},{\"@search.score\":1.0,\"HotelId\":\"1991\"},{\"@search.score\":1.0,\"HotelId\":\"1992\"},{\"@search.score\":1.0,\"HotelId\":\"1993\"},{\"@search.score\":1.0,\"HotelId\":\"1994\"},{\"@search.score\":1.0,\"HotelId\":\"1995\"},{\"@search.score\":1.0,\"HotelId\":\"1996\"},{\"@search.score\":1.0,\"HotelId\":\"1997\"},{\"@search.score\":1.0,\"HotelId\":\"1998\"},{\"@search.score\":1.0,\"HotelId\":\"1999\"},{\"@search.score\":1.0,\"HotelId\":\"2\"},{\"@search.score\":1.0,\"HotelId\":\"20\"},{\"@search.score\":1.0,\"HotelId\":\"200\"},{\"@search.score\":1.0,\"HotelId\":\"2000\"},{\"@search.score\":1.0,\"HotelId\":\"2001\"},{\"@search.score\":1.0,\"HotelId\":\"2002\"},{\"@search.score\":1.0,\"HotelId\":\"2003\"},{\"@search.score\":1.0,\"HotelId\":\"2004\"},{\"@search.score\":1.0,\"HotelId\":\"2005\"},{\"@search.score\":1.0,\"HotelId\":\"2006\"},{\"@search.score\":1.0,\"HotelId\":\"2007\"},{\"@search.score\":1.0,\"HotelId\":\"2008\"},{\"@search.score\":1.0,\"HotelId\":\"2009\"},{\"@search.score\":1.0,\"HotelId\":\"201\"},{\"@search.score\":1.0,\"HotelId\":\"2010\"},{\"@search.score\":1.0,\"HotelId\":\"2011\"},{\"@search.score\":1.0,\"HotelId\":\"2012\"},{\"@search.score\":1.0,\"HotelId\":\"2013\"},{\"@search.score\":1.0,\"HotelId\":\"2014\"},{\"@search.score\":1.0,\"HotelId\":\"2015\"},{\"@search.score\":1.0,\"HotelId\":\"2016\"},{\"@search.score\":1.0,\"HotelId\":\"2017\"},{\"@search.score\":1.0,\"HotelId\":\"2018\"},{\"@search.score\":1.0,\"HotelId\":\"2019\"},{\"@search.score\":1.0,\"HotelId\":\"202\"},{\"@search.score\":1.0,\"HotelId\":\"2020\"},{\"@search.score\":1.0,\"HotelId\":\"2021\"},{\"@search.score\":1.0,\"HotelId\":\"2022\"},{\"@search.score\":1.0,\"HotelId\":\"2023\"},{\"@search.score\":1.0,\"HotelId\":\"2024\"},{\"@search.score\":1.0,\"HotelId\":\"2025\"},{\"@search.score\":1.0,\"HotelId\":\"2026\"},{\"@search.score\":1.0,\"HotelId\":\"2027\"},{\"@search.score\":1.0,\"HotelId\":\"2028\"},{\"@search.score\":1.0,\"HotelId\":\"2029\"},{\"@search.score\":1.0,\"HotelId\":\"203\"},{\"@search.score\":1.0,\"HotelId\":\"2030\"},{\"@search.score\":1.0,\"HotelId\":\"2031\"},{\"@search.score\":1.0,\"HotelId\":\"2032\"},{\"@search.score\":1.0,\"HotelId\":\"2033\"},{\"@search.score\":1.0,\"HotelId\":\"2034\"},{\"@search.score\":1.0,\"HotelId\":\"2035\"},{\"@search.score\":1.0,\"HotelId\":\"2036\"},{\"@search.score\":1.0,\"HotelId\":\"2037\"},{\"@search.score\":1.0,\"HotelId\":\"2038\"},{\"@search.score\":1.0,\"HotelId\":\"2039\"},{\"@search.score\":1.0,\"HotelId\":\"204\"},{\"@search.score\":1.0,\"HotelId\":\"2040\"},{\"@search.score\":1.0,\"HotelId\":\"2041\"},{\"@search.score\":1.0,\"HotelId\":\"2042\"},{\"@search.score\":1.0,\"HotelId\":\"2043\"},{\"@search.score\":1.0,\"HotelId\":\"2044\"},{\"@search.score\":1.0,\"HotelId\":\"2045\"},{\"@search.score\":1.0,\"HotelId\":\"2046\"},{\"@search.score\":1.0,\"HotelId\":\"2047\"},{\"@search.score\":1.0,\"HotelId\":\"2048\"},{\"@search.score\":1.0,\"HotelId\":\"2049\"},{\"@search.score\":1.0,\"HotelId\":\"205\"},{\"@search.score\":1.0,\"HotelId\":\"2050\"},{\"@search.score\":1.0,\"HotelId\":\"2051\"},{\"@search.score\":1.0,\"HotelId\":\"2052\"},{\"@search.score\":1.0,\"HotelId\":\"2053\"},{\"@search.score\":1.0,\"HotelId\":\"2054\"},{\"@search.score\":1.0,\"HotelId\":\"2055\"},{\"@search.score\":1.0,\"HotelId\":\"2056\"},{\"@search.score\":1.0,\"HotelId\":\"2057\"},{\"@search.score\":1.0,\"HotelId\":\"2058\"},{\"@search.score\":1.0,\"HotelId\":\"2059\"},{\"@search.score\":1.0,\"HotelId\":\"206\"},{\"@search.score\":1.0,\"HotelId\":\"2060\"},{\"@search.score\":1.0,\"HotelId\":\"2061\"},{\"@search.score\":1.0,\"HotelId\":\"2062\"},{\"@search.score\":1.0,\"HotelId\":\"2063\"},{\"@search.score\":1.0,\"HotelId\":\"2064\"},{\"@search.score\":1.0,\"HotelId\":\"2065\"},{\"@search.score\":1.0,\"HotelId\":\"2066\"},{\"@search.score\":1.0,\"HotelId\":\"2067\"},{\"@search.score\":1.0,\"HotelId\":\"2068\"},{\"@search.score\":1.0,\"HotelId\":\"2069\"},{\"@search.score\":1.0,\"HotelId\":\"207\"},{\"@search.score\":1.0,\"HotelId\":\"2070\"},{\"@search.score\":1.0,\"HotelId\":\"2071\"},{\"@search.score\":1.0,\"HotelId\":\"2072\"},{\"@search.score\":1.0,\"HotelId\":\"2073\"},{\"@search.score\":1.0,\"HotelId\":\"2074\"},{\"@search.score\":1.0,\"HotelId\":\"2075\"},{\"@search.score\":1.0,\"HotelId\":\"2076\"},{\"@search.score\":1.0,\"HotelId\":\"2077\"},{\"@search.score\":1.0,\"HotelId\":\"2078\"},{\"@search.score\":1.0,\"HotelId\":\"2079\"},{\"@search.score\":1.0,\"HotelId\":\"208\"},{\"@search.score\":1.0,\"HotelId\":\"2080\"},{\"@search.score\":1.0,\"HotelId\":\"2081\"},{\"@search.score\":1.0,\"HotelId\":\"2082\"},{\"@search.score\":1.0,\"HotelId\":\"2083\"},{\"@search.score\":1.0,\"HotelId\":\"2084\"},{\"@search.score\":1.0,\"HotelId\":\"2085\"},{\"@search.score\":1.0,\"HotelId\":\"2086\"},{\"@search.score\":1.0,\"HotelId\":\"2087\"},{\"@search.score\":1.0,\"HotelId\":\"2088\"},{\"@search.score\":1.0,\"HotelId\":\"2089\"},{\"@search.score\":1.0,\"HotelId\":\"209\"},{\"@search.score\":1.0,\"HotelId\":\"2090\"},{\"@search.score\":1.0,\"HotelId\":\"2091\"},{\"@search.score\":1.0,\"HotelId\":\"2092\"},{\"@search.score\":1.0,\"HotelId\":\"2093\"},{\"@search.score\":1.0,\"HotelId\":\"2094\"},{\"@search.score\":1.0,\"HotelId\":\"2095\"},{\"@search.score\":1.0,\"HotelId\":\"2096\"},{\"@search.score\":1.0,\"HotelId\":\"2097\"},{\"@search.score\":1.0,\"HotelId\":\"2098\"},{\"@search.score\":1.0,\"HotelId\":\"2099\"},{\"@search.score\":1.0,\"HotelId\":\"21\"},{\"@search.score\":1.0,\"HotelId\":\"210\"},{\"@search.score\":1.0,\"HotelId\":\"2100\"},{\"@search.score\":1.0,\"HotelId\":\"2101\"},{\"@search.score\":1.0,\"HotelId\":\"2102\"},{\"@search.score\":1.0,\"HotelId\":\"2103\"},{\"@search.score\":1.0,\"HotelId\":\"2104\"},{\"@search.score\":1.0,\"HotelId\":\"2105\"},{\"@search.score\":1.0,\"HotelId\":\"2106\"},{\"@search.score\":1.0,\"HotelId\":\"2107\"},{\"@search.score\":1.0,\"HotelId\":\"2108\"},{\"@search.score\":1.0,\"HotelId\":\"2109\"},{\"@search.score\":1.0,\"HotelId\":\"211\"},{\"@search.score\":1.0,\"HotelId\":\"2110\"},{\"@search.score\":1.0,\"HotelId\":\"2111\"},{\"@search.score\":1.0,\"HotelId\":\"2112\"},{\"@search.score\":1.0,\"HotelId\":\"2113\"},{\"@search.score\":1.0,\"HotelId\":\"2114\"},{\"@search.score\":1.0,\"HotelId\":\"2115\"},{\"@search.score\":1.0,\"HotelId\":\"2116\"},{\"@search.score\":1.0,\"HotelId\":\"2117\"},{\"@search.score\":1.0,\"HotelId\":\"2118\"},{\"@search.score\":1.0,\"HotelId\":\"2119\"},{\"@search.score\":1.0,\"HotelId\":\"212\"},{\"@search.score\":1.0,\"HotelId\":\"2120\"},{\"@search.score\":1.0,\"HotelId\":\"2121\"},{\"@search.score\":1.0,\"HotelId\":\"2122\"},{\"@search.score\":1.0,\"HotelId\":\"2123\"},{\"@search.score\":1.0,\"HotelId\":\"2124\"},{\"@search.score\":1.0,\"HotelId\":\"2125\"},{\"@search.score\":1.0,\"HotelId\":\"2126\"},{\"@search.score\":1.0,\"HotelId\":\"2127\"},{\"@search.score\":1.0,\"HotelId\":\"2128\"},{\"@search.score\":1.0,\"HotelId\":\"2129\"},{\"@search.score\":1.0,\"HotelId\":\"213\"},{\"@search.score\":1.0,\"HotelId\":\"2130\"},{\"@search.score\":1.0,\"HotelId\":\"2131\"},{\"@search.score\":1.0,\"HotelId\":\"2132\"},{\"@search.score\":1.0,\"HotelId\":\"2133\"},{\"@search.score\":1.0,\"HotelId\":\"2134\"},{\"@search.score\":1.0,\"HotelId\":\"2135\"},{\"@search.score\":1.0,\"HotelId\":\"2136\"},{\"@search.score\":1.0,\"HotelId\":\"2137\"},{\"@search.score\":1.0,\"HotelId\":\"2138\"},{\"@search.score\":1.0,\"HotelId\":\"2139\"},{\"@search.score\":1.0,\"HotelId\":\"214\"},{\"@search.score\":1.0,\"HotelId\":\"2140\"},{\"@search.score\":1.0,\"HotelId\":\"2141\"},{\"@search.score\":1.0,\"HotelId\":\"2142\"},{\"@search.score\":1.0,\"HotelId\":\"2143\"},{\"@search.score\":1.0,\"HotelId\":\"2144\"},{\"@search.score\":1.0,\"HotelId\":\"2145\"},{\"@search.score\":1.0,\"HotelId\":\"2146\"},{\"@search.score\":1.0,\"HotelId\":\"2147\"},{\"@search.score\":1.0,\"HotelId\":\"2148\"},{\"@search.score\":1.0,\"HotelId\":\"2149\"},{\"@search.score\":1.0,\"HotelId\":\"215\"},{\"@search.score\":1.0,\"HotelId\":\"2150\"},{\"@search.score\":1.0,\"HotelId\":\"2151\"},{\"@search.score\":1.0,\"HotelId\":\"2152\"},{\"@search.score\":1.0,\"HotelId\":\"2153\"},{\"@search.score\":1.0,\"HotelId\":\"2154\"},{\"@search.score\":1.0,\"HotelId\":\"2155\"},{\"@search.score\":1.0,\"HotelId\":\"2156\"},{\"@search.score\":1.0,\"HotelId\":\"2157\"},{\"@search.score\":1.0,\"HotelId\":\"2158\"},{\"@search.score\":1.0,\"HotelId\":\"2159\"},{\"@search.score\":1.0,\"HotelId\":\"216\"},{\"@search.score\":1.0,\"HotelId\":\"2160\"},{\"@search.score\":1.0,\"HotelId\":\"2161\"},{\"@search.score\":1.0,\"HotelId\":\"2162\"},{\"@search.score\":1.0,\"HotelId\":\"2163\"},{\"@search.score\":1.0,\"HotelId\":\"2164\"},{\"@search.score\":1.0,\"HotelId\":\"2165\"},{\"@search.score\":1.0,\"HotelId\":\"2166\"},{\"@search.score\":1.0,\"HotelId\":\"2167\"},{\"@search.score\":1.0,\"HotelId\":\"2168\"},{\"@search.score\":1.0,\"HotelId\":\"2169\"},{\"@search.score\":1.0,\"HotelId\":\"217\"},{\"@search.score\":1.0,\"HotelId\":\"2170\"},{\"@search.score\":1.0,\"HotelId\":\"2171\"},{\"@search.score\":1.0,\"HotelId\":\"2172\"},{\"@search.score\":1.0,\"HotelId\":\"2173\"},{\"@search.score\":1.0,\"HotelId\":\"2174\"},{\"@search.score\":1.0,\"HotelId\":\"2175\"},{\"@search.score\":1.0,\"HotelId\":\"2176\"},{\"@search.score\":1.0,\"HotelId\":\"2177\"},{\"@search.score\":1.0,\"HotelId\":\"2178\"},{\"@search.score\":1.0,\"HotelId\":\"2179\"},{\"@search.score\":1.0,\"HotelId\":\"218\"},{\"@search.score\":1.0,\"HotelId\":\"2180\"},{\"@search.score\":1.0,\"HotelId\":\"2181\"},{\"@search.score\":1.0,\"HotelId\":\"2182\"},{\"@search.score\":1.0,\"HotelId\":\"2183\"},{\"@search.score\":1.0,\"HotelId\":\"2184\"},{\"@search.score\":1.0,\"HotelId\":\"2185\"},{\"@search.score\":1.0,\"HotelId\":\"2186\"},{\"@search.score\":1.0,\"HotelId\":\"2187\"},{\"@search.score\":1.0,\"HotelId\":\"2188\"},{\"@search.score\":1.0,\"HotelId\":\"2189\"},{\"@search.score\":1.0,\"HotelId\":\"219\"},{\"@search.score\":1.0,\"HotelId\":\"2190\"},{\"@search.score\":1.0,\"HotelId\":\"2191\"},{\"@search.score\":1.0,\"HotelId\":\"2192\"},{\"@search.score\":1.0,\"HotelId\":\"2193\"},{\"@search.score\":1.0,\"HotelId\":\"2194\"},{\"@search.score\":1.0,\"HotelId\":\"2195\"},{\"@search.score\":1.0,\"HotelId\":\"2196\"},{\"@search.score\":1.0,\"HotelId\":\"2197\"},{\"@search.score\":1.0,\"HotelId\":\"2198\"},{\"@search.score\":1.0,\"HotelId\":\"2199\"},{\"@search.score\":1.0,\"HotelId\":\"22\"},{\"@search.score\":1.0,\"HotelId\":\"220\"},{\"@search.score\":1.0,\"HotelId\":\"2200\"},{\"@search.score\":1.0,\"HotelId\":\"2201\"},{\"@search.score\":1.0,\"HotelId\":\"2202\"},{\"@search.score\":1.0,\"HotelId\":\"2203\"},{\"@search.score\":1.0,\"HotelId\":\"2204\"},{\"@search.score\":1.0,\"HotelId\":\"2205\"},{\"@search.score\":1.0,\"HotelId\":\"2206\"},{\"@search.score\":1.0,\"HotelId\":\"2207\"},{\"@search.score\":1.0,\"HotelId\":\"2208\"},{\"@search.score\":1.0,\"HotelId\":\"2209\"},{\"@search.score\":1.0,\"HotelId\":\"221\"},{\"@search.score\":1.0,\"HotelId\":\"2210\"},{\"@search.score\":1.0,\"HotelId\":\"2211\"},{\"@search.score\":1.0,\"HotelId\":\"2212\"},{\"@search.score\":1.0,\"HotelId\":\"2213\"},{\"@search.score\":1.0,\"HotelId\":\"2214\"},{\"@search.score\":1.0,\"HotelId\":\"2215\"},{\"@search.score\":1.0,\"HotelId\":\"2216\"},{\"@search.score\":1.0,\"HotelId\":\"2217\"},{\"@search.score\":1.0,\"HotelId\":\"2218\"},{\"@search.score\":1.0,\"HotelId\":\"2219\"},{\"@search.score\":1.0,\"HotelId\":\"222\"},{\"@search.score\":1.0,\"HotelId\":\"2220\"},{\"@search.score\":1.0,\"HotelId\":\"2221\"},{\"@search.score\":1.0,\"HotelId\":\"2222\"},{\"@search.score\":1.0,\"HotelId\":\"2223\"},{\"@search.score\":1.0,\"HotelId\":\"2224\"},{\"@search.score\":1.0,\"HotelId\":\"2225\"},{\"@search.score\":1.0,\"HotelId\":\"2226\"},{\"@search.score\":1.0,\"HotelId\":\"2227\"},{\"@search.score\":1.0,\"HotelId\":\"2228\"},{\"@search.score\":1.0,\"HotelId\":\"2229\"},{\"@search.score\":1.0,\"HotelId\":\"223\"},{\"@search.score\":1.0,\"HotelId\":\"2230\"},{\"@search.score\":1.0,\"HotelId\":\"2231\"},{\"@search.score\":1.0,\"HotelId\":\"2232\"},{\"@search.score\":1.0,\"HotelId\":\"2233\"},{\"@search.score\":1.0,\"HotelId\":\"2234\"},{\"@search.score\":1.0,\"HotelId\":\"2235\"},{\"@search.score\":1.0,\"HotelId\":\"2236\"},{\"@search.score\":1.0,\"HotelId\":\"2237\"},{\"@search.score\":1.0,\"HotelId\":\"2238\"},{\"@search.score\":1.0,\"HotelId\":\"2239\"},{\"@search.score\":1.0,\"HotelId\":\"224\"},{\"@search.score\":1.0,\"HotelId\":\"2240\"},{\"@search.score\":1.0,\"HotelId\":\"2241\"},{\"@search.score\":1.0,\"HotelId\":\"2242\"},{\"@search.score\":1.0,\"HotelId\":\"2243\"},{\"@search.score\":1.0,\"HotelId\":\"2244\"},{\"@search.score\":1.0,\"HotelId\":\"2245\"},{\"@search.score\":1.0,\"HotelId\":\"2246\"},{\"@search.score\":1.0,\"HotelId\":\"2247\"},{\"@search.score\":1.0,\"HotelId\":\"2248\"},{\"@search.score\":1.0,\"HotelId\":\"2249\"},{\"@search.score\":1.0,\"HotelId\":\"225\"},{\"@search.score\":1.0,\"HotelId\":\"2250\"},{\"@search.score\":1.0,\"HotelId\":\"2251\"},{\"@search.score\":1.0,\"HotelId\":\"2252\"},{\"@search.score\":1.0,\"HotelId\":\"2253\"},{\"@search.score\":1.0,\"HotelId\":\"2254\"},{\"@search.score\":1.0,\"HotelId\":\"2255\"},{\"@search.score\":1.0,\"HotelId\":\"2256\"},{\"@search.score\":1.0,\"HotelId\":\"2257\"},{\"@search.score\":1.0,\"HotelId\":\"2258\"},{\"@search.score\":1.0,\"HotelId\":\"2259\"},{\"@search.score\":1.0,\"HotelId\":\"226\"},{\"@search.score\":1.0,\"HotelId\":\"2260\"},{\"@search.score\":1.0,\"HotelId\":\"2261\"},{\"@search.score\":1.0,\"HotelId\":\"2262\"},{\"@search.score\":1.0,\"HotelId\":\"2263\"},{\"@search.score\":1.0,\"HotelId\":\"2264\"},{\"@search.score\":1.0,\"HotelId\":\"2265\"},{\"@search.score\":1.0,\"HotelId\":\"2266\"},{\"@search.score\":1.0,\"HotelId\":\"2267\"},{\"@search.score\":1.0,\"HotelId\":\"2268\"},{\"@search.score\":1.0,\"HotelId\":\"2269\"},{\"@search.score\":1.0,\"HotelId\":\"227\"},{\"@search.score\":1.0,\"HotelId\":\"2270\"},{\"@search.score\":1.0,\"HotelId\":\"2271\"},{\"@search.score\":1.0,\"HotelId\":\"2272\"},{\"@search.score\":1.0,\"HotelId\":\"2273\"},{\"@search.score\":1.0,\"HotelId\":\"2274\"},{\"@search.score\":1.0,\"HotelId\":\"2275\"},{\"@search.score\":1.0,\"HotelId\":\"2276\"},{\"@search.score\":1.0,\"HotelId\":\"2277\"},{\"@search.score\":1.0,\"HotelId\":\"2278\"},{\"@search.score\":1.0,\"HotelId\":\"2279\"},{\"@search.score\":1.0,\"HotelId\":\"228\"},{\"@search.score\":1.0,\"HotelId\":\"2280\"},{\"@search.score\":1.0,\"HotelId\":\"2281\"},{\"@search.score\":1.0,\"HotelId\":\"2282\"},{\"@search.score\":1.0,\"HotelId\":\"2283\"},{\"@search.score\":1.0,\"HotelId\":\"2284\"},{\"@search.score\":1.0,\"HotelId\":\"2285\"},{\"@search.score\":1.0,\"HotelId\":\"2286\"},{\"@search.score\":1.0,\"HotelId\":\"2287\"},{\"@search.score\":1.0,\"HotelId\":\"2288\"},{\"@search.score\":1.0,\"HotelId\":\"2289\"},{\"@search.score\":1.0,\"HotelId\":\"229\"},{\"@search.score\":1.0,\"HotelId\":\"2290\"},{\"@search.score\":1.0,\"HotelId\":\"2291\"},{\"@search.score\":1.0,\"HotelId\":\"2292\"},{\"@search.score\":1.0,\"HotelId\":\"2293\"},{\"@search.score\":1.0,\"HotelId\":\"2294\"},{\"@search.score\":1.0,\"HotelId\":\"2295\"},{\"@search.score\":1.0,\"HotelId\":\"2296\"},{\"@search.score\":1.0,\"HotelId\":\"2297\"},{\"@search.score\":1.0,\"HotelId\":\"2298\"},{\"@search.score\":1.0,\"HotelId\":\"2299\"},{\"@search.score\":1.0,\"HotelId\":\"23\"},{\"@search.score\":1.0,\"HotelId\":\"230\"},{\"@search.score\":1.0,\"HotelId\":\"2300\"},{\"@search.score\":1.0,\"HotelId\":\"2301\"},{\"@search.score\":1.0,\"HotelId\":\"2302\"},{\"@search.score\":1.0,\"HotelId\":\"2303\"},{\"@search.score\":1.0,\"HotelId\":\"2304\"},{\"@search.score\":1.0,\"HotelId\":\"2305\"},{\"@search.score\":1.0,\"HotelId\":\"2306\"},{\"@search.score\":1.0,\"HotelId\":\"2307\"},{\"@search.score\":1.0,\"HotelId\":\"2308\"},{\"@search.score\":1.0,\"HotelId\":\"2309\"},{\"@search.score\":1.0,\"HotelId\":\"231\"},{\"@search.score\":1.0,\"HotelId\":\"2310\"},{\"@search.score\":1.0,\"HotelId\":\"2311\"},{\"@search.score\":1.0,\"HotelId\":\"2312\"},{\"@search.score\":1.0,\"HotelId\":\"2313\"},{\"@search.score\":1.0,\"HotelId\":\"2314\"},{\"@search.score\":1.0,\"HotelId\":\"2315\"},{\"@search.score\":1.0,\"HotelId\":\"2316\"},{\"@search.score\":1.0,\"HotelId\":\"2317\"},{\"@search.score\":1.0,\"HotelId\":\"2318\"},{\"@search.score\":1.0,\"HotelId\":\"2319\"},{\"@search.score\":1.0,\"HotelId\":\"232\"},{\"@search.score\":1.0,\"HotelId\":\"2320\"},{\"@search.score\":1.0,\"HotelId\":\"2321\"},{\"@search.score\":1.0,\"HotelId\":\"2322\"},{\"@search.score\":1.0,\"HotelId\":\"2323\"},{\"@search.score\":1.0,\"HotelId\":\"2324\"},{\"@search.score\":1.0,\"HotelId\":\"2325\"},{\"@search.score\":1.0,\"HotelId\":\"2326\"},{\"@search.score\":1.0,\"HotelId\":\"2327\"},{\"@search.score\":1.0,\"HotelId\":\"2328\"},{\"@search.score\":1.0,\"HotelId\":\"2329\"},{\"@search.score\":1.0,\"HotelId\":\"233\"},{\"@search.score\":1.0,\"HotelId\":\"2330\"},{\"@search.score\":1.0,\"HotelId\":\"2331\"},{\"@search.score\":1.0,\"HotelId\":\"2332\"},{\"@search.score\":1.0,\"HotelId\":\"2333\"},{\"@search.score\":1.0,\"HotelId\":\"2334\"},{\"@search.score\":1.0,\"HotelId\":\"2335\"},{\"@search.score\":1.0,\"HotelId\":\"2336\"},{\"@search.score\":1.0,\"HotelId\":\"2337\"},{\"@search.score\":1.0,\"HotelId\":\"2338\"},{\"@search.score\":1.0,\"HotelId\":\"2339\"},{\"@search.score\":1.0,\"HotelId\":\"234\"},{\"@search.score\":1.0,\"HotelId\":\"2340\"},{\"@search.score\":1.0,\"HotelId\":\"2341\"},{\"@search.score\":1.0,\"HotelId\":\"2342\"},{\"@search.score\":1.0,\"HotelId\":\"2343\"},{\"@search.score\":1.0,\"HotelId\":\"2344\"},{\"@search.score\":1.0,\"HotelId\":\"2345\"},{\"@search.score\":1.0,\"HotelId\":\"2346\"},{\"@search.score\":1.0,\"HotelId\":\"2347\"},{\"@search.score\":1.0,\"HotelId\":\"2348\"},{\"@search.score\":1.0,\"HotelId\":\"2349\"},{\"@search.score\":1.0,\"HotelId\":\"235\"},{\"@search.score\":1.0,\"HotelId\":\"2350\"},{\"@search.score\":1.0,\"HotelId\":\"2351\"},{\"@search.score\":1.0,\"HotelId\":\"2352\"},{\"@search.score\":1.0,\"HotelId\":\"2353\"},{\"@search.score\":1.0,\"HotelId\":\"2354\"},{\"@search.score\":1.0,\"HotelId\":\"2355\"},{\"@search.score\":1.0,\"HotelId\":\"2356\"},{\"@search.score\":1.0,\"HotelId\":\"2357\"},{\"@search.score\":1.0,\"HotelId\":\"2358\"},{\"@search.score\":1.0,\"HotelId\":\"2359\"},{\"@search.score\":1.0,\"HotelId\":\"236\"},{\"@search.score\":1.0,\"HotelId\":\"2360\"},{\"@search.score\":1.0,\"HotelId\":\"2361\"},{\"@search.score\":1.0,\"HotelId\":\"2362\"},{\"@search.score\":1.0,\"HotelId\":\"2363\"},{\"@search.score\":1.0,\"HotelId\":\"2364\"},{\"@search.score\":1.0,\"HotelId\":\"2365\"},{\"@search.score\":1.0,\"HotelId\":\"2366\"},{\"@search.score\":1.0,\"HotelId\":\"2367\"},{\"@search.score\":1.0,\"HotelId\":\"2368\"},{\"@search.score\":1.0,\"HotelId\":\"2369\"},{\"@search.score\":1.0,\"HotelId\":\"237\"},{\"@search.score\":1.0,\"HotelId\":\"2370\"},{\"@search.score\":1.0,\"HotelId\":\"2371\"},{\"@search.score\":1.0,\"HotelId\":\"2372\"},{\"@search.score\":1.0,\"HotelId\":\"2373\"},{\"@search.score\":1.0,\"HotelId\":\"2374\"},{\"@search.score\":1.0,\"HotelId\":\"2375\"},{\"@search.score\":1.0,\"HotelId\":\"2376\"},{\"@search.score\":1.0,\"HotelId\":\"2377\"},{\"@search.score\":1.0,\"HotelId\":\"2378\"},{\"@search.score\":1.0,\"HotelId\":\"2379\"},{\"@search.score\":1.0,\"HotelId\":\"238\"},{\"@search.score\":1.0,\"HotelId\":\"2380\"},{\"@search.score\":1.0,\"HotelId\":\"2381\"},{\"@search.score\":1.0,\"HotelId\":\"2382\"},{\"@search.score\":1.0,\"HotelId\":\"2383\"},{\"@search.score\":1.0,\"HotelId\":\"2384\"},{\"@search.score\":1.0,\"HotelId\":\"2385\"},{\"@search.score\":1.0,\"HotelId\":\"2386\"},{\"@search.score\":1.0,\"HotelId\":\"2387\"},{\"@search.score\":1.0,\"HotelId\":\"2388\"},{\"@search.score\":1.0,\"HotelId\":\"2389\"},{\"@search.score\":1.0,\"HotelId\":\"239\"},{\"@search.score\":1.0,\"HotelId\":\"2390\"},{\"@search.score\":1.0,\"HotelId\":\"2391\"},{\"@search.score\":1.0,\"HotelId\":\"2392\"},{\"@search.score\":1.0,\"HotelId\":\"2393\"},{\"@search.score\":1.0,\"HotelId\":\"2394\"},{\"@search.score\":1.0,\"HotelId\":\"2395\"},{\"@search.score\":1.0,\"HotelId\":\"2396\"},{\"@search.score\":1.0,\"HotelId\":\"2397\"},{\"@search.score\":1.0,\"HotelId\":\"2398\"},{\"@search.score\":1.0,\"HotelId\":\"2399\"},{\"@search.score\":1.0,\"HotelId\":\"24\"},{\"@search.score\":1.0,\"HotelId\":\"240\"},{\"@search.score\":1.0,\"HotelId\":\"2400\"},{\"@search.score\":1.0,\"HotelId\":\"2401\"},{\"@search.score\":1.0,\"HotelId\":\"2402\"},{\"@search.score\":1.0,\"HotelId\":\"2403\"},{\"@search.score\":1.0,\"HotelId\":\"2404\"},{\"@search.score\":1.0,\"HotelId\":\"2405\"},{\"@search.score\":1.0,\"HotelId\":\"2406\"},{\"@search.score\":1.0,\"HotelId\":\"2407\"},{\"@search.score\":1.0,\"HotelId\":\"2408\"},{\"@search.score\":1.0,\"HotelId\":\"2409\"},{\"@search.score\":1.0,\"HotelId\":\"241\"},{\"@search.score\":1.0,\"HotelId\":\"2410\"},{\"@search.score\":1.0,\"HotelId\":\"2411\"},{\"@search.score\":1.0,\"HotelId\":\"2412\"},{\"@search.score\":1.0,\"HotelId\":\"2413\"},{\"@search.score\":1.0,\"HotelId\":\"2414\"},{\"@search.score\":1.0,\"HotelId\":\"2415\"},{\"@search.score\":1.0,\"HotelId\":\"2416\"},{\"@search.score\":1.0,\"HotelId\":\"2417\"},{\"@search.score\":1.0,\"HotelId\":\"2418\"},{\"@search.score\":1.0,\"HotelId\":\"2419\"},{\"@search.score\":1.0,\"HotelId\":\"242\"},{\"@search.score\":1.0,\"HotelId\":\"2420\"},{\"@search.score\":1.0,\"HotelId\":\"2421\"},{\"@search.score\":1.0,\"HotelId\":\"2422\"},{\"@search.score\":1.0,\"HotelId\":\"2423\"},{\"@search.score\":1.0,\"HotelId\":\"2424\"},{\"@search.score\":1.0,\"HotelId\":\"2425\"},{\"@search.score\":1.0,\"HotelId\":\"2426\"},{\"@search.score\":1.0,\"HotelId\":\"2427\"},{\"@search.score\":1.0,\"HotelId\":\"2428\"},{\"@search.score\":1.0,\"HotelId\":\"2429\"},{\"@search.score\":1.0,\"HotelId\":\"243\"},{\"@search.score\":1.0,\"HotelId\":\"2430\"},{\"@search.score\":1.0,\"HotelId\":\"2431\"},{\"@search.score\":1.0,\"HotelId\":\"2432\"},{\"@search.score\":1.0,\"HotelId\":\"2433\"},{\"@search.score\":1.0,\"HotelId\":\"2434\"},{\"@search.score\":1.0,\"HotelId\":\"2435\"},{\"@search.score\":1.0,\"HotelId\":\"2436\"},{\"@search.score\":1.0,\"HotelId\":\"2437\"},{\"@search.score\":1.0,\"HotelId\":\"2438\"},{\"@search.score\":1.0,\"HotelId\":\"2439\"},{\"@search.score\":1.0,\"HotelId\":\"244\"},{\"@search.score\":1.0,\"HotelId\":\"2440\"},{\"@search.score\":1.0,\"HotelId\":\"2441\"},{\"@search.score\":1.0,\"HotelId\":\"2442\"},{\"@search.score\":1.0,\"HotelId\":\"2443\"},{\"@search.score\":1.0,\"HotelId\":\"2444\"},{\"@search.score\":1.0,\"HotelId\":\"2445\"},{\"@search.score\":1.0,\"HotelId\":\"2446\"},{\"@search.score\":1.0,\"HotelId\":\"2447\"},{\"@search.score\":1.0,\"HotelId\":\"2448\"},{\"@search.score\":1.0,\"HotelId\":\"2449\"},{\"@search.score\":1.0,\"HotelId\":\"245\"},{\"@search.score\":1.0,\"HotelId\":\"2450\"},{\"@search.score\":1.0,\"HotelId\":\"2451\"},{\"@search.score\":1.0,\"HotelId\":\"2452\"},{\"@search.score\":1.0,\"HotelId\":\"2453\"},{\"@search.score\":1.0,\"HotelId\":\"2454\"},{\"@search.score\":1.0,\"HotelId\":\"2455\"},{\"@search.score\":1.0,\"HotelId\":\"2456\"},{\"@search.score\":1.0,\"HotelId\":\"2457\"},{\"@search.score\":1.0,\"HotelId\":\"2458\"},{\"@search.score\":1.0,\"HotelId\":\"2459\"},{\"@search.score\":1.0,\"HotelId\":\"246\"},{\"@search.score\":1.0,\"HotelId\":\"2460\"},{\"@search.score\":1.0,\"HotelId\":\"2461\"},{\"@search.score\":1.0,\"HotelId\":\"2462\"},{\"@search.score\":1.0,\"HotelId\":\"2463\"},{\"@search.score\":1.0,\"HotelId\":\"2464\"},{\"@search.score\":1.0,\"HotelId\":\"2465\"},{\"@search.score\":1.0,\"HotelId\":\"2466\"},{\"@search.score\":1.0,\"HotelId\":\"2467\"},{\"@search.score\":1.0,\"HotelId\":\"2468\"},{\"@search.score\":1.0,\"HotelId\":\"2469\"},{\"@search.score\":1.0,\"HotelId\":\"247\"},{\"@search.score\":1.0,\"HotelId\":\"2470\"},{\"@search.score\":1.0,\"HotelId\":\"2471\"},{\"@search.score\":1.0,\"HotelId\":\"2472\"},{\"@search.score\":1.0,\"HotelId\":\"2473\"},{\"@search.score\":1.0,\"HotelId\":\"2474\"},{\"@search.score\":1.0,\"HotelId\":\"2475\"},{\"@search.score\":1.0,\"HotelId\":\"2476\"},{\"@search.score\":1.0,\"HotelId\":\"2477\"},{\"@search.score\":1.0,\"HotelId\":\"2478\"},{\"@search.score\":1.0,\"HotelId\":\"2479\"},{\"@search.score\":1.0,\"HotelId\":\"248\"},{\"@search.score\":1.0,\"HotelId\":\"2480\"},{\"@search.score\":1.0,\"HotelId\":\"2481\"},{\"@search.score\":1.0,\"HotelId\":\"2482\"},{\"@search.score\":1.0,\"HotelId\":\"2483\"},{\"@search.score\":1.0,\"HotelId\":\"2484\"},{\"@search.score\":1.0,\"HotelId\":\"2485\"},{\"@search.score\":1.0,\"HotelId\":\"2486\"},{\"@search.score\":1.0,\"HotelId\":\"2487\"},{\"@search.score\":1.0,\"HotelId\":\"2488\"},{\"@search.score\":1.0,\"HotelId\":\"2489\"},{\"@search.score\":1.0,\"HotelId\":\"249\"},{\"@search.score\":1.0,\"HotelId\":\"2490\"},{\"@search.score\":1.0,\"HotelId\":\"2491\"},{\"@search.score\":1.0,\"HotelId\":\"2492\"},{\"@search.score\":1.0,\"HotelId\":\"2493\"},{\"@search.score\":1.0,\"HotelId\":\"2494\"},{\"@search.score\":1.0,\"HotelId\":\"2495\"},{\"@search.score\":1.0,\"HotelId\":\"2496\"},{\"@search.score\":1.0,\"HotelId\":\"2497\"},{\"@search.score\":1.0,\"HotelId\":\"2498\"},{\"@search.score\":1.0,\"HotelId\":\"2499\"},{\"@search.score\":1.0,\"HotelId\":\"25\"},{\"@search.score\":1.0,\"HotelId\":\"250\"},{\"@search.score\":1.0,\"HotelId\":\"2500\"},{\"@search.score\":1.0,\"HotelId\":\"2501\"},{\"@search.score\":1.0,\"HotelId\":\"2502\"},{\"@search.score\":1.0,\"HotelId\":\"2503\"},{\"@search.score\":1.0,\"HotelId\":\"2504\"},{\"@search.score\":1.0,\"HotelId\":\"2505\"},{\"@search.score\":1.0,\"HotelId\":\"2506\"},{\"@search.score\":1.0,\"HotelId\":\"2507\"},{\"@search.score\":1.0,\"HotelId\":\"2508\"},{\"@search.score\":1.0,\"HotelId\":\"2509\"},{\"@search.score\":1.0,\"HotelId\":\"251\"},{\"@search.score\":1.0,\"HotelId\":\"2510\"},{\"@search.score\":1.0,\"HotelId\":\"2511\"},{\"@search.score\":1.0,\"HotelId\":\"2512\"},{\"@search.score\":1.0,\"HotelId\":\"2513\"},{\"@search.score\":1.0,\"HotelId\":\"2514\"},{\"@search.score\":1.0,\"HotelId\":\"2515\"},{\"@search.score\":1.0,\"HotelId\":\"2516\"},{\"@search.score\":1.0,\"HotelId\":\"2517\"},{\"@search.score\":1.0,\"HotelId\":\"2518\"},{\"@search.score\":1.0,\"HotelId\":\"2519\"},{\"@search.score\":1.0,\"HotelId\":\"252\"},{\"@search.score\":1.0,\"HotelId\":\"2520\"},{\"@search.score\":1.0,\"HotelId\":\"2521\"},{\"@search.score\":1.0,\"HotelId\":\"2522\"},{\"@search.score\":1.0,\"HotelId\":\"2523\"},{\"@search.score\":1.0,\"HotelId\":\"2524\"},{\"@search.score\":1.0,\"HotelId\":\"2525\"},{\"@search.score\":1.0,\"HotelId\":\"2526\"},{\"@search.score\":1.0,\"HotelId\":\"2527\"},{\"@search.score\":1.0,\"HotelId\":\"2528\"},{\"@search.score\":1.0,\"HotelId\":\"2529\"},{\"@search.score\":1.0,\"HotelId\":\"253\"},{\"@search.score\":1.0,\"HotelId\":\"2530\"},{\"@search.score\":1.0,\"HotelId\":\"2531\"},{\"@search.score\":1.0,\"HotelId\":\"2532\"},{\"@search.score\":1.0,\"HotelId\":\"2533\"},{\"@search.score\":1.0,\"HotelId\":\"2534\"},{\"@search.score\":1.0,\"HotelId\":\"2535\"},{\"@search.score\":1.0,\"HotelId\":\"2536\"},{\"@search.score\":1.0,\"HotelId\":\"2537\"},{\"@search.score\":1.0,\"HotelId\":\"2538\"},{\"@search.score\":1.0,\"HotelId\":\"2539\"},{\"@search.score\":1.0,\"HotelId\":\"254\"},{\"@search.score\":1.0,\"HotelId\":\"2540\"},{\"@search.score\":1.0,\"HotelId\":\"2541\"},{\"@search.score\":1.0,\"HotelId\":\"2542\"},{\"@search.score\":1.0,\"HotelId\":\"2543\"},{\"@search.score\":1.0,\"HotelId\":\"2544\"},{\"@search.score\":1.0,\"HotelId\":\"2545\"},{\"@search.score\":1.0,\"HotelId\":\"2546\"},{\"@search.score\":1.0,\"HotelId\":\"2547\"},{\"@search.score\":1.0,\"HotelId\":\"2548\"},{\"@search.score\":1.0,\"HotelId\":\"2549\"},{\"@search.score\":1.0,\"HotelId\":\"255\"},{\"@search.score\":1.0,\"HotelId\":\"2550\"},{\"@search.score\":1.0,\"HotelId\":\"2551\"},{\"@search.score\":1.0,\"HotelId\":\"2552\"},{\"@search.score\":1.0,\"HotelId\":\"2553\"},{\"@search.score\":1.0,\"HotelId\":\"2554\"},{\"@search.score\":1.0,\"HotelId\":\"2555\"},{\"@search.score\":1.0,\"HotelId\":\"2556\"},{\"@search.score\":1.0,\"HotelId\":\"2557\"},{\"@search.score\":1.0,\"HotelId\":\"2558\"},{\"@search.score\":1.0,\"HotelId\":\"2559\"},{\"@search.score\":1.0,\"HotelId\":\"256\"},{\"@search.score\":1.0,\"HotelId\":\"2560\"},{\"@search.score\":1.0,\"HotelId\":\"2561\"},{\"@search.score\":1.0,\"HotelId\":\"2562\"},{\"@search.score\":1.0,\"HotelId\":\"2563\"},{\"@search.score\":1.0,\"HotelId\":\"2564\"},{\"@search.score\":1.0,\"HotelId\":\"2565\"},{\"@search.score\":1.0,\"HotelId\":\"2566\"},{\"@search.score\":1.0,\"HotelId\":\"2567\"},{\"@search.score\":1.0,\"HotelId\":\"2568\"},{\"@search.score\":1.0,\"HotelId\":\"2569\"},{\"@search.score\":1.0,\"HotelId\":\"257\"},{\"@search.score\":1.0,\"HotelId\":\"2570\"},{\"@search.score\":1.0,\"HotelId\":\"2571\"},{\"@search.score\":1.0,\"HotelId\":\"2572\"},{\"@search.score\":1.0,\"HotelId\":\"2573\"},{\"@search.score\":1.0,\"HotelId\":\"2574\"},{\"@search.score\":1.0,\"HotelId\":\"2575\"},{\"@search.score\":1.0,\"HotelId\":\"2576\"},{\"@search.score\":1.0,\"HotelId\":\"2577\"},{\"@search.score\":1.0,\"HotelId\":\"2578\"},{\"@search.score\":1.0,\"HotelId\":\"2579\"},{\"@search.score\":1.0,\"HotelId\":\"258\"},{\"@search.score\":1.0,\"HotelId\":\"2580\"},{\"@search.score\":1.0,\"HotelId\":\"2581\"},{\"@search.score\":1.0,\"HotelId\":\"2582\"},{\"@search.score\":1.0,\"HotelId\":\"2583\"},{\"@search.score\":1.0,\"HotelId\":\"2584\"},{\"@search.score\":1.0,\"HotelId\":\"2585\"},{\"@search.score\":1.0,\"HotelId\":\"2586\"},{\"@search.score\":1.0,\"HotelId\":\"2587\"},{\"@search.score\":1.0,\"HotelId\":\"2588\"},{\"@search.score\":1.0,\"HotelId\":\"2589\"},{\"@search.score\":1.0,\"HotelId\":\"259\"},{\"@search.score\":1.0,\"HotelId\":\"2590\"},{\"@search.score\":1.0,\"HotelId\":\"2591\"},{\"@search.score\":1.0,\"HotelId\":\"2592\"},{\"@search.score\":1.0,\"HotelId\":\"2593\"},{\"@search.score\":1.0,\"HotelId\":\"2594\"},{\"@search.score\":1.0,\"HotelId\":\"2595\"},{\"@search.score\":1.0,\"HotelId\":\"2596\"},{\"@search.score\":1.0,\"HotelId\":\"2597\"},{\"@search.score\":1.0,\"HotelId\":\"2598\"},{\"@search.score\":1.0,\"HotelId\":\"2599\"},{\"@search.score\":1.0,\"HotelId\":\"26\"},{\"@search.score\":1.0,\"HotelId\":\"260\"},{\"@search.score\":1.0,\"HotelId\":\"2600\"},{\"@search.score\":1.0,\"HotelId\":\"2601\"},{\"@search.score\":1.0,\"HotelId\":\"2602\"},{\"@search.score\":1.0,\"HotelId\":\"2603\"},{\"@search.score\":1.0,\"HotelId\":\"2604\"},{\"@search.score\":1.0,\"HotelId\":\"2605\"},{\"@search.score\":1.0,\"HotelId\":\"2606\"},{\"@search.score\":1.0,\"HotelId\":\"2607\"},{\"@search.score\":1.0,\"HotelId\":\"2608\"},{\"@search.score\":1.0,\"HotelId\":\"2609\"},{\"@search.score\":1.0,\"HotelId\":\"261\"},{\"@search.score\":1.0,\"HotelId\":\"2610\"},{\"@search.score\":1.0,\"HotelId\":\"2611\"},{\"@search.score\":1.0,\"HotelId\":\"2612\"},{\"@search.score\":1.0,\"HotelId\":\"2613\"},{\"@search.score\":1.0,\"HotelId\":\"2614\"},{\"@search.score\":1.0,\"HotelId\":\"2615\"},{\"@search.score\":1.0,\"HotelId\":\"2616\"},{\"@search.score\":1.0,\"HotelId\":\"2617\"},{\"@search.score\":1.0,\"HotelId\":\"2618\"},{\"@search.score\":1.0,\"HotelId\":\"2619\"},{\"@search.score\":1.0,\"HotelId\":\"262\"},{\"@search.score\":1.0,\"HotelId\":\"2620\"},{\"@search.score\":1.0,\"HotelId\":\"2621\"},{\"@search.score\":1.0,\"HotelId\":\"2622\"},{\"@search.score\":1.0,\"HotelId\":\"2623\"},{\"@search.score\":1.0,\"HotelId\":\"2624\"},{\"@search.score\":1.0,\"HotelId\":\"2625\"},{\"@search.score\":1.0,\"HotelId\":\"2626\"},{\"@search.score\":1.0,\"HotelId\":\"2627\"},{\"@search.score\":1.0,\"HotelId\":\"2628\"},{\"@search.score\":1.0,\"HotelId\":\"2629\"},{\"@search.score\":1.0,\"HotelId\":\"263\"},{\"@search.score\":1.0,\"HotelId\":\"2630\"},{\"@search.score\":1.0,\"HotelId\":\"2631\"},{\"@search.score\":1.0,\"HotelId\":\"2632\"},{\"@search.score\":1.0,\"HotelId\":\"2633\"},{\"@search.score\":1.0,\"HotelId\":\"2634\"},{\"@search.score\":1.0,\"HotelId\":\"2635\"},{\"@search.score\":1.0,\"HotelId\":\"2636\"},{\"@search.score\":1.0,\"HotelId\":\"2637\"},{\"@search.score\":1.0,\"HotelId\":\"2638\"},{\"@search.score\":1.0,\"HotelId\":\"2639\"},{\"@search.score\":1.0,\"HotelId\":\"264\"},{\"@search.score\":1.0,\"HotelId\":\"2640\"},{\"@search.score\":1.0,\"HotelId\":\"2641\"},{\"@search.score\":1.0,\"HotelId\":\"2642\"},{\"@search.score\":1.0,\"HotelId\":\"2643\"},{\"@search.score\":1.0,\"HotelId\":\"2644\"},{\"@search.score\":1.0,\"HotelId\":\"2645\"},{\"@search.score\":1.0,\"HotelId\":\"2646\"},{\"@search.score\":1.0,\"HotelId\":\"2647\"},{\"@search.score\":1.0,\"HotelId\":\"2648\"},{\"@search.score\":1.0,\"HotelId\":\"2649\"},{\"@search.score\":1.0,\"HotelId\":\"265\"},{\"@search.score\":1.0,\"HotelId\":\"2650\"},{\"@search.score\":1.0,\"HotelId\":\"2651\"},{\"@search.score\":1.0,\"HotelId\":\"2652\"},{\"@search.score\":1.0,\"HotelId\":\"2653\"},{\"@search.score\":1.0,\"HotelId\":\"2654\"},{\"@search.score\":1.0,\"HotelId\":\"2655\"},{\"@search.score\":1.0,\"HotelId\":\"2656\"},{\"@search.score\":1.0,\"HotelId\":\"2657\"},{\"@search.score\":1.0,\"HotelId\":\"2658\"},{\"@search.score\":1.0,\"HotelId\":\"2659\"},{\"@search.score\":1.0,\"HotelId\":\"266\"},{\"@search.score\":1.0,\"HotelId\":\"2660\"},{\"@search.score\":1.0,\"HotelId\":\"2661\"},{\"@search.score\":1.0,\"HotelId\":\"2662\"},{\"@search.score\":1.0,\"HotelId\":\"2663\"},{\"@search.score\":1.0,\"HotelId\":\"2664\"},{\"@search.score\":1.0,\"HotelId\":\"2665\"},{\"@search.score\":1.0,\"HotelId\":\"2666\"},{\"@search.score\":1.0,\"HotelId\":\"2667\"},{\"@search.score\":1.0,\"HotelId\":\"2668\"},{\"@search.score\":1.0,\"HotelId\":\"2669\"},{\"@search.score\":1.0,\"HotelId\":\"267\"},{\"@search.score\":1.0,\"HotelId\":\"2670\"},{\"@search.score\":1.0,\"HotelId\":\"2671\"},{\"@search.score\":1.0,\"HotelId\":\"2672\"},{\"@search.score\":1.0,\"HotelId\":\"2673\"},{\"@search.score\":1.0,\"HotelId\":\"2674\"},{\"@search.score\":1.0,\"HotelId\":\"2675\"},{\"@search.score\":1.0,\"HotelId\":\"2676\"},{\"@search.score\":1.0,\"HotelId\":\"2677\"},{\"@search.score\":1.0,\"HotelId\":\"2678\"},{\"@search.score\":1.0,\"HotelId\":\"2679\"},{\"@search.score\":1.0,\"HotelId\":\"268\"},{\"@search.score\":1.0,\"HotelId\":\"2680\"},{\"@search.score\":1.0,\"HotelId\":\"2681\"},{\"@search.score\":1.0,\"HotelId\":\"2682\"},{\"@search.score\":1.0,\"HotelId\":\"2683\"},{\"@search.score\":1.0,\"HotelId\":\"2684\"},{\"@search.score\":1.0,\"HotelId\":\"2685\"},{\"@search.score\":1.0,\"HotelId\":\"2686\"},{\"@search.score\":1.0,\"HotelId\":\"2687\"},{\"@search.score\":1.0,\"HotelId\":\"2688\"},{\"@search.score\":1.0,\"HotelId\":\"2689\"},{\"@search.score\":1.0,\"HotelId\":\"269\"},{\"@search.score\":1.0,\"HotelId\":\"2690\"},{\"@search.score\":1.0,\"HotelId\":\"2691\"},{\"@search.score\":1.0,\"HotelId\":\"2692\"},{\"@search.score\":1.0,\"HotelId\":\"2693\"},{\"@search.score\":1.0,\"HotelId\":\"2694\"},{\"@search.score\":1.0,\"HotelId\":\"2695\"},{\"@search.score\":1.0,\"HotelId\":\"2696\"},{\"@search.score\":1.0,\"HotelId\":\"2697\"},{\"@search.score\":1.0,\"HotelId\":\"2698\"},{\"@search.score\":1.0,\"HotelId\":\"2699\"},{\"@search.score\":1.0,\"HotelId\":\"27\"},{\"@search.score\":1.0,\"HotelId\":\"270\"},{\"@search.score\":1.0,\"HotelId\":\"2700\"},{\"@search.score\":1.0,\"HotelId\":\"2701\"},{\"@search.score\":1.0,\"HotelId\":\"2702\"},{\"@search.score\":1.0,\"HotelId\":\"2703\"},{\"@search.score\":1.0,\"HotelId\":\"2704\"},{\"@search.score\":1.0,\"HotelId\":\"2705\"},{\"@search.score\":1.0,\"HotelId\":\"2706\"},{\"@search.score\":1.0,\"HotelId\":\"2707\"},{\"@search.score\":1.0,\"HotelId\":\"2708\"},{\"@search.score\":1.0,\"HotelId\":\"2709\"},{\"@search.score\":1.0,\"HotelId\":\"271\"},{\"@search.score\":1.0,\"HotelId\":\"2710\"},{\"@search.score\":1.0,\"HotelId\":\"2711\"},{\"@search.score\":1.0,\"HotelId\":\"2712\"},{\"@search.score\":1.0,\"HotelId\":\"2713\"},{\"@search.score\":1.0,\"HotelId\":\"2714\"},{\"@search.score\":1.0,\"HotelId\":\"2715\"},{\"@search.score\":1.0,\"HotelId\":\"2716\"},{\"@search.score\":1.0,\"HotelId\":\"2717\"},{\"@search.score\":1.0,\"HotelId\":\"2718\"},{\"@search.score\":1.0,\"HotelId\":\"2719\"},{\"@search.score\":1.0,\"HotelId\":\"272\"},{\"@search.score\":1.0,\"HotelId\":\"2720\"},{\"@search.score\":1.0,\"HotelId\":\"2721\"},{\"@search.score\":1.0,\"HotelId\":\"2722\"},{\"@search.score\":1.0,\"HotelId\":\"2723\"},{\"@search.score\":1.0,\"HotelId\":\"2724\"},{\"@search.score\":1.0,\"HotelId\":\"2725\"},{\"@search.score\":1.0,\"HotelId\":\"2726\"},{\"@search.score\":1.0,\"HotelId\":\"2727\"},{\"@search.score\":1.0,\"HotelId\":\"2728\"},{\"@search.score\":1.0,\"HotelId\":\"2729\"},{\"@search.score\":1.0,\"HotelId\":\"273\"},{\"@search.score\":1.0,\"HotelId\":\"2730\"},{\"@search.score\":1.0,\"HotelId\":\"2731\"},{\"@search.score\":1.0,\"HotelId\":\"2732\"},{\"@search.score\":1.0,\"HotelId\":\"2733\"},{\"@search.score\":1.0,\"HotelId\":\"2734\"},{\"@search.score\":1.0,\"HotelId\":\"2735\"},{\"@search.score\":1.0,\"HotelId\":\"2736\"},{\"@search.score\":1.0,\"HotelId\":\"2737\"},{\"@search.score\":1.0,\"HotelId\":\"2738\"},{\"@search.score\":1.0,\"HotelId\":\"2739\"},{\"@search.score\":1.0,\"HotelId\":\"274\"},{\"@search.score\":1.0,\"HotelId\":\"2740\"},{\"@search.score\":1.0,\"HotelId\":\"2741\"},{\"@search.score\":1.0,\"HotelId\":\"2742\"},{\"@search.score\":1.0,\"HotelId\":\"2743\"},{\"@search.score\":1.0,\"HotelId\":\"2744\"},{\"@search.score\":1.0,\"HotelId\":\"2745\"},{\"@search.score\":1.0,\"HotelId\":\"2746\"},{\"@search.score\":1.0,\"HotelId\":\"2747\"},{\"@search.score\":1.0,\"HotelId\":\"2748\"},{\"@search.score\":1.0,\"HotelId\":\"2749\"},{\"@search.score\":1.0,\"HotelId\":\"275\"},{\"@search.score\":1.0,\"HotelId\":\"2750\"},{\"@search.score\":1.0,\"HotelId\":\"2751\"},{\"@search.score\":1.0,\"HotelId\":\"2752\"},{\"@search.score\":1.0,\"HotelId\":\"2753\"},{\"@search.score\":1.0,\"HotelId\":\"2754\"},{\"@search.score\":1.0,\"HotelId\":\"2755\"},{\"@search.score\":1.0,\"HotelId\":\"2756\"},{\"@search.score\":1.0,\"HotelId\":\"2757\"},{\"@search.score\":1.0,\"HotelId\":\"2758\"},{\"@search.score\":1.0,\"HotelId\":\"2759\"},{\"@search.score\":1.0,\"HotelId\":\"276\"},{\"@search.score\":1.0,\"HotelId\":\"2760\"},{\"@search.score\":1.0,\"HotelId\":\"2761\"},{\"@search.score\":1.0,\"HotelId\":\"2762\"},{\"@search.score\":1.0,\"HotelId\":\"2763\"},{\"@search.score\":1.0,\"HotelId\":\"2764\"},{\"@search.score\":1.0,\"HotelId\":\"2765\"},{\"@search.score\":1.0,\"HotelId\":\"2766\"},{\"@search.score\":1.0,\"HotelId\":\"2767\"},{\"@search.score\":1.0,\"HotelId\":\"2768\"},{\"@search.score\":1.0,\"HotelId\":\"2769\"},{\"@search.score\":1.0,\"HotelId\":\"277\"},{\"@search.score\":1.0,\"HotelId\":\"2770\"},{\"@search.score\":1.0,\"HotelId\":\"2771\"},{\"@search.score\":1.0,\"HotelId\":\"2772\"},{\"@search.score\":1.0,\"HotelId\":\"2773\"},{\"@search.score\":1.0,\"HotelId\":\"2774\"},{\"@search.score\":1.0,\"HotelId\":\"2775\"},{\"@search.score\":1.0,\"HotelId\":\"2776\"},{\"@search.score\":1.0,\"HotelId\":\"2777\"},{\"@search.score\":1.0,\"HotelId\":\"2778\"},{\"@search.score\":1.0,\"HotelId\":\"2779\"},{\"@search.score\":1.0,\"HotelId\":\"278\"},{\"@search.score\":1.0,\"HotelId\":\"2780\"},{\"@search.score\":1.0,\"HotelId\":\"2781\"},{\"@search.score\":1.0,\"HotelId\":\"2782\"},{\"@search.score\":1.0,\"HotelId\":\"2783\"},{\"@search.score\":1.0,\"HotelId\":\"2784\"},{\"@search.score\":1.0,\"HotelId\":\"2785\"},{\"@search.score\":1.0,\"HotelId\":\"2786\"},{\"@search.score\":1.0,\"HotelId\":\"2787\"},{\"@search.score\":1.0,\"HotelId\":\"2788\"},{\"@search.score\":1.0,\"HotelId\":\"2789\"},{\"@search.score\":1.0,\"HotelId\":\"279\"},{\"@search.score\":1.0,\"HotelId\":\"2790\"},{\"@search.score\":1.0,\"HotelId\":\"2791\"},{\"@search.score\":1.0,\"HotelId\":\"2792\"},{\"@search.score\":1.0,\"HotelId\":\"2793\"},{\"@search.score\":1.0,\"HotelId\":\"2794\"},{\"@search.score\":1.0,\"HotelId\":\"2795\"},{\"@search.score\":1.0,\"HotelId\":\"2796\"},{\"@search.score\":1.0,\"HotelId\":\"2797\"},{\"@search.score\":1.0,\"HotelId\":\"2798\"},{\"@search.score\":1.0,\"HotelId\":\"2799\"}]}", - "x-ms-client-request-id" : "7dae9e8a-8afb-4322-9f05-633bdc15e6df", + "x-ms-client-request-id" : "57065f7f-b5fa-443e-b054-621d09f0558b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearchwithtop8de86306145bc0168fb14')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscancontinuesearchwithtop41c652249c5d8bc447884')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "676694c7-81e2-4881-b145-e5c0609ed379" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "055e9f55-e700-4c25-bd14-2c5ccce9b053" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "676694c7-81e2-4881-b145-e5c0609ed379", - "elapsed-time" : "535", + "client-request-id" : "055e9f55-e700-4c25-bd14-2c5ccce9b053", + "elapsed-time" : "514", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "676694c7-81e2-4881-b145-e5c0609ed379", + "request-id" : "055e9f55-e700-4c25-bd14-2c5ccce9b053", "StatusCode" : "204", - "x-ms-client-request-id" : "676694c7-81e2-4881-b145-e5c0609ed379", - "Date" : "Fri, 02 Apr 2021 22:34:16 GMT" + "x-ms-client-request-id" : "055e9f55-e700-4c25-bd14-2c5ccce9b053", + "Date" : "Thu, 27 May 2021 21:12:45 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscancontinuesearchwithtop8de86306145bc0168fb14" ] + "variables" : [ "hotelscancontinuesearchwithtop41c652249c5d8bc447884" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canFilter.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canFilter.json index a6cc04b8831d..86a7aaaa2204 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canFilter.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canFilter.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a28b012b-86f4-4647-8cca-f7034e523e91", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8f8a89a5-5cd0-4c57-96cd-56dc067b2a70", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1407", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a28b012b-86f4-4647-8cca-f7034e523e91", + "request-id" : "8f8a89a5-5cd0-4c57-96cd-56dc067b2a70", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:27 GMT", + "Date" : "Thu, 27 May 2021 21:12:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a28b012b-86f4-4647-8cca-f7034e523e91", - "elapsed-time" : "17", + "client-request-id" : "8f8a89a5-5cd0-4c57-96cd-56dc067b2a70", + "elapsed-time" : "8", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1407", "Body" : "{\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"5\",\"HotelName\":\"Comfy Place\",\"Description\":\"Another good hotel\",\"Description_fr\":\"Un autre bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"2012-08-12T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "a28b012b-86f4-4647-8cca-f7034e523e91", + "x-ms-client-request-id" : "8f8a89a5-5cd0-4c57-96cd-56dc067b2a70", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canFilterNonNullableType.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canFilterNonNullableType.json index 0cee75277734..c60b2afa3967 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canFilterNonNullableType.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canFilterNonNullableType.json @@ -1,108 +1,108 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('testindexcanfilternonnullabletypeb6d62222371f0baecfe')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('testindexcanfilternonnullabletype61b68382980ff381bfb')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3c6a7304-d33b-4f8e-be72-bfcc964abb4b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8118aab1-bba3-4a05-bde7-43b14495cc78", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1370", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3c6a7304-d33b-4f8e-be72-bfcc964abb4b", + "request-id" : "8118aab1-bba3-4a05-bde7-43b14495cc78", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:34:34 GMT", + "Date" : "Thu, 27 May 2021 21:13:04 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6277DCCD089\"", - "client-request-id" : "3c6a7304-d33b-4f8e-be72-bfcc964abb4b", - "elapsed-time" : "1115", + "ETag" : "W/\"0x8D9215437B8F1C2\"", + "client-request-id" : "8118aab1-bba3-4a05-bde7-43b14495cc78", + "elapsed-time" : "1451", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1459", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6277DCCD089\\\"\",\"name\":\"testindexcanfilternonnullabletypeb6d62222371f0baecfe\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"Key\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"IntValue\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Bucket\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"BucketName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Count\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "3c6a7304-d33b-4f8e-be72-bfcc964abb4b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215437B8F1C2\\\"\",\"name\":\"testindexcanfilternonnullabletype61b68382980ff381bfb\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"Key\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"IntValue\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Bucket\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"BucketName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Count\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "8118aab1-bba3-4a05-bde7-43b14495cc78", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('testindexcanfilternonnullabletypeb6d62222371f0baecfe')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('testindexcanfilternonnullabletype61b68382980ff381bfb')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('testindexcanfilternonnullabletypeb6d62222371f0baecfe')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('testindexcanfilternonnullabletype61b68382980ff381bfb')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "690f5a89-c494-403f-abc5-95d5b075a760", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b2ac0caa-8102-4eb3-bbbd-9e2ba7ff71a4", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "206", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "690f5a89-c494-403f-abc5-95d5b075a760", + "request-id" : "b2ac0caa-8102-4eb3-bbbd-9e2ba7ff71a4", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:34 GMT", + "Date" : "Thu, 27 May 2021 21:13:04 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "690f5a89-c494-403f-abc5-95d5b075a760", - "elapsed-time" : "87", + "client-request-id" : "b2ac0caa-8102-4eb3-bbbd-9e2ba7ff71a4", + "elapsed-time" : "97", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "206", "Body" : "{\"value\":[{\"key\":\"123\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"456\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"789\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "690f5a89-c494-403f-abc5-95d5b075a760", + "x-ms-client-request-id" : "b2ac0caa-8102-4eb3-bbbd-9e2ba7ff71a4", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('testindexcanfilternonnullabletypeb6d62222371f0baecfe')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('testindexcanfilternonnullabletype61b68382980ff381bfb')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "52188654-bf60-44af-bc73-682e4344cf2d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "29fecfd2-5cec-4e67-97cf-6b2471206fe5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "181", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "52188654-bf60-44af-bc73-682e4344cf2d", + "request-id" : "29fecfd2-5cec-4e67-97cf-6b2471206fe5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:38 GMT", + "Date" : "Thu, 27 May 2021 21:13:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "52188654-bf60-44af-bc73-682e4344cf2d", - "elapsed-time" : "126", + "client-request-id" : "29fecfd2-5cec-4e67-97cf-6b2471206fe5", + "elapsed-time" : "128", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "181", "Body" : "{\"value\":[{\"@search.score\":1.0,\"Key\":\"123\",\"IntValue\":0,\"Bucket\":{\"BucketName\":\"A\",\"Count\":3}},{\"@search.score\":1.0,\"Key\":\"456\",\"IntValue\":7,\"Bucket\":{\"BucketName\":\"B\",\"Count\":5}}]}", - "x-ms-client-request-id" : "52188654-bf60-44af-bc73-682e4344cf2d", + "x-ms-client-request-id" : "29fecfd2-5cec-4e67-97cf-6b2471206fe5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('testindexcanfilternonnullabletypeb6d62222371f0baecfe')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('testindexcanfilternonnullabletype61b68382980ff381bfb')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "98528ad5-45a6-4684-a2e8-04ff2e577fe3" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "56aa65b7-3d06-49e9-a913-8c4e847cd0ef" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "98528ad5-45a6-4684-a2e8-04ff2e577fe3", - "elapsed-time" : "541", + "client-request-id" : "56aa65b7-3d06-49e9-a913-8c4e847cd0ef", + "elapsed-time" : "510", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "98528ad5-45a6-4684-a2e8-04ff2e577fe3", + "request-id" : "56aa65b7-3d06-49e9-a913-8c4e847cd0ef", "StatusCode" : "204", - "x-ms-client-request-id" : "98528ad5-45a6-4684-a2e8-04ff2e577fe3", - "Date" : "Fri, 02 Apr 2021 22:34:38 GMT" + "x-ms-client-request-id" : "56aa65b7-3d06-49e9-a913-8c4e847cd0ef", + "Date" : "Thu, 27 May 2021 21:13:07 GMT" }, "Exception" : null } ], - "variables" : [ "testindexcanfilternonnullabletypeb6d62222371f0baecfe" ] + "variables" : [ "testindexcanfilternonnullabletype61b68382980ff381bfb" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canGetResultCountInSearch.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canGetResultCountInSearch.json index 170fac60f209..8c16d7bb3db9 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canGetResultCountInSearch.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canGetResultCountInSearch.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e7995c4-c256-40a6-96fa-81d1587f6a12", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b21fabae-bb90-4769-9211-aaed5e8d1ec9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "7108", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0e7995c4-c256-40a6-96fa-81d1587f6a12", + "request-id" : "b21fabae-bb90-4769-9211-aaed5e8d1ec9", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:16 GMT", + "Date" : "Thu, 27 May 2021 21:12:45 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0e7995c4-c256-40a6-96fa-81d1587f6a12", + "client-request-id" : "b21fabae-bb90-4769-9211-aaed5e8d1ec9", "elapsed-time" : "98", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "7108", "Body" : "{\"@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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"2\",\"HotelName\":\"Roach Motel\",\"Description\":\"Cheapest hotel in town. Infact, a motel.\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"3\",\"HotelName\":\"EconoStay\",\"Description\":\"Very popular hotel in town\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"4\",\"HotelName\":\"Express Rooms\",\"Description\":\"Pretty good hotel\",\"Description_fr\":\"Assez bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"1995-07-01T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"5\",\"HotelName\":\"Comfy Place\",\"Description\":\"Another good hotel\",\"Description_fr\":\"Un autre bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"2012-08-12T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"6\",\"HotelName\":null,\"Description\":\"Surprisingly expensive. Model suites have an ocean-view.\",\"Description_fr\":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.\",\"Description_fr\":\"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.\",\"Description_fr\":\"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's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.\",\"Description_fr\":\"L'h\\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'autres lieux d'int\\u00e9r\\u00eat qui font de New York l'une des villes les plus attractives et cosmopolites de l'Am\\u00e9rique.\",\"Category\":\"Boutique\",\"Tags\":[\"pool\",\"air conditioning\",\"concierge\"],\"ParkingIncluded\":false,\"SmokingAllowed\":null,\"LastRenovationDate\":\"1970-01-18T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-73.975403,40.760586],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"677 5th Ave\",\"City\":\"New York\",\"StateProvince\":\"NY\",\"PostalCode\":\"10022\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed (Cityside)\",\"Description_fr\":\"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)\",\"Description_fr\":\"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 & dryer, 24/7 support, bowling alley, fitness center and more.\",\"Description_fr\":\"\\u00c9conomisez jusqu'\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse & 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\":{\"type\":\"Point\",\"coordinates\":[-78.940483,35.90416],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"6910 Fayetteville Rd\",\"City\":\"Durham\",\"StateProvince\":\"NC\",\"PostalCode\":\"27713\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Suite, 1 King Bed (Amenities)\",\"Description_fr\":\"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)\",\"Description_fr\":\"Chambre \\u00c9conomique, 1 grand lit (Services)\",\"Type\":\"Budget Room\",\"BaseRate\":7.69,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":false,\"Tags\":[\"coffee maker\"]}]}]}", - "x-ms-client-request-id" : "0e7995c4-c256-40a6-96fa-81d1587f6a12", + "x-ms-client-request-id" : "b21fabae-bb90-4769-9211-aaed5e8d1ec9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canRoundTripNonNullableValueTypes.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canRoundTripNonNullableValueTypes.json index 14dbb2150dad..eb25abb98731 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canRoundTripNonNullableValueTypes.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canRoundTripNonNullableValueTypes.json @@ -1,108 +1,108 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('non-nullable-indexcanroundtripnonnullablevaluetypesb54322626f')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('non-nullable-indexcanroundtripnonnullablevaluetypes23621795ba')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "64c11ed8-8fcd-4abe-8688-00ab3c2e3420", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "91119771-f721-4025-819b-6ef55e3035d6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "2981", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "64c11ed8-8fcd-4abe-8688-00ab3c2e3420", + "request-id" : "91119771-f721-4025-819b-6ef55e3035d6", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:34:29 GMT", + "Date" : "Thu, 27 May 2021 21:12:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6277AB31F75\"", - "client-request-id" : "64c11ed8-8fcd-4abe-8688-00ab3c2e3420", - "elapsed-time" : "1742", + "ETag" : "W/\"0x8D92154347D2D3B\"", + "client-request-id" : "91119771-f721-4025-819b-6ef55e3035d6", + "elapsed-time" : "1470", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "3196", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6277AB31F75\\\"\",\"name\":\"non-nullable-indexcanroundtripnonnullablevaluetypesb54322626f\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"Key\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Count\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"IsEnabled\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Ratio\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"StartDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"EndDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"TopLevelBucket\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"BucketName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Count\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Buckets\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"BucketName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Count\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "64c11ed8-8fcd-4abe-8688-00ab3c2e3420", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154347D2D3B\\\"\",\"name\":\"non-nullable-indexcanroundtripnonnullablevaluetypes23621795ba\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"Key\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Count\",\"type\":\"Edm.Int64\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"IsEnabled\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Ratio\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"StartDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"EndDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"TopLevelBucket\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"BucketName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Count\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}]},{\"name\":\"Buckets\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"BucketName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Count\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "91119771-f721-4025-819b-6ef55e3035d6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('non-nullable-indexcanroundtripnonnullablevaluetypesb54322626f')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('non-nullable-indexcanroundtripnonnullablevaluetypes23621795ba')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('non-nullable-indexcanroundtripnonnullablevaluetypesb54322626f')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('non-nullable-indexcanroundtripnonnullablevaluetypes23621795ba')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "10d8e346-6149-4377-a339-275fc5fcc803", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f25508c5-7742-4fd0-b967-2945c3ad91f8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "141", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "10d8e346-6149-4377-a339-275fc5fcc803", + "request-id" : "f25508c5-7742-4fd0-b967-2945c3ad91f8", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:29 GMT", + "Date" : "Thu, 27 May 2021 21:12:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "10d8e346-6149-4377-a339-275fc5fcc803", - "elapsed-time" : "172", + "client-request-id" : "f25508c5-7742-4fd0-b967-2945c3ad91f8", + "elapsed-time" : "96", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "141", "Body" : "{\"value\":[{\"key\":\"123\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"456\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "10d8e346-6149-4377-a339-275fc5fcc803", + "x-ms-client-request-id" : "f25508c5-7742-4fd0-b967-2945c3ad91f8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('non-nullable-indexcanroundtripnonnullablevaluetypesb54322626f')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('non-nullable-indexcanroundtripnonnullablevaluetypes23621795ba')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2fd8a1f5-5a4c-4bfa-a9cb-4be703c5367c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "885562c5-4a47-4ca2-a30a-af9cb0be5738", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "434", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2fd8a1f5-5a4c-4bfa-a9cb-4be703c5367c", + "request-id" : "885562c5-4a47-4ca2-a30a-af9cb0be5738", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:32 GMT", + "Date" : "Thu, 27 May 2021 21:13:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2fd8a1f5-5a4c-4bfa-a9cb-4be703c5367c", - "elapsed-time" : "77", + "client-request-id" : "885562c5-4a47-4ca2-a30a-af9cb0be5738", + "elapsed-time" : "76", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "434", "Body" : "{\"value\":[{\"@search.score\":1.0,\"Key\":\"123\",\"Rating\":5,\"Count\":3,\"IsEnabled\":true,\"Ratio\":3.14,\"StartDate\":\"2010-05-31T23:00:00Z\",\"EndDate\":\"2010-05-31T23:00:00Z\",\"TopLevelBucket\":{\"BucketName\":\"A\",\"Count\":12},\"Buckets\":[{\"BucketName\":\"B\",\"Count\":20},{\"BucketName\":\"C\",\"Count\":7}]},{\"@search.score\":1.0,\"Key\":\"456\",\"Rating\":0,\"Count\":0,\"IsEnabled\":false,\"Ratio\":0.0,\"StartDate\":null,\"EndDate\":null,\"TopLevelBucket\":null,\"Buckets\":[]}]}", - "x-ms-client-request-id" : "2fd8a1f5-5a4c-4bfa-a9cb-4be703c5367c", + "x-ms-client-request-id" : "885562c5-4a47-4ca2-a30a-af9cb0be5738", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('non-nullable-indexcanroundtripnonnullablevaluetypesb54322626f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('non-nullable-indexcanroundtripnonnullablevaluetypes23621795ba')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b9fd059c-97b1-4837-b6fc-11327da4ff54" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bb8ebd30-7f8a-448d-9b83-b7df670f4438" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b9fd059c-97b1-4837-b6fc-11327da4ff54", - "elapsed-time" : "570", + "client-request-id" : "bb8ebd30-7f8a-448d-9b83-b7df670f4438", + "elapsed-time" : "476", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "b9fd059c-97b1-4837-b6fc-11327da4ff54", + "request-id" : "bb8ebd30-7f8a-448d-9b83-b7df670f4438", "StatusCode" : "204", - "x-ms-client-request-id" : "b9fd059c-97b1-4837-b6fc-11327da4ff54", - "Date" : "Fri, 02 Apr 2021 22:34:33 GMT" + "x-ms-client-request-id" : "bb8ebd30-7f8a-448d-9b83-b7df670f4438", + "Date" : "Thu, 27 May 2021 21:13:02 GMT" }, "Exception" : null } ], - "variables" : [ "non-nullable-indexcanroundtripnonnullablevaluetypesb54322626f" ] + "variables" : [ "non-nullable-indexcanroundtripnonnullablevaluetypes23621795ba" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchDynamicDocuments.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchDynamicDocuments.json index 6e3574c75f64..c35fe11e6ef2 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchDynamicDocuments.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchDynamicDocuments.json @@ -1,108 +1,108 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchdynamicdocuments11169429c4e9ea2d6b0f')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchdynamicdocumentsbc192749067ff3304529')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "15abccde-ddf4-4a7b-b7a2-dc393bbe8314", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3630310b-265e-4e12-8103-fd27cd0363ec", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6492", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "15abccde-ddf4-4a7b-b7a2-dc393bbe8314", + "request-id" : "3630310b-265e-4e12-8103-fd27cd0363ec", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:34:04 GMT", + "Date" : "Thu, 27 May 2021 21:12:32 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6276C0056CC\"", - "client-request-id" : "15abccde-ddf4-4a7b-b7a2-dc393bbe8314", - "elapsed-time" : "1123", + "ETag" : "W/\"0x8D92154253F5270\"", + "client-request-id" : "3630310b-265e-4e12-8103-fd27cd0363ec", + "elapsed-time" : "1538", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6941", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6276C0056CC\\\"\",\"name\":\"hotelscansearchdynamicdocuments11169429c4e9ea2d6b0f\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "15abccde-ddf4-4a7b-b7a2-dc393bbe8314", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D92154253F5270\\\"\",\"name\":\"hotelscansearchdynamicdocumentsbc192749067ff3304529\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "3630310b-265e-4e12-8103-fd27cd0363ec", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscansearchdynamicdocuments11169429c4e9ea2d6b0f')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscansearchdynamicdocumentsbc192749067ff3304529')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchdynamicdocuments11169429c4e9ea2d6b0f')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchdynamicdocumentsbc192749067ff3304529')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "52f77be0-aa84-4452-95db-0b7e0200dac5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "49bd65be-e09c-47c4-a7a2-e7d4279e6943", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "642", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "52f77be0-aa84-4452-95db-0b7e0200dac5", + "request-id" : "49bd65be-e09c-47c4-a7a2-e7d4279e6943", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:05 GMT", + "Date" : "Thu, 27 May 2021 21:12:33 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "52f77be0-aa84-4452-95db-0b7e0200dac5", - "elapsed-time" : "116", + "client-request-id" : "49bd65be-e09c-47c4-a7a2-e7d4279e6943", + "elapsed-time" : "105", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "642", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"5\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"6\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"7\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"8\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"9\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"10\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "52f77be0-aa84-4452-95db-0b7e0200dac5", + "x-ms-client-request-id" : "49bd65be-e09c-47c4-a7a2-e7d4279e6943", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchdynamicdocuments11169429c4e9ea2d6b0f')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchdynamicdocumentsbc192749067ff3304529')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "71d6960e-2570-4a36-acb4-7f0133d1b03a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "63f3e66f-1893-4037-ad69-e98757e08fb5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "5607", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "71d6960e-2570-4a36-acb4-7f0133d1b03a", + "request-id" : "63f3e66f-1893-4037-ad69-e98757e08fb5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:08 GMT", + "Date" : "Thu, 27 May 2021 21:12:36 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "71d6960e-2570-4a36-acb4-7f0133d1b03a", - "elapsed-time" : "87", + "client-request-id" : "63f3e66f-1893-4037-ad69-e98757e08fb5", + "elapsed-time" : "90", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "5607", "Body" : "{\"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.\",\"Description_fr\":\"\",\"Category\":\"Luxury\",\"Tags\":[\"pool\",\"view\",\"wifi\",\"concierge\"],\"ParkingIncluded\":false,\"SmokingAllowed\":false,\"LastRenovationDate\":\"2010-06-27T00:00:00Z\",\"Rating\":5,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"2\",\"HotelName\":\"Roach Motel\",\"Description\":\"Cheapest hotel in town. Infact, a motel.\",\"Description_fr\":\"\",\"Category\":\"Budget\",\"Tags\":[\"motel\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":true,\"LastRenovationDate\":\"1982-04-28T00:00:00Z\",\"Rating\":1,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"3\",\"HotelName\":\"EconoStay\",\"Description\":\"Very popular hotel in town\",\"Description_fr\":\"\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"1995-07-01T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"4\",\"HotelName\":\"Express Rooms\",\"Description\":\"Pretty good hotel\",\"Description_fr\":\"\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"1995-07-01T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"5\",\"HotelName\":\"Comfy Place\",\"Description\":\"Another good hotel\",\"Description_fr\":\"\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"2012-08-12T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"6\",\"HotelName\":null,\"Description\":\"Surprisingly expensive. Model suites have an ocean-view.\",\"Description_fr\":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.\",\"Description_fr\":\"\",\"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.\",\"Description_fr\":\"\",\"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's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.\",\"Description_fr\":\"\",\"Category\":\"Boutique\",\"Tags\":[\"pool\",\"air conditioning\",\"concierge\"],\"ParkingIncluded\":false,\"SmokingAllowed\":null,\"LastRenovationDate\":\"1970-01-18T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-73.975403,40.760586],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"677 5th Ave\",\"City\":\"New York\",\"StateProvince\":\"NY\",\"PostalCode\":\"10022\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed (Cityside)\",\"Description_fr\":\"\",\"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)\",\"Description_fr\":\"\",\"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 & dryer, 24/7 support, bowling alley, fitness center and more.\",\"Description_fr\":\"\",\"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\":{\"type\":\"Point\",\"coordinates\":[-78.940483,35.90416],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"6910 Fayetteville Rd\",\"City\":\"Durham\",\"StateProvince\":\"NC\",\"PostalCode\":\"27713\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Suite, 1 King Bed (Amenities)\",\"Description_fr\":\"\",\"Type\":\"Suite\",\"BaseRate\":2.44,\"BedOptions\":\"1 King Bed\",\"SleepsCount\":2,\"SmokingAllowed\":true,\"Tags\":[\"coffee maker\"]},{\"Description\":\"Budget Room, 1 Queen Bed (Amenities)\",\"Description_fr\":\"\",\"Type\":\"Budget Room\",\"BaseRate\":7.69,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":false,\"Tags\":[\"coffee maker\"]}]}]}", - "x-ms-client-request-id" : "71d6960e-2570-4a36-acb4-7f0133d1b03a", + "x-ms-client-request-id" : "63f3e66f-1893-4037-ad69-e98757e08fb5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchdynamicdocuments11169429c4e9ea2d6b0f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchdynamicdocumentsbc192749067ff3304529')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5752c5a4-2c5e-4b7b-80e5-af648c03584a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "904a847f-4999-42d3-9e7b-dd9078fac5bc" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5752c5a4-2c5e-4b7b-80e5-af648c03584a", - "elapsed-time" : "570", + "client-request-id" : "904a847f-4999-42d3-9e7b-dd9078fac5bc", + "elapsed-time" : "500", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "5752c5a4-2c5e-4b7b-80e5-af648c03584a", + "request-id" : "904a847f-4999-42d3-9e7b-dd9078fac5bc", "StatusCode" : "204", - "x-ms-client-request-id" : "5752c5a4-2c5e-4b7b-80e5-af648c03584a", - "Date" : "Fri, 02 Apr 2021 22:34:08 GMT" + "x-ms-client-request-id" : "904a847f-4999-42d3-9e7b-dd9078fac5bc", + "Date" : "Thu, 27 May 2021 21:12:36 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscansearchdynamicdocuments11169429c4e9ea2d6b0f" ] + "variables" : [ "hotelscansearchdynamicdocumentsbc192749067ff3304529" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchStaticallyTypedDocuments.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchStaticallyTypedDocuments.json index f5331c0783cb..5758053a0d74 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchStaticallyTypedDocuments.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchStaticallyTypedDocuments.json @@ -1,108 +1,108 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchstaticallytypeddocuments1c2956498a278ec5')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchstaticallytypeddocuments195726169f88cb4c')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a78ea879-9d89-4f65-935e-833ff9233b41", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "659f8d98-bcb9-48e4-ae78-99087bd6389d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6496", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a78ea879-9d89-4f65-935e-833ff9233b41", + "request-id" : "659f8d98-bcb9-48e4-ae78-99087bd6389d", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:34:23 GMT", + "Date" : "Thu, 27 May 2021 21:12:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627773EE288\"", - "client-request-id" : "a78ea879-9d89-4f65-935e-833ff9233b41", - "elapsed-time" : "1082", + "ETag" : "W/\"0x8D9215431377BD4\"", + "client-request-id" : "659f8d98-bcb9-48e4-ae78-99087bd6389d", + "elapsed-time" : "1511", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6945", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627773EE288\\\"\",\"name\":\"hotelscansearchstaticallytypeddocuments1c2956498a278ec5\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "a78ea879-9d89-4f65-935e-833ff9233b41", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D9215431377BD4\\\"\",\"name\":\"hotelscansearchstaticallytypeddocuments195726169f88cb4c\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "659f8d98-bcb9-48e4-ae78-99087bd6389d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscansearchstaticallytypeddocuments1c2956498a278ec5')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscansearchstaticallytypeddocuments195726169f88cb4c')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchstaticallytypeddocuments1c2956498a278ec5')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchstaticallytypeddocuments195726169f88cb4c')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ddd6692-ff25-408e-a623-0454882332d9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7104e980-0da0-4e0b-9923-f6b80893c2fe", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "642", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6ddd6692-ff25-408e-a623-0454882332d9", + "request-id" : "7104e980-0da0-4e0b-9923-f6b80893c2fe", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:23 GMT", + "Date" : "Thu, 27 May 2021 21:12:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6ddd6692-ff25-408e-a623-0454882332d9", - "elapsed-time" : "139", + "client-request-id" : "7104e980-0da0-4e0b-9923-f6b80893c2fe", + "elapsed-time" : "155", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "642", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"5\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"6\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"7\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"8\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"9\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"10\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "6ddd6692-ff25-408e-a623-0454882332d9", + "x-ms-client-request-id" : "7104e980-0da0-4e0b-9923-f6b80893c2fe", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchstaticallytypeddocuments1c2956498a278ec5')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchstaticallytypeddocuments195726169f88cb4c')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "87fcdac1-a091-4de7-9d55-5e085f8a8ae8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6c68d65e-d9b4-4e2c-8e6f-7c0cb8f28f82", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "5607", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "87fcdac1-a091-4de7-9d55-5e085f8a8ae8", + "request-id" : "6c68d65e-d9b4-4e2c-8e6f-7c0cb8f28f82", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:27 GMT", + "Date" : "Thu, 27 May 2021 21:12:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "87fcdac1-a091-4de7-9d55-5e085f8a8ae8", - "elapsed-time" : "103", + "client-request-id" : "6c68d65e-d9b4-4e2c-8e6f-7c0cb8f28f82", + "elapsed-time" : "92", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "5607", "Body" : "{\"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.\",\"Description_fr\":\"\",\"Category\":\"Luxury\",\"Tags\":[\"pool\",\"view\",\"wifi\",\"concierge\"],\"ParkingIncluded\":false,\"SmokingAllowed\":false,\"LastRenovationDate\":\"2010-06-27T00:00:00Z\",\"Rating\":5,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"2\",\"HotelName\":\"Roach Motel\",\"Description\":\"Cheapest hotel in town. Infact, a motel.\",\"Description_fr\":\"\",\"Category\":\"Budget\",\"Tags\":[\"motel\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":true,\"LastRenovationDate\":\"1982-04-28T00:00:00Z\",\"Rating\":1,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"3\",\"HotelName\":\"EconoStay\",\"Description\":\"Very popular hotel in town\",\"Description_fr\":\"\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"1995-07-01T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"4\",\"HotelName\":\"Express Rooms\",\"Description\":\"Pretty good hotel\",\"Description_fr\":\"\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"1995-07-01T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"5\",\"HotelName\":\"Comfy Place\",\"Description\":\"Another good hotel\",\"Description_fr\":\"\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"2012-08-12T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"6\",\"HotelName\":null,\"Description\":\"Surprisingly expensive. Model suites have an ocean-view.\",\"Description_fr\":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.\",\"Description_fr\":\"\",\"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.\",\"Description_fr\":\"\",\"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's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.\",\"Description_fr\":\"\",\"Category\":\"Boutique\",\"Tags\":[\"pool\",\"air conditioning\",\"concierge\"],\"ParkingIncluded\":false,\"SmokingAllowed\":null,\"LastRenovationDate\":\"1970-01-18T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-73.975403,40.760586],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"677 5th Ave\",\"City\":\"New York\",\"StateProvince\":\"NY\",\"PostalCode\":\"10022\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed (Cityside)\",\"Description_fr\":\"\",\"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)\",\"Description_fr\":\"\",\"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 & dryer, 24/7 support, bowling alley, fitness center and more.\",\"Description_fr\":\"\",\"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\":{\"type\":\"Point\",\"coordinates\":[-78.940483,35.90416],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"6910 Fayetteville Rd\",\"City\":\"Durham\",\"StateProvince\":\"NC\",\"PostalCode\":\"27713\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Suite, 1 King Bed (Amenities)\",\"Description_fr\":\"\",\"Type\":\"Suite\",\"BaseRate\":2.44,\"BedOptions\":\"1 King Bed\",\"SleepsCount\":2,\"SmokingAllowed\":true,\"Tags\":[\"coffee maker\"]},{\"Description\":\"Budget Room, 1 Queen Bed (Amenities)\",\"Description_fr\":\"\",\"Type\":\"Budget Room\",\"BaseRate\":7.69,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":false,\"Tags\":[\"coffee maker\"]}]}]}", - "x-ms-client-request-id" : "87fcdac1-a091-4de7-9d55-5e085f8a8ae8", + "x-ms-client-request-id" : "6c68d65e-d9b4-4e2c-8e6f-7c0cb8f28f82", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchstaticallytypeddocuments1c2956498a278ec5')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchstaticallytypeddocuments195726169f88cb4c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1ea04725-3762-460b-b04c-b7689d485c9c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "beead1e0-40a2-4abe-916e-666ab490a542" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1ea04725-3762-460b-b04c-b7689d485c9c", - "elapsed-time" : "537", + "client-request-id" : "beead1e0-40a2-4abe-916e-666ab490a542", + "elapsed-time" : "504", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "1ea04725-3762-460b-b04c-b7689d485c9c", + "request-id" : "beead1e0-40a2-4abe-916e-666ab490a542", "StatusCode" : "204", - "x-ms-client-request-id" : "1ea04725-3762-460b-b04c-b7689d485c9c", - "Date" : "Fri, 02 Apr 2021 22:34:27 GMT" + "x-ms-client-request-id" : "beead1e0-40a2-4abe-916e-666ab490a542", + "Date" : "Thu, 27 May 2021 21:12:57 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscansearchstaticallytypeddocuments1c2956498a278ec5" ] + "variables" : [ "hotelscansearchstaticallytypeddocuments195726169f88cb4c" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithDateInStaticModel.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithDateInStaticModel.json index ecb9ea6a9a4a..f1d08d912772 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithDateInStaticModel.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithDateInStaticModel.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "75c17475-4f99-4943-b761-f3c16f734d2b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d0513d35-bd29-4c41-999c-09671c66a001", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "979", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "75c17475-4f99-4943-b761-f3c16f734d2b", + "request-id" : "d0513d35-bd29-4c41-999c-09671c66a001", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:38 GMT", + "Date" : "Thu, 27 May 2021 21:13:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "75c17475-4f99-4943-b761-f3c16f734d2b", - "elapsed-time" : "7", + "client-request-id" : "d0513d35-bd29-4c41-999c-09671c66a001", + "elapsed-time" : "8", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "979", "Body" : "{\"value\":[{\"@search.score\":1.6076145,\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "75c17475-4f99-4943-b761-f3c16f734d2b", + "x-ms-client-request-id" : "d0513d35-bd29-4c41-999c-09671c66a001", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithEscapedSpecialCharsInRegex.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithEscapedSpecialCharsInRegex.json index db4912a18be9..80c742f8bfa6 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithEscapedSpecialCharsInRegex.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithEscapedSpecialCharsInRegex.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1eb44d6d-8b71-4783-b163-80ec123fe6a4", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "327ebecd-d5b8-43a6-be1b-1f88a66d85ec", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1eb44d6d-8b71-4783-b163-80ec123fe6a4", + "request-id" : "327ebecd-d5b8-43a6-be1b-1f88a66d85ec", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:59 GMT", + "Date" : "Thu, 27 May 2021 21:13:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1eb44d6d-8b71-4783-b163-80ec123fe6a4", + "client-request-id" : "327ebecd-d5b8-43a6-be1b-1f88a66d85ec", "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12", "Body" : "{\"value\":[]}", - "x-ms-client-request-id" : "1eb44d6d-8b71-4783-b163-80ec123fe6a4", + "x-ms-client-request-id" : "327ebecd-d5b8-43a6-be1b-1f88a66d85ec", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithLuceneSyntax.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithLuceneSyntax.json index d53cee6baaf2..e6db2838221e 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithLuceneSyntax.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithLuceneSyntax.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5e2c3be3-a3de-44f2-8a68-7be0684d5d8d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "348b754b-d2f0-4a13-8495-58c1d0d59285", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "76", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5e2c3be3-a3de-44f2-8a68-7be0684d5d8d", + "request-id" : "348b754b-d2f0-4a13-8495-58c1d0d59285", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:59 GMT", + "Date" : "Thu, 27 May 2021 21:13:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5e2c3be3-a3de-44f2-8a68-7be0684d5d8d", - "elapsed-time" : "83", + "client-request-id" : "348b754b-d2f0-4a13-8495-58c1d0d59285", + "elapsed-time" : "94", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "76", "Body" : "{\"value\":[{\"@search.score\":1.2057109,\"HotelName\":\"Roach Motel\",\"Rating\":1}]}", - "x-ms-client-request-id" : "5e2c3be3-a3de-44f2-8a68-7be0684d5d8d", + "x-ms-client-request-id" : "348b754b-d2f0-4a13-8495-58c1d0d59285", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithMinimumCoverage.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithMinimumCoverage.json index def215b76bd0..c976c3bad371 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithMinimumCoverage.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithMinimumCoverage.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "908fa068-db4b-4472-96be-4ebf7027a584", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5c3a70d4-c5f3-4638-a983-89dd2d13959a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "7115", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "908fa068-db4b-4472-96be-4ebf7027a584", + "request-id" : "5c3a70d4-c5f3-4638-a983-89dd2d13959a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:32 GMT", + "Date" : "Thu, 27 May 2021 21:13:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "908fa068-db4b-4472-96be-4ebf7027a584", - "elapsed-time" : "11", + "client-request-id" : "5c3a70d4-c5f3-4638-a983-89dd2d13959a", + "elapsed-time" : "8", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "7115", "Body" : "{\"@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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"2\",\"HotelName\":\"Roach Motel\",\"Description\":\"Cheapest hotel in town. Infact, a motel.\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"3\",\"HotelName\":\"EconoStay\",\"Description\":\"Very popular hotel in town\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"4\",\"HotelName\":\"Express Rooms\",\"Description\":\"Pretty good hotel\",\"Description_fr\":\"Assez bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"1995-07-01T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"5\",\"HotelName\":\"Comfy Place\",\"Description\":\"Another good hotel\",\"Description_fr\":\"Un autre bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"2012-08-12T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"6\",\"HotelName\":null,\"Description\":\"Surprisingly expensive. Model suites have an ocean-view.\",\"Description_fr\":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.\",\"Description_fr\":\"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.\",\"Description_fr\":\"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's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.\",\"Description_fr\":\"L'h\\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'autres lieux d'int\\u00e9r\\u00eat qui font de New York l'une des villes les plus attractives et cosmopolites de l'Am\\u00e9rique.\",\"Category\":\"Boutique\",\"Tags\":[\"pool\",\"air conditioning\",\"concierge\"],\"ParkingIncluded\":false,\"SmokingAllowed\":null,\"LastRenovationDate\":\"1970-01-18T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-73.975403,40.760586],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"677 5th Ave\",\"City\":\"New York\",\"StateProvince\":\"NY\",\"PostalCode\":\"10022\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed (Cityside)\",\"Description_fr\":\"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)\",\"Description_fr\":\"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 & dryer, 24/7 support, bowling alley, fitness center and more.\",\"Description_fr\":\"\\u00c9conomisez jusqu'\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse & 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\":{\"type\":\"Point\",\"coordinates\":[-78.940483,35.90416],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"6910 Fayetteville Rd\",\"City\":\"Durham\",\"StateProvince\":\"NC\",\"PostalCode\":\"27713\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Suite, 1 King Bed (Amenities)\",\"Description_fr\":\"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)\",\"Description_fr\":\"Chambre \\u00c9conomique, 1 grand lit (Services)\",\"Type\":\"Budget Room\",\"BaseRate\":7.69,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":false,\"Tags\":[\"coffee maker\"]}]}]}", - "x-ms-client-request-id" : "908fa068-db4b-4472-96be-4ebf7027a584", + "x-ms-client-request-id" : "5c3a70d4-c5f3-4638-a983-89dd2d13959a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithRangeFacets.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithRangeFacets.json index f5777e2a5806..f51f00f55ba8 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithRangeFacets.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithRangeFacets.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f7569208-15d6-422d-b1e7-32d7dd233eaf", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "518315a9-7d04-4cb8-9f96-cc5ca6c0716d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "7359", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f7569208-15d6-422d-b1e7-32d7dd233eaf", + "request-id" : "518315a9-7d04-4cb8-9f96-cc5ca6c0716d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:17 GMT", + "Date" : "Thu, 27 May 2021 21:12:46 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f7569208-15d6-422d-b1e7-32d7dd233eaf", - "elapsed-time" : "143", + "client-request-id" : "518315a9-7d04-4cb8-9f96-cc5ca6c0716d", + "elapsed-time" : "164", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "7359", "Body" : "{\"@search.facets\":{\"LastRenovationDate\":[{\"count\":5,\"to\":\"2000-01-01T00:00:00.000+0000\"},{\"count\":2,\"from\":\"2000-01-01T00:00:00.000+0000\"}],\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"2\",\"HotelName\":\"Roach Motel\",\"Description\":\"Cheapest hotel in town. Infact, a motel.\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"3\",\"HotelName\":\"EconoStay\",\"Description\":\"Very popular hotel in town\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"4\",\"HotelName\":\"Express Rooms\",\"Description\":\"Pretty good hotel\",\"Description_fr\":\"Assez bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"1995-07-01T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"5\",\"HotelName\":\"Comfy Place\",\"Description\":\"Another good hotel\",\"Description_fr\":\"Un autre bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"2012-08-12T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"6\",\"HotelName\":null,\"Description\":\"Surprisingly expensive. Model suites have an ocean-view.\",\"Description_fr\":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.\",\"Description_fr\":\"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.\",\"Description_fr\":\"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's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.\",\"Description_fr\":\"L'h\\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'autres lieux d'int\\u00e9r\\u00eat qui font de New York l'une des villes les plus attractives et cosmopolites de l'Am\\u00e9rique.\",\"Category\":\"Boutique\",\"Tags\":[\"pool\",\"air conditioning\",\"concierge\"],\"ParkingIncluded\":false,\"SmokingAllowed\":null,\"LastRenovationDate\":\"1970-01-18T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-73.975403,40.760586],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"677 5th Ave\",\"City\":\"New York\",\"StateProvince\":\"NY\",\"PostalCode\":\"10022\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed (Cityside)\",\"Description_fr\":\"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)\",\"Description_fr\":\"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 & dryer, 24/7 support, bowling alley, fitness center and more.\",\"Description_fr\":\"\\u00c9conomisez jusqu'\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse & 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\":{\"type\":\"Point\",\"coordinates\":[-78.940483,35.90416],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"6910 Fayetteville Rd\",\"City\":\"Durham\",\"StateProvince\":\"NC\",\"PostalCode\":\"27713\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Suite, 1 King Bed (Amenities)\",\"Description_fr\":\"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)\",\"Description_fr\":\"Chambre \\u00c9conomique, 1 grand lit (Services)\",\"Type\":\"Budget Room\",\"BaseRate\":7.69,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":false,\"Tags\":[\"coffee maker\"]}]}]}", - "x-ms-client-request-id" : "f7569208-15d6-422d-b1e7-32d7dd233eaf", + "x-ms-client-request-id" : "518315a9-7d04-4cb8-9f96-cc5ca6c0716d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithRegex.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithRegex.json index 33cc0b0871b8..f625d6b5dfd7 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithRegex.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithRegex.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "dc2a4526-a879-46a9-b194-9b383b993e89", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2bd7407e-2299-486c-95ff-83bad7baf92d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "70", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "dc2a4526-a879-46a9-b194-9b383b993e89", + "request-id" : "2bd7407e-2299-486c-95ff-83bad7baf92d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:33 GMT", + "Date" : "Thu, 27 May 2021 21:13:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "dc2a4526-a879-46a9-b194-9b383b993e89", - "elapsed-time" : "22", + "client-request-id" : "2bd7407e-2299-486c-95ff-83bad7baf92d", + "elapsed-time" : "24", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "70", "Body" : "{\"value\":[{\"@search.score\":1.0,\"HotelName\":\"Roach Motel\",\"Rating\":1}]}", - "x-ms-client-request-id" : "dc2a4526-a879-46a9-b194-9b383b993e89", + "x-ms-client-request-id" : "2bd7407e-2299-486c-95ff-83bad7baf92d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithSearchModeAll.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithSearchModeAll.json index a0b7fd380db8..1a97842703ee 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithSearchModeAll.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithSearchModeAll.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9440abac-5b4d-491a-b248-910a1f4bd872", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4c8da7d6-4906-41e9-b21c-5520e26920a2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "502", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9440abac-5b4d-491a-b248-910a1f4bd872", + "request-id" : "4c8da7d6-4906-41e9-b21c-5520e26920a2", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:21 GMT", + "Date" : "Thu, 27 May 2021 21:12:52 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9440abac-5b4d-491a-b248-910a1f4bd872", - "elapsed-time" : "25", + "client-request-id" : "4c8da7d6-4906-41e9-b21c-5520e26920a2", + "elapsed-time" : "8", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "502", "Body" : "{\"value\":[{\"@search.score\":3.4764762,\"HotelId\":\"2\",\"HotelName\":\"Roach Motel\",\"Description\":\"Cheapest hotel in town. Infact, a motel.\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "9440abac-5b4d-491a-b248-910a1f4bd872", + "x-ms-client-request-id" : "4c8da7d6-4906-41e9-b21c-5520e26920a2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithSelectedFields.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithSelectedFields.json index 3ed9072495a6..0441e0089436 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithSelectedFields.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithSelectedFields.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "46ea503d-582d-45c0-9c7f-0da94667bf0a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9afff5d3-603e-41dc-9629-070d9013c598", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "258", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "46ea503d-582d-45c0-9c7f-0da94667bf0a", + "request-id" : "9afff5d3-603e-41dc-9629-070d9013c598", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:32 GMT", + "Date" : "Thu, 27 May 2021 21:13:02 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "46ea503d-582d-45c0-9c7f-0da94667bf0a", - "elapsed-time" : "6", + "client-request-id" : "9afff5d3-603e-41dc-9629-070d9013c598", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "258", "Body" : "{\"value\":[{\"@search.score\":3.281591,\"HotelName\":\"Fancy Stay\",\"Rating\":5,\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.2715712,\"HotelName\":\"Secret Point Motel\",\"Rating\":4,\"Address\":{\"City\":\"New York\"},\"Rooms\":[{\"Type\":\"Budget Room\"},{\"Type\":\"Budget Room\"}]}]}", - "x-ms-client-request-id" : "46ea503d-582d-45c0-9c7f-0da94667bf0a", + "x-ms-client-request-id" : "9afff5d3-603e-41dc-9629-070d9013c598", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithSynonyms.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithSynonyms.json index d69080a37d29..b18d85d2e888 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithSynonyms.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithSynonyms.json @@ -1,213 +1,213 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchwithsynonyms5601832752c87f89cbbe4b')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchwithsynonyms513311888add3c5233bb40')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "17139d0d-a46c-498f-8619-efec909474b6", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d3d0e69f-3bf6-49c5-8bc7-2fbd8af08e07", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6490", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "17139d0d-a46c-498f-8619-efec909474b6", + "request-id" : "d3d0e69f-3bf6-49c5-8bc7-2fbd8af08e07", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:34:40 GMT", + "Date" : "Thu, 27 May 2021 21:13:10 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62780F614C0\"", - "client-request-id" : "17139d0d-a46c-498f-8619-efec909474b6", - "elapsed-time" : "1133", + "ETag" : "W/\"0x8D921543B116B47\"", + "client-request-id" : "d3d0e69f-3bf6-49c5-8bc7-2fbd8af08e07", + "elapsed-time" : "1471", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6939", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62780F614C0\\\"\",\"name\":\"hotelscansearchwithsynonyms5601832752c87f89cbbe4b\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "17139d0d-a46c-498f-8619-efec909474b6", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921543B116B47\\\"\",\"name\":\"hotelscansearchwithsynonyms513311888add3c5233bb40\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "d3d0e69f-3bf6-49c5-8bc7-2fbd8af08e07", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscansearchwithsynonyms5601832752c87f89cbbe4b')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelscansearchwithsynonyms513311888add3c5233bb40')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchwithsynonyms5601832752c87f89cbbe4b')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchwithsynonyms513311888add3c5233bb40')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd950a8c-e124-4f37-b229-63948f8b40d5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "811d4aae-70bd-4a94-8f9f-2da4c0284288", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "642", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "cd950a8c-e124-4f37-b229-63948f8b40d5", + "request-id" : "811d4aae-70bd-4a94-8f9f-2da4c0284288", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:40 GMT", + "Date" : "Thu, 27 May 2021 21:13:10 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "cd950a8c-e124-4f37-b229-63948f8b40d5", - "elapsed-time" : "111", + "client-request-id" : "811d4aae-70bd-4a94-8f9f-2da4c0284288", + "elapsed-time" : "139", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "642", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"5\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"6\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"7\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"8\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"9\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"10\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "cd950a8c-e124-4f37-b229-63948f8b40d5", + "x-ms-client-request-id" : "811d4aae-70bd-4a94-8f9f-2da4c0284288", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "19387e7c-bfd4-494c-b62e-79e07944914f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "254931c4-7296-4b20-bb84-5cceae1a4245", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "223", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "19387e7c-bfd4-494c-b62e-79e07944914f", + "request-id" : "254931c4-7296-4b20-bb84-5cceae1a4245", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:34:43 GMT", + "Date" : "Thu, 27 May 2021 21:13:12 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62782EF56A4\"", - "client-request-id" : "19387e7c-bfd4-494c-b62e-79e07944914f", - "elapsed-time" : "114", + "ETag" : "W/\"0x8D921543D0A8A05\"", + "client-request-id" : "254931c4-7296-4b20-bb84-5cceae1a4245", + "elapsed-time" : "79", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "223", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F62782EF56A4\\\"\",\"name\":\"names732485f0cc59d102\",\"format\":\"solr\",\"synonyms\":\"luxury,fancy\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "19387e7c-bfd4-494c-b62e-79e07944914f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D921543D0A8A05\\\"\",\"name\":\"names4432515a252a5d1d\",\"format\":\"solr\",\"synonyms\":\"luxury,fancy\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "254931c4-7296-4b20-bb84-5cceae1a4245", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('names732485f0cc59d102')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('names4432515a252a5d1d')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchwithsynonyms5601832752c87f89cbbe4b')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchwithsynonyms513311888add3c5233bb40')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "567c5d7b-940e-4077-aaee-153d08245a6b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1bd341e0-64d7-4b04-a3af-cb3caee9172b" }, "Response" : { + "content-length" : "6490", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "567c5d7b-940e-4077-aaee-153d08245a6b", + "request-id" : "1bd341e0-64d7-4b04-a3af-cb3caee9172b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:43 GMT", + "Date" : "Thu, 27 May 2021 21:13:13 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62780F614C0\"", - "client-request-id" : "567c5d7b-940e-4077-aaee-153d08245a6b", - "elapsed-time" : "22", + "ETag" : "W/\"0x8D921543B116B47\"", + "client-request-id" : "1bd341e0-64d7-4b04-a3af-cb3caee9172b", + "elapsed-time" : "19", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6939", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62780F614C0\\\"\",\"name\":\"hotelscansearchwithsynonyms5601832752c87f89cbbe4b\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "567c5d7b-940e-4077-aaee-153d08245a6b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921543B116B47\\\"\",\"name\":\"hotelscansearchwithsynonyms513311888add3c5233bb40\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "1bd341e0-64d7-4b04-a3af-cb3caee9172b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchwithsynonyms5601832752c87f89cbbe4b')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchwithsynonyms513311888add3c5233bb40')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6d713572-4a79-42ab-bab1-e59ddacd8048", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "077af9fe-71de-4508-aa15-27aa578f2fbf", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6513", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6d713572-4a79-42ab-bab1-e59ddacd8048", + "request-id" : "077af9fe-71de-4508-aa15-27aa578f2fbf", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:43 GMT", + "Date" : "Thu, 27 May 2021 21:13:12 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F627831CB019\"", - "client-request-id" : "6d713572-4a79-42ab-bab1-e59ddacd8048", - "elapsed-time" : "207", + "ETag" : "W/\"0x8D921543D2F56C1\"", + "client-request-id" : "077af9fe-71de-4508-aa15-27aa578f2fbf", + "elapsed-time" : "177", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6962", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F627831CB019\\\"\",\"name\":\"hotelscansearchwithsynonyms5601832752c87f89cbbe4b\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[\"names732485f0cc59d102\"]},{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "6d713572-4a79-42ab-bab1-e59ddacd8048", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921543D2F56C1\\\"\",\"name\":\"hotelscansearchwithsynonyms513311888add3c5233bb40\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":[\"names4432515a252a5d1d\"]},{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "077af9fe-71de-4508-aa15-27aa578f2fbf", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchwithsynonyms5601832752c87f89cbbe4b')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchwithsynonyms513311888add3c5233bb40')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "dde11646-97e0-4413-87b5-f6d5aec7b811", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1bcbd3c9-3550-432b-ac29-c1a23ad5c94d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "75", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "dde11646-97e0-4413-87b5-f6d5aec7b811", + "request-id" : "1bcbd3c9-3550-432b-ac29-c1a23ad5c94d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:53 GMT", + "Date" : "Thu, 27 May 2021 21:13:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "dde11646-97e0-4413-87b5-f6d5aec7b811", - "elapsed-time" : "87", + "client-request-id" : "1bcbd3c9-3550-432b-ac29-c1a23ad5c94d", + "elapsed-time" : "99", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "75", "Body" : "{\"value\":[{\"@search.score\":1.6076145,\"HotelName\":\"Fancy Stay\",\"Rating\":5}]}", - "x-ms-client-request-id" : "dde11646-97e0-4413-87b5-f6d5aec7b811", + "x-ms-client-request-id" : "1bcbd3c9-3550-432b-ac29-c1a23ad5c94d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchwithsynonyms5601832752c87f89cbbe4b')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelscansearchwithsynonyms513311888add3c5233bb40')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "19143da6-bc6c-4a72-9686-bc88695b0792" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "da5fe760-7162-40df-b0cd-e18c018cb92a" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "19143da6-bc6c-4a72-9686-bc88695b0792", - "elapsed-time" : "567", + "client-request-id" : "da5fe760-7162-40df-b0cd-e18c018cb92a", + "elapsed-time" : "1380", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "19143da6-bc6c-4a72-9686-bc88695b0792", + "request-id" : "da5fe760-7162-40df-b0cd-e18c018cb92a", "StatusCode" : "204", - "x-ms-client-request-id" : "19143da6-bc6c-4a72-9686-bc88695b0792", - "Date" : "Fri, 02 Apr 2021 22:34:54 GMT" + "x-ms-client-request-id" : "da5fe760-7162-40df-b0cd-e18c018cb92a", + "Date" : "Thu, 27 May 2021 21:13:25 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('names732485f0cc59d102')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('names4432515a252a5d1d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d72bad7-07f5-4d22-a4dd-e2379014bba3" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4063f46e-6c3f-48e9-ab4c-d456c56824ce" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1d72bad7-07f5-4d22-a4dd-e2379014bba3", - "elapsed-time" : "56", + "client-request-id" : "4063f46e-6c3f-48e9-ab4c-d456c56824ce", + "elapsed-time" : "45", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "1d72bad7-07f5-4d22-a4dd-e2379014bba3", + "request-id" : "4063f46e-6c3f-48e9-ab4c-d456c56824ce", "StatusCode" : "204", - "x-ms-client-request-id" : "1d72bad7-07f5-4d22-a4dd-e2379014bba3", - "Date" : "Fri, 02 Apr 2021 22:34:54 GMT" + "x-ms-client-request-id" : "4063f46e-6c3f-48e9-ab4c-d456c56824ce", + "Date" : "Thu, 27 May 2021 21:13:25 GMT" }, "Exception" : null } ], - "variables" : [ "hotelscansearchwithsynonyms5601832752c87f89cbbe4b", "names732485f0cc59d102" ] + "variables" : [ "hotelscansearchwithsynonyms513311888add3c5233bb40", "names4432515a252a5d1d" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithValueFacets.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithValueFacets.json index b0acd382c7d0..8d1478877ae4 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithValueFacets.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canSearchWithValueFacets.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b20dc9e-6c0b-4af2-a49c-9df66f0fa987", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "29234b7f-296e-488a-a83c-ab1425a94d10", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "8074", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8b20dc9e-6c0b-4af2-a49c-9df66f0fa987", + "request-id" : "29234b7f-296e-488a-a83c-ab1425a94d10", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:04 GMT", + "Date" : "Thu, 27 May 2021 21:13:35 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8b20dc9e-6c0b-4af2-a49c-9df66f0fa987", - "elapsed-time" : "92", + "client-request-id" : "29234b7f-296e-488a-a83c-ab1425a94d10", + "elapsed-time" : "66", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "8074", "Body" : "{\"@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\":2,\"value\":true}],\"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\"}],\"Rooms/BaseRate\":[{\"count\":1,\"value\":2.44},{\"count\":1,\"value\":7.69},{\"count\":1,\"value\":8.09},{\"count\":1,\"value\":9.69}],\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"2\",\"HotelName\":\"Roach Motel\",\"Description\":\"Cheapest hotel in town. Infact, a motel.\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"3\",\"HotelName\":\"EconoStay\",\"Description\":\"Very popular hotel in town\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"4\",\"HotelName\":\"Express Rooms\",\"Description\":\"Pretty good hotel\",\"Description_fr\":\"Assez bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"1995-07-01T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"5\",\"HotelName\":\"Comfy Place\",\"Description\":\"Another good hotel\",\"Description_fr\":\"Un autre bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"2012-08-12T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"6\",\"HotelName\":null,\"Description\":\"Surprisingly expensive. Model suites have an ocean-view.\",\"Description_fr\":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.\",\"Description_fr\":\"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.\",\"Description_fr\":\"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's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.\",\"Description_fr\":\"L'h\\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'autres lieux d'int\\u00e9r\\u00eat qui font de New York l'une des villes les plus attractives et cosmopolites de l'Am\\u00e9rique.\",\"Category\":\"Boutique\",\"Tags\":[\"pool\",\"air conditioning\",\"concierge\"],\"ParkingIncluded\":false,\"SmokingAllowed\":null,\"LastRenovationDate\":\"1970-01-18T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-73.975403,40.760586],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"677 5th Ave\",\"City\":\"New York\",\"StateProvince\":\"NY\",\"PostalCode\":\"10022\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed (Cityside)\",\"Description_fr\":\"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)\",\"Description_fr\":\"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 & dryer, 24/7 support, bowling alley, fitness center and more.\",\"Description_fr\":\"\\u00c9conomisez jusqu'\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse & 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\":{\"type\":\"Point\",\"coordinates\":[-78.940483,35.90416],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"6910 Fayetteville Rd\",\"City\":\"Durham\",\"StateProvince\":\"NC\",\"PostalCode\":\"27713\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Suite, 1 King Bed (Amenities)\",\"Description_fr\":\"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)\",\"Description_fr\":\"Chambre \\u00c9conomique, 1 grand lit (Services)\",\"Type\":\"Budget Room\",\"BaseRate\":7.69,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":false,\"Tags\":[\"coffee maker\"]}]}]}", - "x-ms-client-request-id" : "8b20dc9e-6c0b-4af2-a49c-9df66f0fa987", + "x-ms-client-request-id" : "29234b7f-296e-488a-a83c-ab1425a94d10", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canUseHitHighlighting.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canUseHitHighlighting.json index 5cdae6cafbbd..dcc805405d3b 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canUseHitHighlighting.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canUseHitHighlighting.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9562f1bd-81eb-433d-b46a-535edd9457aa", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0892736e-cc79-4cea-be57-c955a74e3764", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1157", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9562f1bd-81eb-433d-b46a-535edd9457aa", + "request-id" : "0892736e-cc79-4cea-be57-c955a74e3764", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:04 GMT", + "Date" : "Thu, 27 May 2021 21:13:35 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9562f1bd-81eb-433d-b46a-535edd9457aa", - "elapsed-time" : "27", + "client-request-id" : "0892736e-cc79-4cea-be57-c955a74e3764", + "elapsed-time" : "26", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1157", "Body" : "{\"value\":[{\"@search.score\":3.8240385,\"@search.highlights\":{\"Description\":[\"Best hotel in town if you like luxury hotels.\",\"We highly recommend this hotel.\"],\"Category\":[\"Luxury\"]},\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "9562f1bd-81eb-433d-b46a-535edd9457aa", + "x-ms-client-request-id" : "0892736e-cc79-4cea-be57-c955a74e3764", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canUseTopAndSkipForClientSidePaging.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canUseTopAndSkipForClientSidePaging.json index 7eb62b5c0044..b455d169c48d 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canUseTopAndSkipForClientSidePaging.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.canUseTopAndSkipForClientSidePaging.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0d4da9dc-f435-4a67-9a6e-2607113fccb6", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "332a0f4a-2692-4fc6-926c-8f15183ac4c4", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "2888", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0d4da9dc-f435-4a67-9a6e-2607113fccb6", + "request-id" : "332a0f4a-2692-4fc6-926c-8f15183ac4c4", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:38 GMT", + "Date" : "Thu, 27 May 2021 21:13:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0d4da9dc-f435-4a67-9a6e-2607113fccb6", - "elapsed-time" : "21", + "client-request-id" : "332a0f4a-2692-4fc6-926c-8f15183ac4c4", + "elapsed-time" : "8", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "2888", "Body" : "{\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"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 & dryer, 24/7 support, bowling alley, fitness center and more.\",\"Description_fr\":\"\\u00c9conomisez jusqu'\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse & 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\":{\"type\":\"Point\",\"coordinates\":[-78.940483,35.90416],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"6910 Fayetteville Rd\",\"City\":\"Durham\",\"StateProvince\":\"NC\",\"PostalCode\":\"27713\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Suite, 1 King Bed (Amenities)\",\"Description_fr\":\"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)\",\"Description_fr\":\"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.\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "0d4da9dc-f435-4a67-9a6e-2607113fccb6", + "x-ms-client-request-id" : "332a0f4a-2692-4fc6-926c-8f15183ac4c4", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc4f6642-af3a-4641-8afb-574b8ad46f41", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4f8cfb1a-1517-4b1e-934b-fffc8246d565", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1331", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "cc4f6642-af3a-4641-8afb-574b8ad46f41", + "request-id" : "4f8cfb1a-1517-4b1e-934b-fffc8246d565", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:38 GMT", + "Date" : "Thu, 27 May 2021 21:13:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "cc4f6642-af3a-4641-8afb-574b8ad46f41", - "elapsed-time" : "9", + "client-request-id" : "4f8cfb1a-1517-4b1e-934b-fffc8246d565", + "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1331", "Body" : "{\"value\":[{\"@search.score\":1.0,\"HotelId\":\"3\",\"HotelName\":\"EconoStay\",\"Description\":\"Very popular hotel in town\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"4\",\"HotelName\":\"Express Rooms\",\"Description\":\"Pretty good hotel\",\"Description_fr\":\"Assez bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"1995-07-01T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"5\",\"HotelName\":\"Comfy Place\",\"Description\":\"Another good hotel\",\"Description_fr\":\"Un autre bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"2012-08-12T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "cc4f6642-af3a-4641-8afb-574b8ad46f41", + "x-ms-client-request-id" : "4f8cfb1a-1517-4b1e-934b-fffc8246d565", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.defaultSearchModeIsAny.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.defaultSearchModeIsAny.json index 52ad78ad9c8c..e5625c7e0436 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.defaultSearchModeIsAny.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.defaultSearchModeIsAny.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c77df6e-41df-4e97-aab1-17fafbe16c67", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "068a10b4-7afb-4398-b989-c3b1f7d4ff3a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "5938", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1c77df6e-41df-4e97-aab1-17fafbe16c67", + "request-id" : "068a10b4-7afb-4398-b989-c3b1f7d4ff3a", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:21 GMT", + "Date" : "Thu, 27 May 2021 21:12:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1c77df6e-41df-4e97-aab1-17fafbe16c67", - "elapsed-time" : "10", + "client-request-id" : "068a10b4-7afb-4398-b989-c3b1f7d4ff3a", + "elapsed-time" : "13", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "5938", "Body" : "{\"value\":[{\"@search.score\":0.8344315,\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":2.054103,\"HotelId\":\"10\",\"HotelName\":\"Countryside Hotel\",\"Description\":\"Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer & dryer, 24/7 support, bowling alley, fitness center and more.\",\"Description_fr\":\"\\u00c9conomisez jusqu'\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse & 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\":{\"type\":\"Point\",\"coordinates\":[-78.940483,35.90416],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"6910 Fayetteville Rd\",\"City\":\"Durham\",\"StateProvince\":\"NC\",\"PostalCode\":\"27713\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Suite, 1 King Bed (Amenities)\",\"Description_fr\":\"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)\",\"Description_fr\":\"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\":3.4764762,\"HotelId\":\"2\",\"HotelName\":\"Roach Motel\",\"Description\":\"Cheapest hotel in town. Infact, a motel.\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":0.9327102,\"HotelId\":\"3\",\"HotelName\":\"EconoStay\",\"Description\":\"Very popular hotel in town\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":0.9327102,\"HotelId\":\"4\",\"HotelName\":\"Express Rooms\",\"Description\":\"Pretty good hotel\",\"Description_fr\":\"Assez bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"1995-07-01T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":0.9327102,\"HotelId\":\"5\",\"HotelName\":\"Comfy Place\",\"Description\":\"Another good hotel\",\"Description_fr\":\"Un autre bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"2012-08-12T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":0.35242796,\"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's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.\",\"Description_fr\":\"L'h\\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'autres lieux d'int\\u00e9r\\u00eat qui font de New York l'une des villes les plus attractives et cosmopolites de l'Am\\u00e9rique.\",\"Category\":\"Boutique\",\"Tags\":[\"pool\",\"air conditioning\",\"concierge\"],\"ParkingIncluded\":false,\"SmokingAllowed\":null,\"LastRenovationDate\":\"1970-01-18T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-73.975403,40.760586],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"677 5th Ave\",\"City\":\"New York\",\"StateProvince\":\"NY\",\"PostalCode\":\"10022\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed (Cityside)\",\"Description_fr\":\"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)\",\"Description_fr\":\"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\"]}]}]}", - "x-ms-client-request-id" : "1c77df6e-41df-4e97-aab1-17fafbe16c67", + "x-ms-client-request-id" : "068a10b4-7afb-4398-b989-c3b1f7d4ff3a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.orderByProgressivelyBreaksTies.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.orderByProgressivelyBreaksTies.json index 9ec3b1bc4b87..6c45bf3a2df0 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.orderByProgressivelyBreaksTies.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.orderByProgressivelyBreaksTies.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "22005cb4-e558-40dd-91bf-e0e96127fc8f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fa97595d-ad90-4eb5-8e14-c4f28623053f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "7090", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "22005cb4-e558-40dd-91bf-e0e96127fc8f", + "request-id" : "fa97595d-ad90-4eb5-8e14-c4f28623053f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:38 GMT", + "Date" : "Thu, 27 May 2021 21:13:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "22005cb4-e558-40dd-91bf-e0e96127fc8f", - "elapsed-time" : "7", + "client-request-id" : "fa97595d-ad90-4eb5-8e14-c4f28623053f", + "elapsed-time" : "10", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "7090", "Body" : "{\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"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's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.\",\"Description_fr\":\"L'h\\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'autres lieux d'int\\u00e9r\\u00eat qui font de New York l'une des villes les plus attractives et cosmopolites de l'Am\\u00e9rique.\",\"Category\":\"Boutique\",\"Tags\":[\"pool\",\"air conditioning\",\"concierge\"],\"ParkingIncluded\":false,\"SmokingAllowed\":null,\"LastRenovationDate\":\"1970-01-18T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-73.975403,40.760586],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"677 5th Ave\",\"City\":\"New York\",\"StateProvince\":\"NY\",\"PostalCode\":\"10022\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed (Cityside)\",\"Description_fr\":\"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)\",\"Description_fr\":\"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\":\"3\",\"HotelName\":\"EconoStay\",\"Description\":\"Very popular hotel in town\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"4\",\"HotelName\":\"Express Rooms\",\"Description\":\"Pretty good hotel\",\"Description_fr\":\"Assez bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"1995-07-01T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"5\",\"HotelName\":\"Comfy Place\",\"Description\":\"Another good hotel\",\"Description_fr\":\"Un autre bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"2012-08-12T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"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 & dryer, 24/7 support, bowling alley, fitness center and more.\",\"Description_fr\":\"\\u00c9conomisez jusqu'\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse & 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\":{\"type\":\"Point\",\"coordinates\":[-78.940483,35.90416],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"6910 Fayetteville Rd\",\"City\":\"Durham\",\"StateProvince\":\"NC\",\"PostalCode\":\"27713\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Suite, 1 King Bed (Amenities)\",\"Description_fr\":\"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)\",\"Description_fr\":\"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.\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":1.0,\"HotelId\":\"6\",\"HotelName\":null,\"Description\":\"Surprisingly expensive. Model suites have an ocean-view.\",\"Description_fr\":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.\",\"Description_fr\":\"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.\",\"Description_fr\":\"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\":[]}]}", - "x-ms-client-request-id" : "22005cb4-e558-40dd-91bf-e0e96127fc8f", + "x-ms-client-request-id" : "fa97595d-ad90-4eb5-8e14-c4f28623053f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchThrowsWhenRequestIsMalformed.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchThrowsWhenRequestIsMalformed.json index b7efce0f32bd..3792a67fdf58 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchThrowsWhenRequestIsMalformed.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchThrowsWhenRequestIsMalformed.json @@ -1,28 +1,28 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8dbbea0c-8268-4e55-9673-6c5f982649eb", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b1dc5417-08f1-4a6d-a8a6-a9622951d6ba", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "141", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8dbbea0c-8268-4e55-9673-6c5f982649eb", + "request-id" : "b1dc5417-08f1-4a6d-a8a6-a9622951d6ba", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:34:27 GMT", + "Date" : "Thu, 27 May 2021 21:12:57 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8dbbea0c-8268-4e55-9673-6c5f982649eb", - "elapsed-time" : "16", + "client-request-id" : "b1dc5417-08f1-4a6d-a8a6-a9622951d6ba", + "elapsed-time" : "4", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "141", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"Invalid expression: Syntax error at position 7 in 'This is not a valid filter.'.\\r\\nParameter name: $filter\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "8dbbea0c-8268-4e55-9673-6c5f982649eb", + "x-ms-client-request-id" : "b1dc5417-08f1-4a6d-a8a6-a9622951d6ba", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchThrowsWhenSpecialCharInRegexIsUnescaped.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchThrowsWhenSpecialCharInRegexIsUnescaped.json index cacfb30b5e0c..7e7dbc14fe6d 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchThrowsWhenSpecialCharInRegexIsUnescaped.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchThrowsWhenSpecialCharInRegexIsUnescaped.json @@ -1,28 +1,28 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f3ca2357-3ad9-448d-ab27-c06066ad7dde", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7874f3c1-2fa3-4e47-9b30-f3163fa72a34", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "341", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f3ca2357-3ad9-448d-ab27-c06066ad7dde", + "request-id" : "7874f3c1-2fa3-4e47-9b30-f3163fa72a34", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:34:38 GMT", + "Date" : "Thu, 27 May 2021 21:13:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f3ca2357-3ad9-448d-ab27-c06066ad7dde", - "elapsed-time" : "47", + "client-request-id" : "7874f3c1-2fa3-4e47-9b30-f3163fa72a34", + "elapsed-time" : "43", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "341", "Body" : "{\"error\":{\"code\":\"InvalidRequestParameter\",\"message\":\"Failed to parse query string at line 1, column 8. See https://aka.ms/azure-search-full-query for supported syntax.\",\"details\":[{\"code\":\"InvalidSearchSyntax\",\"message\":\"Failed to parse query string at line 1, column 8. See https://aka.ms/azure-search-full-query for supported syntax.\"}]}}", "Content-Language" : "en", - "x-ms-client-request-id" : "f3ca2357-3ad9-448d-ab27-c06066ad7dde", + "x-ms-client-request-id" : "7874f3c1-2fa3-4e47-9b30-f3163fa72a34", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchWithScoringParametersEmpty.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchWithScoringParametersEmpty.json index 314aa586d280..8bf840f3178f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchWithScoringParametersEmpty.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchWithScoringParametersEmpty.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c8e1af31-9fd2-44e4-8f47-2dd034e1b0a1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6afac8cf-ebd9-472c-a5a9-925057125153", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1469", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c8e1af31-9fd2-44e4-8f47-2dd034e1b0a1", + "request-id" : "6afac8cf-ebd9-472c-a5a9-925057125153", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:38 GMT", + "Date" : "Thu, 27 May 2021 21:13:07 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c8e1af31-9fd2-44e4-8f47-2dd034e1b0a1", - "elapsed-time" : "11", + "client-request-id" : "6afac8cf-ebd9-472c-a5a9-925057125153", + "elapsed-time" : "10", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1469", "Body" : "{\"value\":[{\"@search.score\":1.668863,\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":0.8567029,\"HotelId\":\"2\",\"HotelName\":\"Roach Motel\",\"Description\":\"Cheapest hotel in town. Infact, a motel.\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "c8e1af31-9fd2-44e4-8f47-2dd034e1b0a1", + "x-ms-client-request-id" : "6afac8cf-ebd9-472c-a5a9-925057125153", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchWithScoringProfileBoostsScore.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchWithScoringProfileBoostsScore.json index f567ab429015..f7b1ef70731a 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchWithScoringProfileBoostsScore.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchWithScoringProfileBoostsScore.json @@ -1,108 +1,108 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelssearchwithscoringprofileboostsscore1e964831e865ddd')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelssearchwithscoringprofileboostsscore443335494c33ff7')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5471aaa1-654a-484c-ab56-560e64dafe17", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d1318d54-e518-482b-b648-2eb762e969ad", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "6497", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5471aaa1-654a-484c-ab56-560e64dafe17", + "request-id" : "d1318d54-e518-482b-b648-2eb762e969ad", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:34:18 GMT", + "Date" : "Thu, 27 May 2021 21:12:48 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6277430CC34\"", - "client-request-id" : "5471aaa1-654a-484c-ab56-560e64dafe17", - "elapsed-time" : "1083", + "ETag" : "W/\"0x8D921542DEF800F\"", + "client-request-id" : "d1318d54-e518-482b-b648-2eb762e969ad", + "elapsed-time" : "1489", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "6946", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F6277430CC34\\\"\",\"name\":\"hotelssearchwithscoringprofileboostsscore1e964831e865ddd\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Address\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"StreetAddress\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":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,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"name\":\"Description\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"en.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"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,\"normalizer\":null,\"synonymMaps\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "5471aaa1-654a-484c-ab56-560e64dafe17", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921542DEF800F\\\"\",\"name\":\"hotelssearchwithscoringprofileboostsscore443335494c33ff7\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"HotelId\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Category\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":\"ParkingIncluded\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastRenovationDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rating\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"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\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"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\":\"PostalCode\",\"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\":\"Location\",\"type\":\"Edm.GeographyPoint\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Rooms\",\"type\":\"Collection(Edm.ComplexType)\",\"fields\":[{\"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\":\"Description_fr\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":\"fr.lucene\",\"synonymMaps\":[]},{\"name\":\"Type\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":false,\"retrievable\":true,\"sortable\":false,\"facetable\":false,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BaseRate\",\"type\":\"Edm.Double\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"BedOptions\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SleepsCount\",\"type\":\"Edm.Int32\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"SmokingAllowed\",\"type\":\"Edm.Boolean\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":false,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"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\":[]}]}],\"scoringProfiles\":[{\"name\":\"nearest\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Location\",\"interpolation\":\"linear\",\"type\":\"distance\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":{\"referencePointParameter\":\"myloc\",\"boostingDistance\":100.0},\"tag\":null}]},{\"name\":\"text\",\"functionAggregation\":\"sum\",\"text\":null,\"functions\":[{\"fieldName\":\"Tags\",\"interpolation\":\"linear\",\"type\":\"tag\",\"boost\":2.0,\"freshness\":null,\"magnitude\":null,\"distance\":null,\"tag\":{\"tagsParameter\":\"mytag\"}}]}],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Description\",\"HotelName\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "d1318d54-e518-482b-b648-2eb762e969ad", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelssearchwithscoringprofileboostsscore1e964831e865ddd')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('hotelssearchwithscoringprofileboostsscore443335494c33ff7')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelssearchwithscoringprofileboostsscore1e964831e865ddd')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelssearchwithscoringprofileboostsscore443335494c33ff7')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "efbd6d8b-5a4b-4fc9-82ea-9203a00f7e00", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8ef323a4-a7cc-46a0-851c-3032ab377959", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "642", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "efbd6d8b-5a4b-4fc9-82ea-9203a00f7e00", + "request-id" : "8ef323a4-a7cc-46a0-851c-3032ab377959", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:18 GMT", + "Date" : "Thu, 27 May 2021 21:12:47 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "efbd6d8b-5a4b-4fc9-82ea-9203a00f7e00", - "elapsed-time" : "101", + "client-request-id" : "8ef323a4-a7cc-46a0-851c-3032ab377959", + "elapsed-time" : "103", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "642", "Body" : "{\"value\":[{\"key\":\"1\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"2\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"3\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"4\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"5\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"6\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"7\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"8\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"9\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"10\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "efbd6d8b-5a4b-4fc9-82ea-9203a00f7e00", + "x-ms-client-request-id" : "8ef323a4-a7cc-46a0-851c-3032ab377959", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelssearchwithscoringprofileboostsscore1e964831e865ddd')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelssearchwithscoringprofileboostsscore443335494c33ff7')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b783c90b-1634-4f29-91d8-4677525e91db", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5ed00010-ac7e-4366-a01e-fedc7a1cd90b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1470", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b783c90b-1634-4f29-91d8-4677525e91db", + "request-id" : "5ed00010-ac7e-4366-a01e-fedc7a1cd90b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:21 GMT", + "Date" : "Thu, 27 May 2021 21:12:51 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b783c90b-1634-4f29-91d8-4677525e91db", - "elapsed-time" : "153", + "client-request-id" : "5ed00010-ac7e-4366-a01e-fedc7a1cd90b", + "elapsed-time" : "148", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1470", "Body" : "{\"value\":[{\"@search.score\":1.0618434,\"HotelId\":\"2\",\"HotelName\":\"Roach Motel\",\"Description\":\"Cheapest hotel in town. Infact, a motel.\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":0.8344315,\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "b783c90b-1634-4f29-91d8-4677525e91db", + "x-ms-client-request-id" : "5ed00010-ac7e-4366-a01e-fedc7a1cd90b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('hotelssearchwithscoringprofileboostsscore1e964831e865ddd')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('hotelssearchwithscoringprofileboostsscore443335494c33ff7')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "76c6eefd-2b87-454b-8c8a-309575687efc" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c0daa11a-b35a-4fd5-9250-0fb3f2e55f72" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "76c6eefd-2b87-454b-8c8a-309575687efc", - "elapsed-time" : "564", + "client-request-id" : "c0daa11a-b35a-4fd5-9250-0fb3f2e55f72", + "elapsed-time" : "505", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "76c6eefd-2b87-454b-8c8a-309575687efc", + "request-id" : "c0daa11a-b35a-4fd5-9250-0fb3f2e55f72", "StatusCode" : "204", - "x-ms-client-request-id" : "76c6eefd-2b87-454b-8c8a-309575687efc", - "Date" : "Fri, 02 Apr 2021 22:34:21 GMT" + "x-ms-client-request-id" : "c0daa11a-b35a-4fd5-9250-0fb3f2e55f72", + "Date" : "Thu, 27 May 2021 21:12:52 GMT" }, "Exception" : null } ], - "variables" : [ "hotelssearchwithscoringprofileboostsscore1e964831e865ddd" ] + "variables" : [ "hotelssearchwithscoringprofileboostsscore443335494c33ff7" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchWithScoringProfileEscaper.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchWithScoringProfileEscaper.json index 8207eab240de..508751f76a10 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchWithScoringProfileEscaper.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchWithScoringProfileEscaper.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "472a62b0-d064-4b58-912c-2eb79fb1861f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "99ad9a0e-4b6a-4bb5-a3e6-8bc44724bd06", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1469", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "472a62b0-d064-4b58-912c-2eb79fb1861f", + "request-id" : "99ad9a0e-4b6a-4bb5-a3e6-8bc44724bd06", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:27 GMT", + "Date" : "Thu, 27 May 2021 21:12:56 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "472a62b0-d064-4b58-912c-2eb79fb1861f", - "elapsed-time" : "16", + "client-request-id" : "99ad9a0e-4b6a-4bb5-a3e6-8bc44724bd06", + "elapsed-time" : "15", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1469", "Body" : "{\"value\":[{\"@search.score\":1.668863,\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.score\":0.8567029,\"HotelId\":\"2\",\"HotelName\":\"Roach Motel\",\"Description\":\"Cheapest hotel in town. Infact, a motel.\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "472a62b0-d064-4b58-912c-2eb79fb1861f", + "x-ms-client-request-id" : "99ad9a0e-4b6a-4bb5-a3e6-8bc44724bd06", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchWithoutOrderBySortsByScore.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchWithoutOrderBySortsByScore.json index 01cd8c02dfe0..3b2f5a4514d6 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchWithoutOrderBySortsByScore.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SearchSyncTests.searchWithoutOrderBySortsByScore.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')//docs/search.post.search?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-search-shared-instance')/docs/search.post.search?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd0204dd-1141-4ba9-8094-b8b150959f00", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f970e719-61b4-46f5-b70a-655bda602fdc", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1926", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "dd0204dd-1141-4ba9-8094-b8b150959f00", + "request-id" : "f970e719-61b4-46f5-b70a-655bda602fdc", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:34:59 GMT", + "Date" : "Thu, 27 May 2021 21:13:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "dd0204dd-1141-4ba9-8094-b8b150959f00", - "elapsed-time" : "140", + "client-request-id" : "f970e719-61b4-46f5-b70a-655bda602fdc", + "elapsed-time" : "91", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1926", "Body" : "{\"value\":[{\"@search.score\":1.0,\"HotelId\":\"2\",\"HotelName\":\"Roach Motel\",\"Description\":\"Cheapest hotel in town. Infact, a motel.\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"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 & dryer, 24/7 support, bowling alley, fitness center and more.\",\"Description_fr\":\"\\u00c9conomisez jusqu'\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse & 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\":{\"type\":\"Point\",\"coordinates\":[-78.940483,35.90416],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"6910 Fayetteville Rd\",\"City\":\"Durham\",\"StateProvince\":\"NC\",\"PostalCode\":\"27713\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Suite, 1 King Bed (Amenities)\",\"Description_fr\":\"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)\",\"Description_fr\":\"Chambre \\u00c9conomique, 1 grand lit (Services)\",\"Type\":\"Budget Room\",\"BaseRate\":7.69,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":false,\"Tags\":[\"coffee maker\"]}]}]}", - "x-ms-client-request-id" : "dd0204dd-1141-4ba9-8094-b8b150959f00", + "x-ms-client-request-id" : "f970e719-61b4-46f5-b70a-655bda602fdc", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.canCreateAndDeleteSkillset.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.canCreateAndDeleteSkillset.json index 1c66726cf50a..0d478849eef3 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.canCreateAndDeleteSkillset.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.canCreateAndDeleteSkillset.json @@ -1,81 +1,81 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1c1bbbc5-2e32-4e7c-9700-ce06884fb4a7", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4a8e82ff-7b5f-4384-a128-3e0d97e75310", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "769", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1c1bbbc5-2e32-4e7c-9700-ce06884fb4a7", + "request-id" : "4a8e82ff-7b5f-4384-a128-3e0d97e75310", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:46 GMT", + "Date" : "Thu, 27 May 2021 21:18:19 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628381D2497\"", - "client-request-id" : "1c1bbbc5-2e32-4e7c-9700-ce06884fb4a7", - "elapsed-time" : "87", + "ETag" : "W/\"0x8D92154F3ED247A\"", + "client-request-id" : "4a8e82ff-7b5f-4384-a128-3e0d97e75310", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "769", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F628381D2497\\\"\",\"name\":\"ocr-skillsetcancreateanddeleteskillset1f7638889\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "1c1bbbc5-2e32-4e7c-9700-ce06884fb4a7", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F3ED247A\\\"\",\"name\":\"ocr-skillsetcancreateanddeleteskillset16829430e\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "4a8e82ff-7b5f-4384-a128-3e0d97e75310", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillsetcancreateanddeleteskillset1f7638889')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillsetcancreateanddeleteskillset16829430e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillsetcancreateanddeleteskillset1f7638889')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillsetcancreateanddeleteskillset16829430e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "be858a31-005c-44d2-9822-a74b0e9f799a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "74ca786c-f65e-426b-bc31-3a19520e233f" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "be858a31-005c-44d2-9822-a74b0e9f799a", - "elapsed-time" : "70", + "client-request-id" : "74ca786c-f65e-426b-bc31-3a19520e233f", + "elapsed-time" : "21", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "be858a31-005c-44d2-9822-a74b0e9f799a", + "request-id" : "74ca786c-f65e-426b-bc31-3a19520e233f", "StatusCode" : "204", - "x-ms-client-request-id" : "be858a31-005c-44d2-9822-a74b0e9f799a", - "Date" : "Fri, 02 Apr 2021 22:39:47 GMT" + "x-ms-client-request-id" : "74ca786c-f65e-426b-bc31-3a19520e233f", + "Date" : "Thu, 27 May 2021 21:18:20 GMT" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillsetcancreateanddeleteskillset1f7638889')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillsetcancreateanddeleteskillset16829430e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5dce9c66-e2f3-45c5-9b33-157ef61d7ecc" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "80026409-c6c4-4de1-b6ec-1b121a0f59a4" }, "Response" : { + "content-length" : "189", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5dce9c66-e2f3-45c5-9b33-157ef61d7ecc", + "request-id" : "80026409-c6c4-4de1-b6ec-1b121a0f59a4", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:39:46 GMT", + "Date" : "Thu, 27 May 2021 21:18:19 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5dce9c66-e2f3-45c5-9b33-157ef61d7ecc", - "elapsed-time" : "31", + "client-request-id" : "80026409-c6c4-4de1-b6ec-1b121a0f59a4", + "elapsed-time" : "7", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "189", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No skillset with the name 'ocr-skillsetcancreateanddeleteskillset1f7638889' was found in service 'Microsoft.WindowsAzure.Search.Core.Models.SearchService'.\"}}", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No skillset with the name 'ocr-skillsetcancreateanddeleteskillset16829430e' was found in service 'Microsoft.WindowsAzure.Search.Core.Models.SearchService'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "5dce9c66-e2f3-45c5-9b33-157ef61d7ecc", + "x-ms-client-request-id" : "80026409-c6c4-4de1-b6ec-1b121a0f59a4", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "ocr-skillsetcancreateanddeleteskillset1f7638889" ] + "variables" : [ "ocr-skillsetcancreateanddeleteskillset16829430e" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.canCreateAndListSkillsets.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.canCreateAndListSkillsets.json index e4cd1e81d0df..0d416165f502 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.canCreateAndListSkillsets.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.canCreateAndListSkillsets.json @@ -1,130 +1,130 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d68866d7-0799-4c38-9108-22ebecb9e164", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7a6aa37a-335a-4cd9-b1bb-4b6a6decbae9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "822", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d68866d7-0799-4c38-9108-22ebecb9e164", + "request-id" : "7a6aa37a-335a-4cd9-b1bb-4b6a6decbae9", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:45 GMT", + "Date" : "Thu, 27 May 2021 21:18:19 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283782EC9B\"", - "client-request-id" : "d68866d7-0799-4c38-9108-22ebecb9e164", - "elapsed-time" : "77", + "ETag" : "W/\"0x8D92154F3930D33\"", + "client-request-id" : "7a6aa37a-335a-4cd9-b1bb-4b6a6decbae9", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "822", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283782EC9B\\\"\",\"name\":\"cognitive-services-key-skillset103021efb6d\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":{\"@odata.type\":\"#Microsoft.Azure.Search.DefaultCognitiveServices\",\"description\":null},\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "d68866d7-0799-4c38-9108-22ebecb9e164", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F3930D33\\\"\",\"name\":\"cognitive-services-key-skillset650606887f8\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":{\"@odata.type\":\"#Microsoft.Azure.Search.DefaultCognitiveServices\",\"description\":null},\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "7a6aa37a-335a-4cd9-b1bb-4b6a6decbae9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('cognitive-services-key-skillset103021efb6d')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('cognitive-services-key-skillset650606887f8')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8ad79351-3f82-4481-8945-4bed1725cf4e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0719cb39-42b9-4417-b7e2-ebe395449714", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "711", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8ad79351-3f82-4481-8945-4bed1725cf4e", + "request-id" : "0719cb39-42b9-4417-b7e2-ebe395449714", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:46 GMT", + "Date" : "Thu, 27 May 2021 21:18:19 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62837920A66\"", - "client-request-id" : "8ad79351-3f82-4481-8945-4bed1725cf4e", - "elapsed-time" : "84", + "ETag" : "W/\"0x8D92154F39C0F84\"", + "client-request-id" : "0719cb39-42b9-4417-b7e2-ebe395449714", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "711", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62837920A66\\\"\",\"name\":\"entity-recognition-skillset98836843aadfa\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.EntityRecognitionSkill\",\"name\":\"myentity\",\"description\":\"Tested Entity Recognition skill\",\"context\":\"/document\",\"categories\":[],\"defaultLanguageCode\":null,\"minimumPrecision\":null,\"includeTypelessEntities\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"entities\",\"targetName\":\"myEntities\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "8ad79351-3f82-4481-8945-4bed1725cf4e", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F39C0F84\\\"\",\"name\":\"entity-recognition-skillset57627faebffe8\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.EntityRecognitionSkill\",\"name\":\"myentity\",\"description\":\"Tested Entity Recognition skill\",\"context\":\"/document\",\"categories\":[],\"defaultLanguageCode\":null,\"minimumPrecision\":null,\"includeTypelessEntities\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"entities\",\"targetName\":\"myEntities\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "0719cb39-42b9-4417-b7e2-ebe395449714", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('entity-recognition-skillset98836843aadfa')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('entity-recognition-skillset57627faebffe8')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6d3dd14f-980f-4abc-a73f-328a38e5a4dd" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9a0eaebb-da13-4b72-9dc1-ffeb8e6de40b" }, "Response" : { + "content-length" : "1523", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6d3dd14f-980f-4abc-a73f-328a38e5a4dd", + "request-id" : "9a0eaebb-da13-4b72-9dc1-ffeb8e6de40b", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:45 GMT", + "Date" : "Thu, 27 May 2021 21:18:19 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6d3dd14f-980f-4abc-a73f-328a38e5a4dd", - "elapsed-time" : "107", + "client-request-id" : "9a0eaebb-da13-4b72-9dc1-ffeb8e6de40b", + "elapsed-time" : "38", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1523", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets\",\"value\":[{\"@odata.etag\":\"\\\"0x8D8F6283782EC9B\\\"\",\"name\":\"cognitive-services-key-skillset103021efb6d\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":\"Space\",\"defaultLanguageCode\":\"en\",\"detectOrientation\":true,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":{\"@odata.type\":\"#Microsoft.Azure.Search.DefaultCognitiveServices\",\"description\":null},\"knowledgeStore\":null,\"encryptionKey\":null},{\"@odata.etag\":\"\\\"0x8D8F62837920A66\\\"\",\"name\":\"entity-recognition-skillset98836843aadfa\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.EntityRecognitionSkill\",\"name\":\"myentity\",\"description\":\"Tested Entity Recognition skill\",\"context\":\"/document\",\"categories\":[\"Person\",\"Quantity\",\"Organization\",\"URL\",\"Email\",\"Location\",\"DateTime\"],\"defaultLanguageCode\":\"en\",\"minimumPrecision\":null,\"includeTypelessEntities\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"entities\",\"targetName\":\"myEntities\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}]}", - "x-ms-client-request-id" : "6d3dd14f-980f-4abc-a73f-328a38e5a4dd", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets\",\"value\":[{\"@odata.etag\":\"\\\"0x8D92154F3930D33\\\"\",\"name\":\"cognitive-services-key-skillset650606887f8\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":\"Space\",\"defaultLanguageCode\":\"en\",\"detectOrientation\":true,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":{\"@odata.type\":\"#Microsoft.Azure.Search.DefaultCognitiveServices\",\"description\":null},\"knowledgeStore\":null,\"encryptionKey\":null},{\"@odata.etag\":\"\\\"0x8D92154F39C0F84\\\"\",\"name\":\"entity-recognition-skillset57627faebffe8\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.EntityRecognitionSkill\",\"name\":\"myentity\",\"description\":\"Tested Entity Recognition skill\",\"context\":\"/document\",\"categories\":[\"Person\",\"Quantity\",\"Organization\",\"URL\",\"Email\",\"Location\",\"DateTime\"],\"defaultLanguageCode\":\"en\",\"minimumPrecision\":null,\"includeTypelessEntities\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"entities\",\"targetName\":\"myEntities\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}]}", + "x-ms-client-request-id" : "9a0eaebb-da13-4b72-9dc1-ffeb8e6de40b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('cognitive-services-key-skillset103021efb6d')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('cognitive-services-key-skillset650606887f8')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "153a6445-fdea-48ad-b35c-6c5da0c2e0e3" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "78a8c0ba-1558-4c36-ab9d-bddf41f4e70d" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "153a6445-fdea-48ad-b35c-6c5da0c2e0e3", - "elapsed-time" : "67", + "client-request-id" : "78a8c0ba-1558-4c36-ab9d-bddf41f4e70d", + "elapsed-time" : "21", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "153a6445-fdea-48ad-b35c-6c5da0c2e0e3", + "request-id" : "78a8c0ba-1558-4c36-ab9d-bddf41f4e70d", "StatusCode" : "204", - "x-ms-client-request-id" : "153a6445-fdea-48ad-b35c-6c5da0c2e0e3", - "Date" : "Fri, 02 Apr 2021 22:39:46 GMT" + "x-ms-client-request-id" : "78a8c0ba-1558-4c36-ab9d-bddf41f4e70d", + "Date" : "Thu, 27 May 2021 21:18:19 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('entity-recognition-skillset98836843aadfa')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('entity-recognition-skillset57627faebffe8')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "89599292-3c19-471b-80ba-3d64437d6ced" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "054dc5db-414d-401c-b704-02193540444b" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "89599292-3c19-471b-80ba-3d64437d6ced", - "elapsed-time" : "54", + "client-request-id" : "054dc5db-414d-401c-b704-02193540444b", + "elapsed-time" : "22", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "89599292-3c19-471b-80ba-3d64437d6ced", + "request-id" : "054dc5db-414d-401c-b704-02193540444b", "StatusCode" : "204", - "x-ms-client-request-id" : "89599292-3c19-471b-80ba-3d64437d6ced", - "Date" : "Fri, 02 Apr 2021 22:39:45 GMT" + "x-ms-client-request-id" : "054dc5db-414d-401c-b704-02193540444b", + "Date" : "Thu, 27 May 2021 21:18:19 GMT" }, "Exception" : null } ], - "variables" : [ "cognitive-services-key-skillset103021efb6d", "entity-recognition-skillset98836843aadfa" ] + "variables" : [ "cognitive-services-key-skillset650606887f8", "entity-recognition-skillset57627faebffe8" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.canListSkillsetsWithSelectedField.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.canListSkillsetsWithSelectedField.json index 30e38d738a01..85858b672824 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.canListSkillsetsWithSelectedField.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.canListSkillsetsWithSelectedField.json @@ -1,130 +1,130 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "47c73e05-7b1a-4c5b-9cd9-15f02b08272d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4aeb4ec9-ece1-4960-ba41-052cdd386f2d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "822", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "47c73e05-7b1a-4c5b-9cd9-15f02b08272d", + "request-id" : "4aeb4ec9-ece1-4960-ba41-052cdd386f2d", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:49 GMT", + "Date" : "Thu, 27 May 2021 21:18:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62839811126\"", - "client-request-id" : "47c73e05-7b1a-4c5b-9cd9-15f02b08272d", - "elapsed-time" : "84", + "ETag" : "W/\"0x8D92154F4CBC61F\"", + "client-request-id" : "4aeb4ec9-ece1-4960-ba41-052cdd386f2d", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "822", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62839811126\\\"\",\"name\":\"cognitive-services-key-skillset470284d5fe4\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":{\"@odata.type\":\"#Microsoft.Azure.Search.DefaultCognitiveServices\",\"description\":null},\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "47c73e05-7b1a-4c5b-9cd9-15f02b08272d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F4CBC61F\\\"\",\"name\":\"cognitive-services-key-skillset556873db61a\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":{\"@odata.type\":\"#Microsoft.Azure.Search.DefaultCognitiveServices\",\"description\":null},\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "4aeb4ec9-ece1-4960-ba41-052cdd386f2d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('cognitive-services-key-skillset470284d5fe4')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('cognitive-services-key-skillset556873db61a')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "58781b1c-f643-411d-bb22-fa539605c08a", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9c2ddb4d-f9ac-4c9d-805c-b18d47863bf2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "711", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "58781b1c-f643-411d-bb22-fa539605c08a", + "request-id" : "9c2ddb4d-f9ac-4c9d-805c-b18d47863bf2", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:49 GMT", + "Date" : "Thu, 27 May 2021 21:18:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283991409B\"", - "client-request-id" : "58781b1c-f643-411d-bb22-fa539605c08a", - "elapsed-time" : "75", + "ETag" : "W/\"0x8D92154F4D58BE7\"", + "client-request-id" : "9c2ddb4d-f9ac-4c9d-805c-b18d47863bf2", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "711", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283991409B\\\"\",\"name\":\"entity-recognition-skillset27477dae1c3ff\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.EntityRecognitionSkill\",\"name\":\"myentity\",\"description\":\"Tested Entity Recognition skill\",\"context\":\"/document\",\"categories\":[],\"defaultLanguageCode\":null,\"minimumPrecision\":null,\"includeTypelessEntities\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"entities\",\"targetName\":\"myEntities\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "58781b1c-f643-411d-bb22-fa539605c08a", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F4D58BE7\\\"\",\"name\":\"entity-recognition-skillset9061527168a2a\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.EntityRecognitionSkill\",\"name\":\"myentity\",\"description\":\"Tested Entity Recognition skill\",\"context\":\"/document\",\"categories\":[],\"defaultLanguageCode\":null,\"minimumPrecision\":null,\"includeTypelessEntities\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"entities\",\"targetName\":\"myEntities\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "9c2ddb4d-f9ac-4c9d-805c-b18d47863bf2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('entity-recognition-skillset27477dae1c3ff')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('entity-recognition-skillset9061527168a2a')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/skillsets?$select=name&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?$select=name&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3aeaa6b9-51f4-459a-ac1c-7cde04aa69b4" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "23438c2e-6327-4cfc-afbb-b5bce466f335" }, "Response" : { + "content-length" : "203", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3aeaa6b9-51f4-459a-ac1c-7cde04aa69b4", + "request-id" : "23438c2e-6327-4cfc-afbb-b5bce466f335", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:49 GMT", + "Date" : "Thu, 27 May 2021 21:18:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3aeaa6b9-51f4-459a-ac1c-7cde04aa69b4", - "elapsed-time" : "35", + "client-request-id" : "23438c2e-6327-4cfc-afbb-b5bce466f335", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "203", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets(name)\",\"value\":[{\"name\":\"cognitive-services-key-skillset470284d5fe4\"},{\"name\":\"entity-recognition-skillset27477dae1c3ff\"}]}", - "x-ms-client-request-id" : "3aeaa6b9-51f4-459a-ac1c-7cde04aa69b4", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets(name)\",\"value\":[{\"name\":\"cognitive-services-key-skillset556873db61a\"},{\"name\":\"entity-recognition-skillset9061527168a2a\"}]}", + "x-ms-client-request-id" : "23438c2e-6327-4cfc-afbb-b5bce466f335", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('cognitive-services-key-skillset470284d5fe4')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('cognitive-services-key-skillset556873db61a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d52e56e7-6f9a-4a12-988d-bdb35afef192" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b47e2e6c-7d69-41ab-9321-7a7e3b662d6c" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d52e56e7-6f9a-4a12-988d-bdb35afef192", - "elapsed-time" : "51", + "client-request-id" : "b47e2e6c-7d69-41ab-9321-7a7e3b662d6c", + "elapsed-time" : "22", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "d52e56e7-6f9a-4a12-988d-bdb35afef192", + "request-id" : "b47e2e6c-7d69-41ab-9321-7a7e3b662d6c", "StatusCode" : "204", - "x-ms-client-request-id" : "d52e56e7-6f9a-4a12-988d-bdb35afef192", - "Date" : "Fri, 02 Apr 2021 22:39:49 GMT" + "x-ms-client-request-id" : "b47e2e6c-7d69-41ab-9321-7a7e3b662d6c", + "Date" : "Thu, 27 May 2021 21:18:21 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('entity-recognition-skillset27477dae1c3ff')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('entity-recognition-skillset9061527168a2a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0f5e2f0-ee2e-40a1-8ed8-6c44909c0c87" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a9828e0c-7671-4425-bc16-3a9ae9de52d4" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d0f5e2f0-ee2e-40a1-8ed8-6c44909c0c87", - "elapsed-time" : "59", + "client-request-id" : "a9828e0c-7671-4425-bc16-3a9ae9de52d4", + "elapsed-time" : "20", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "d0f5e2f0-ee2e-40a1-8ed8-6c44909c0c87", + "request-id" : "a9828e0c-7671-4425-bc16-3a9ae9de52d4", "StatusCode" : "204", - "x-ms-client-request-id" : "d0f5e2f0-ee2e-40a1-8ed8-6c44909c0c87", - "Date" : "Fri, 02 Apr 2021 22:39:49 GMT" + "x-ms-client-request-id" : "a9828e0c-7671-4425-bc16-3a9ae9de52d4", + "Date" : "Thu, 27 May 2021 21:18:21 GMT" }, "Exception" : null } ], - "variables" : [ "cognitive-services-key-skillset470284d5fe4", "entity-recognition-skillset27477dae1c3ff" ] + "variables" : [ "cognitive-services-key-skillset556873db61a", "entity-recognition-skillset9061527168a2a" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createCustomSkillsetReturnsCorrectDefinition.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createCustomSkillsetReturnsCorrectDefinition.json index cdf5cc7814cc..778d40b9c032 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createCustomSkillsetReturnsCorrectDefinition.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createCustomSkillsetReturnsCorrectDefinition.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4a3d4223-e4a8-45c1-a029-088ccc662257", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f83d464b-6d74-4413-83a2-dd542bea8db9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "846", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4a3d4223-e4a8-45c1-a029-088ccc662257", + "request-id" : "f83d464b-6d74-4413-83a2-dd542bea8db9", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:47 GMT", + "Date" : "Thu, 27 May 2021 21:18:20 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628384A56F2\"", - "client-request-id" : "4a3d4223-e4a8-45c1-a029-088ccc662257", - "elapsed-time" : "106", + "ETag" : "W/\"0x8D92154F408A0BB\"", + "client-request-id" : "f83d464b-6d74-4413-83a2-dd542bea8db9", + "elapsed-time" : "47", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "846", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F628384A56F2\\\"\",\"name\":\"custom-skillset62884b8a7372ffd504c\",\"description\":\"Skillset for testing custom skillsets\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Custom.WebApiSkill\",\"name\":\"webapi-skill\",\"description\":\"Calls an Azure function, which in turn calls Bing Entity Search\",\"context\":null,\"uri\":\"https://indexer-e2e-webskill.azurewebsites.net/api/InvokeTextAnalyticsV3?code=foo\",\"httpMethod\":\"POST\",\"timeout\":null,\"batchSize\":null,\"degreeOfParallelism\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"textItems\",\"targetName\":\"myTextItems\"}],\"httpHeaders\":{\"Ocp-Apim-Subscription-Key\":\"foobar\"}}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "4a3d4223-e4a8-45c1-a029-088ccc662257", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F408A0BB\\\"\",\"name\":\"custom-skillset35697d9300cf69fa940\",\"description\":\"Skillset for testing custom skillsets\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Custom.WebApiSkill\",\"name\":\"webapi-skill\",\"description\":\"Calls an Azure function, which in turn calls Bing Entity Search\",\"context\":null,\"uri\":\"https://indexer-e2e-webskill.azurewebsites.net/api/InvokeTextAnalyticsV3?code=foo\",\"httpMethod\":\"POST\",\"timeout\":null,\"batchSize\":null,\"degreeOfParallelism\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"textItems\",\"targetName\":\"myTextItems\"}],\"httpHeaders\":{\"Ocp-Apim-Subscription-Key\":\"foobar\"}}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "f83d464b-6d74-4413-83a2-dd542bea8db9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('custom-skillset62884b8a7372ffd504c')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('custom-skillset35697d9300cf69fa940')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('custom-skillset62884b8a7372ffd504c')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('custom-skillset35697d9300cf69fa940')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "320b5db3-993c-4b32-a937-c2eff20eb511" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a9e8a0d2-a0e8-4188-b8b2-2e24449e1e7b" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "320b5db3-993c-4b32-a937-c2eff20eb511", - "elapsed-time" : "64", + "client-request-id" : "a9e8a0d2-a0e8-4188-b8b2-2e24449e1e7b", + "elapsed-time" : "28", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "320b5db3-993c-4b32-a937-c2eff20eb511", + "request-id" : "a9e8a0d2-a0e8-4188-b8b2-2e24449e1e7b", "StatusCode" : "204", - "x-ms-client-request-id" : "320b5db3-993c-4b32-a937-c2eff20eb511", - "Date" : "Fri, 02 Apr 2021 22:39:46 GMT" + "x-ms-client-request-id" : "a9e8a0d2-a0e8-4188-b8b2-2e24449e1e7b", + "Date" : "Thu, 27 May 2021 21:18:19 GMT" }, "Exception" : null } ], - "variables" : [ "custom-skillset62884b8a7372ffd504c" ] + "variables" : [ "custom-skillset35697d9300cf69fa940" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateCreatesWhenSkillsetDoesNotExist.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateCreatesWhenSkillsetDoesNotExist.json index 674bfe9c0ac2..d685b9740071 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateCreatesWhenSkillsetDoesNotExist.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateCreatesWhenSkillsetDoesNotExist.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/skillsets('testskillset3614310401ad736974b3')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('testskillset1303340dbccb4c0724eb')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "edee6412-0fc8-4630-8f91-947e9443bef7", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "10b94c92-94db-43ca-b161-64ef05710c7d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "739", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "edee6412-0fc8-4630-8f91-947e9443bef7", + "request-id" : "10b94c92-94db-43ca-b161-64ef05710c7d", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:44 GMT", + "Date" : "Thu, 27 May 2021 21:18:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283695A402\"", - "client-request-id" : "edee6412-0fc8-4630-8f91-947e9443bef7", - "elapsed-time" : "89", + "ETag" : "W/\"0x8D92154F300C4B0\"", + "client-request-id" : "10b94c92-94db-43ca-b161-64ef05710c7d", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "739", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283695A402\\\"\",\"name\":\"testskillset3614310401ad736974b3\",\"description\":\"Skillset for testing OCR\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr-0\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext0\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "edee6412-0fc8-4630-8f91-947e9443bef7", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F300C4B0\\\"\",\"name\":\"testskillset1303340dbccb4c0724eb\",\"description\":\"Skillset for testing OCR\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr-0\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext0\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "10b94c92-94db-43ca-b161-64ef05710c7d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('testskillset3614310401ad736974b3')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('testskillset1303340dbccb4c0724eb')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('testskillset3614310401ad736974b3')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('testskillset1303340dbccb4c0724eb')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "61cdb160-199d-4947-b79b-6504b99c2c23" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "54f0d5b0-4990-4ab0-b60c-e23497a140a6" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "61cdb160-199d-4947-b79b-6504b99c2c23", - "elapsed-time" : "75", + "client-request-id" : "54f0d5b0-4990-4ab0-b60c-e23497a140a6", + "elapsed-time" : "20", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "61cdb160-199d-4947-b79b-6504b99c2c23", + "request-id" : "54f0d5b0-4990-4ab0-b60c-e23497a140a6", "StatusCode" : "204", - "x-ms-client-request-id" : "61cdb160-199d-4947-b79b-6504b99c2c23", - "Date" : "Fri, 02 Apr 2021 22:39:44 GMT" + "x-ms-client-request-id" : "54f0d5b0-4990-4ab0-b60c-e23497a140a6", + "Date" : "Thu, 27 May 2021 21:18:18 GMT" }, "Exception" : null } ], - "variables" : [ "testskillset3614310401ad736974b3" ] + "variables" : [ "testskillset1303340dbccb4c0724eb" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateCreatesWhenSkillsetDoesNotExistWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateCreatesWhenSkillsetDoesNotExistWithResponse.json index 1599cf757a74..7ba3638e28b9 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateCreatesWhenSkillsetDoesNotExistWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateCreatesWhenSkillsetDoesNotExistWithResponse.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/skillsets('testskillset06795e1ab4394a9b2416')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('testskillset999671c72573a9d1b4f4')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8b66d655-58b8-49fe-8f9d-a166ce28a127", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "66f669d1-b577-45ea-9408-b706fa639c75", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "739", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8b66d655-58b8-49fe-8f9d-a166ce28a127", + "request-id" : "66f669d1-b577-45ea-9408-b706fa639c75", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:49 GMT", + "Date" : "Thu, 27 May 2021 21:18:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62839CEC97C\"", - "client-request-id" : "8b66d655-58b8-49fe-8f9d-a166ce28a127", - "elapsed-time" : "130", + "ETag" : "W/\"0x8D92154F4F267FA\"", + "client-request-id" : "66f669d1-b577-45ea-9408-b706fa639c75", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "739", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62839CEC97C\\\"\",\"name\":\"testskillset06795e1ab4394a9b2416\",\"description\":\"Skillset for testing OCR\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr-0\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext0\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "8b66d655-58b8-49fe-8f9d-a166ce28a127", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F4F267FA\\\"\",\"name\":\"testskillset999671c72573a9d1b4f4\",\"description\":\"Skillset for testing OCR\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr-0\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext0\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "66f669d1-b577-45ea-9408-b706fa639c75", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('testskillset06795e1ab4394a9b2416')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('testskillset999671c72573a9d1b4f4')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('testskillset06795e1ab4394a9b2416')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('testskillset999671c72573a9d1b4f4')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e84544c-d58c-4015-bbc5-bdb9b75d6082" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ff65cca0-26fe-4296-bbe3-7cb073d8cd40" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4e84544c-d58c-4015-bbc5-bdb9b75d6082", - "elapsed-time" : "85", + "client-request-id" : "ff65cca0-26fe-4296-bbe3-7cb073d8cd40", + "elapsed-time" : "21", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "4e84544c-d58c-4015-bbc5-bdb9b75d6082", + "request-id" : "ff65cca0-26fe-4296-bbe3-7cb073d8cd40", "StatusCode" : "204", - "x-ms-client-request-id" : "4e84544c-d58c-4015-bbc5-bdb9b75d6082", - "Date" : "Fri, 02 Apr 2021 22:39:50 GMT" + "x-ms-client-request-id" : "ff65cca0-26fe-4296-bbe3-7cb073d8cd40", + "Date" : "Thu, 27 May 2021 21:18:21 GMT" }, "Exception" : null } ], - "variables" : [ "testskillset06795e1ab4394a9b2416" ] + "variables" : [ "testskillset999671c72573a9d1b4f4" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateSkillsetIfExistsSucceedsOnExistingResource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateSkillsetIfExistsSucceedsOnExistingResource.json index 83a5e1e0d5ce..1af6b4e8250c 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateSkillsetIfExistsSucceedsOnExistingResource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateSkillsetIfExistsSucceedsOnExistingResource.json @@ -1,82 +1,82 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset633062c23301649514fc')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset51326c2e32a4535f44e0')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "18cfdf65-199a-4be0-b75b-9214d0a06e5e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f5921bb4-96c9-4a7c-a6ce-954d1563c5fe", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "754", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "18cfdf65-199a-4be0-b75b-9214d0a06e5e", + "request-id" : "f5921bb4-96c9-4a7c-a6ce-954d1563c5fe", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:44 GMT", + "Date" : "Thu, 27 May 2021 21:18:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62836B65111\"", - "client-request-id" : "18cfdf65-199a-4be0-b75b-9214d0a06e5e", - "elapsed-time" : "89", + "ETag" : "W/\"0x8D92154F3111B57\"", + "client-request-id" : "f5921bb4-96c9-4a7c-a6ce-954d1563c5fe", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "754", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62836B65111\\\"\",\"name\":\"ocr-skillset633062c23301649514fc\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "18cfdf65-199a-4be0-b75b-9214d0a06e5e", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F3111B57\\\"\",\"name\":\"ocr-skillset51326c2e32a4535f44e0\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "f5921bb4-96c9-4a7c-a6ce-954d1563c5fe", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset633062c23301649514fc')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset51326c2e32a4535f44e0')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset633062c23301649514fc')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset51326c2e32a4535f44e0')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "219b4d38-d672-41ce-8d18-f671ec134011", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "eafef36f-4df1-41e0-988f-4c6191dec50d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "695", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "219b4d38-d672-41ce-8d18-f671ec134011", + "request-id" : "eafef36f-4df1-41e0-988f-4c6191dec50d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:44 GMT", + "Date" : "Thu, 27 May 2021 21:18:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62836C595FD\"", - "client-request-id" : "219b4d38-d672-41ce-8d18-f671ec134011", - "elapsed-time" : "66", + "ETag" : "W/\"0x8D92154F31A1DAE\"", + "client-request-id" : "eafef36f-4df1-41e0-988f-4c6191dec50d", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "695", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62836C595FD\\\"\",\"name\":\"ocr-skillset633062c23301649514fc\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mydescription/*/Tags/*\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "219b4d38-d672-41ce-8d18-f671ec134011", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F31A1DAE\\\"\",\"name\":\"ocr-skillset51326c2e32a4535f44e0\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mydescription/*/Tags/*\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "eafef36f-4df1-41e0-988f-4c6191dec50d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset633062c23301649514fc')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset51326c2e32a4535f44e0')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3f68d646-8b36-4b1d-8111-0665d354c1a5" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d28661a5-3348-4995-8b4b-0f443c84f47a" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3f68d646-8b36-4b1d-8111-0665d354c1a5", - "elapsed-time" : "76", + "client-request-id" : "d28661a5-3348-4995-8b4b-0f443c84f47a", + "elapsed-time" : "20", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "3f68d646-8b36-4b1d-8111-0665d354c1a5", + "request-id" : "d28661a5-3348-4995-8b4b-0f443c84f47a", "StatusCode" : "204", - "x-ms-client-request-id" : "3f68d646-8b36-4b1d-8111-0665d354c1a5", - "Date" : "Fri, 02 Apr 2021 22:39:44 GMT" + "x-ms-client-request-id" : "d28661a5-3348-4995-8b4b-0f443c84f47a", + "Date" : "Thu, 27 May 2021 21:18:18 GMT" }, "Exception" : null } ], - "variables" : [ "ocr-skillset633062c23301649514fc" ] + "variables" : [ "ocr-skillset51326c2e32a4535f44e0" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateSkillsetIfNotChangedFailsWhenResourceChanged.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateSkillsetIfNotChangedFailsWhenResourceChanged.json index 36172f4e9f60..e0998ca42617 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateSkillsetIfNotChangedFailsWhenResourceChanged.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateSkillsetIfNotChangedFailsWhenResourceChanged.json @@ -1,110 +1,110 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset088881b66161a1ec54f6')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset20107c0f75385780145e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c7c61495-b413-4457-bb1b-4c7426a18b32", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c2b28ce9-06c9-4589-891d-ee995eead91a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "754", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c7c61495-b413-4457-bb1b-4c7426a18b32", + "request-id" : "c2b28ce9-06c9-4589-891d-ee995eead91a", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:40 GMT", + "Date" : "Thu, 27 May 2021 21:18:16 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283428F2CF\"", - "client-request-id" : "c7c61495-b413-4457-bb1b-4c7426a18b32", - "elapsed-time" : "80", + "ETag" : "W/\"0x8D92154F195CEE3\"", + "client-request-id" : "c2b28ce9-06c9-4589-891d-ee995eead91a", + "elapsed-time" : "1460", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "754", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283428F2CF\\\"\",\"name\":\"ocr-skillset088881b66161a1ec54f6\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "c7c61495-b413-4457-bb1b-4c7426a18b32", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F195CEE3\\\"\",\"name\":\"ocr-skillset20107c0f75385780145e\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "c2b28ce9-06c9-4589-891d-ee995eead91a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset088881b66161a1ec54f6')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset20107c0f75385780145e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset088881b66161a1ec54f6')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset20107c0f75385780145e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "99d2c5fe-4262-4911-b2a6-bccd0c76225b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4ea066a9-5469-4557-8610-4b85848aab81", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "695", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "99d2c5fe-4262-4911-b2a6-bccd0c76225b", + "request-id" : "4ea066a9-5469-4557-8610-4b85848aab81", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:40 GMT", + "Date" : "Thu, 27 May 2021 21:18:15 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628343CA556\"", - "client-request-id" : "99d2c5fe-4262-4911-b2a6-bccd0c76225b", - "elapsed-time" : "86", + "ETag" : "W/\"0x8D92154F1A33EDB\"", + "client-request-id" : "4ea066a9-5469-4557-8610-4b85848aab81", + "elapsed-time" : "51", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "695", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F628343CA556\\\"\",\"name\":\"ocr-skillset088881b66161a1ec54f6\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mydescription/*/Tags/*\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "99d2c5fe-4262-4911-b2a6-bccd0c76225b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F1A33EDB\\\"\",\"name\":\"ocr-skillset20107c0f75385780145e\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mydescription/*/Tags/*\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "4ea066a9-5469-4557-8610-4b85848aab81", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset088881b66161a1ec54f6')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset20107c0f75385780145e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bda02961-ead8-4ffb-91e7-9b3a56b78a1c", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "cfc48f7d-160b-43b9-8e0a-7d6f75054b5b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "160", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "bda02961-ead8-4ffb-91e7-9b3a56b78a1c", + "request-id" : "cfc48f7d-160b-43b9-8e0a-7d6f75054b5b", "StatusCode" : "412", - "Date" : "Fri, 02 Apr 2021 22:39:40 GMT", + "Date" : "Thu, 27 May 2021 21:18:16 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "bda02961-ead8-4ffb-91e7-9b3a56b78a1c", - "elapsed-time" : "34", + "client-request-id" : "cfc48f7d-160b-43b9-8e0a-7d6f75054b5b", + "elapsed-time" : "12", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "bda02961-ead8-4ffb-91e7-9b3a56b78a1c", + "x-ms-client-request-id" : "cfc48f7d-160b-43b9-8e0a-7d6f75054b5b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset088881b66161a1ec54f6')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset20107c0f75385780145e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d7f80c09-26ad-496f-953b-94bc8e244e98" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "52118cf5-ce3f-4046-900f-030815a14e3c" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d7f80c09-26ad-496f-953b-94bc8e244e98", - "elapsed-time" : "75", + "client-request-id" : "52118cf5-ce3f-4046-900f-030815a14e3c", + "elapsed-time" : "23", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "d7f80c09-26ad-496f-953b-94bc8e244e98", + "request-id" : "52118cf5-ce3f-4046-900f-030815a14e3c", "StatusCode" : "204", - "x-ms-client-request-id" : "d7f80c09-26ad-496f-953b-94bc8e244e98", - "Date" : "Fri, 02 Apr 2021 22:39:40 GMT" + "x-ms-client-request-id" : "52118cf5-ce3f-4046-900f-030815a14e3c", + "Date" : "Thu, 27 May 2021 21:18:16 GMT" }, "Exception" : null } ], - "variables" : [ "ocr-skillset088881b66161a1ec54f6" ] + "variables" : [ "ocr-skillset20107c0f75385780145e" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateSkillsetIfNotChangedSucceedsWhenResourceUnchanged.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateSkillsetIfNotChangedSucceedsWhenResourceUnchanged.json index cc169051f218..fba98c322910 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateSkillsetIfNotChangedSucceedsWhenResourceUnchanged.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateSkillsetIfNotChangedSucceedsWhenResourceUnchanged.json @@ -1,82 +1,82 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset75377fcde63059dec40b')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset039270a47dbf0a0884c4')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bca114c5-2249-4819-8420-9ede3377464d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4a103656-689d-47bd-812c-c72fef9cc2ee", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "754", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "bca114c5-2249-4819-8420-9ede3377464d", + "request-id" : "4a103656-689d-47bd-812c-c72fef9cc2ee", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:43 GMT", + "Date" : "Thu, 27 May 2021 21:18:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628363FFB10\"", - "client-request-id" : "bca114c5-2249-4819-8420-9ede3377464d", - "elapsed-time" : "86", + "ETag" : "W/\"0x8D92154F2D343C7\"", + "client-request-id" : "4a103656-689d-47bd-812c-c72fef9cc2ee", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "754", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F628363FFB10\\\"\",\"name\":\"ocr-skillset75377fcde63059dec40b\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "bca114c5-2249-4819-8420-9ede3377464d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F2D343C7\\\"\",\"name\":\"ocr-skillset039270a47dbf0a0884c4\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "4a103656-689d-47bd-812c-c72fef9cc2ee", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset75377fcde63059dec40b')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset039270a47dbf0a0884c4')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset75377fcde63059dec40b')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset039270a47dbf0a0884c4')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ffec2fc8-a303-478c-9748-9e4d69db2880", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bee2a33d-e37c-4e9d-9aa6-6049a5ebf8b8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "695", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ffec2fc8-a303-478c-9748-9e4d69db2880", + "request-id" : "bee2a33d-e37c-4e9d-9aa6-6049a5ebf8b8", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:43 GMT", + "Date" : "Thu, 27 May 2021 21:18:17 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62836511509\"", - "client-request-id" : "ffec2fc8-a303-478c-9748-9e4d69db2880", - "elapsed-time" : "70", + "ETag" : "W/\"0x8D92154F2DC4619\"", + "client-request-id" : "bee2a33d-e37c-4e9d-9aa6-6049a5ebf8b8", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "695", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62836511509\\\"\",\"name\":\"ocr-skillset75377fcde63059dec40b\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mydescription/*/Tags/*\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "ffec2fc8-a303-478c-9748-9e4d69db2880", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F2DC4619\\\"\",\"name\":\"ocr-skillset039270a47dbf0a0884c4\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mydescription/*/Tags/*\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "bee2a33d-e37c-4e9d-9aa6-6049a5ebf8b8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset75377fcde63059dec40b')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset039270a47dbf0a0884c4')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0b808a6-5543-4d76-a9fb-f04e2683f284" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "782e4217-e483-4499-a4ca-62e9d9294126" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c0b808a6-5543-4d76-a9fb-f04e2683f284", - "elapsed-time" : "76", + "client-request-id" : "782e4217-e483-4499-a4ca-62e9d9294126", + "elapsed-time" : "23", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "c0b808a6-5543-4d76-a9fb-f04e2683f284", + "request-id" : "782e4217-e483-4499-a4ca-62e9d9294126", "StatusCode" : "204", - "x-ms-client-request-id" : "c0b808a6-5543-4d76-a9fb-f04e2683f284", - "Date" : "Fri, 02 Apr 2021 22:39:43 GMT" + "x-ms-client-request-id" : "782e4217-e483-4499-a4ca-62e9d9294126", + "Date" : "Thu, 27 May 2021 21:18:18 GMT" }, "Exception" : null } ], - "variables" : [ "ocr-skillset75377fcde63059dec40b" ] + "variables" : [ "ocr-skillset039270a47dbf0a0884c4" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateSkillsetIfNotExistsSucceedsOnNoResource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateSkillsetIfNotExistsSucceedsOnNoResource.json index f7073fa10ad5..e8b1a6aff607 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateSkillsetIfNotExistsSucceedsOnNoResource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateSkillsetIfNotExistsSucceedsOnNoResource.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset84893638c542f131149d')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset94603eecdd8bd5aab4a3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "650f1cfb-8283-45df-a246-ec1bcdefd6eb", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fec953e9-453d-4fca-9fd7-8b07b1ac137d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "754", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "650f1cfb-8283-45df-a246-ec1bcdefd6eb", + "request-id" : "fec953e9-453d-4fca-9fd7-8b07b1ac137d", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:44 GMT", + "Date" : "Thu, 27 May 2021 21:18:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283701E627\"", - "client-request-id" : "650f1cfb-8283-45df-a246-ec1bcdefd6eb", - "elapsed-time" : "68", + "ETag" : "W/\"0x8D92154F33B8E72\"", + "client-request-id" : "fec953e9-453d-4fca-9fd7-8b07b1ac137d", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "754", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283701E627\\\"\",\"name\":\"ocr-skillset84893638c542f131149d\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "650f1cfb-8283-45df-a246-ec1bcdefd6eb", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F33B8E72\\\"\",\"name\":\"ocr-skillset94603eecdd8bd5aab4a3\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "fec953e9-453d-4fca-9fd7-8b07b1ac137d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset84893638c542f131149d')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset94603eecdd8bd5aab4a3')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset84893638c542f131149d')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset94603eecdd8bd5aab4a3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f6fc942e-1c02-433a-9bd4-b18ddf737064" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8fdc4c88-3772-4edb-ba6e-444f43c07ae0" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f6fc942e-1c02-433a-9bd4-b18ddf737064", - "elapsed-time" : "73", + "client-request-id" : "8fdc4c88-3772-4edb-ba6e-444f43c07ae0", + "elapsed-time" : "20", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "f6fc942e-1c02-433a-9bd4-b18ddf737064", + "request-id" : "8fdc4c88-3772-4edb-ba6e-444f43c07ae0", "StatusCode" : "204", - "x-ms-client-request-id" : "f6fc942e-1c02-433a-9bd4-b18ddf737064", - "Date" : "Fri, 02 Apr 2021 22:39:44 GMT" + "x-ms-client-request-id" : "8fdc4c88-3772-4edb-ba6e-444f43c07ae0", + "Date" : "Thu, 27 May 2021 21:18:19 GMT" }, "Exception" : null } ], - "variables" : [ "ocr-skillset84893638c542f131149d" ] + "variables" : [ "ocr-skillset94603eecdd8bd5aab4a3" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateUpdatesCognitiveService.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateUpdatesCognitiveService.json index 525b8df37b8d..c468f63cc214 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateUpdatesCognitiveService.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateUpdatesCognitiveService.json @@ -1,82 +1,82 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "265de079-0dfc-4344-9cd2-d42830bb3179", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "332d76a1-9c07-47ab-b99c-530d31f8dbbd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "754", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "265de079-0dfc-4344-9cd2-d42830bb3179", + "request-id" : "332d76a1-9c07-47ab-b99c-530d31f8dbbd", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:41 GMT", + "Date" : "Thu, 27 May 2021 21:18:16 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62834C6AE09\"", - "client-request-id" : "265de079-0dfc-4344-9cd2-d42830bb3179", - "elapsed-time" : "63", + "ETag" : "W/\"0x8D92154F1F20992\"", + "client-request-id" : "332d76a1-9c07-47ab-b99c-530d31f8dbbd", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "754", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62834C6AE09\\\"\",\"name\":\"ocr-skillset3948665377feeed314c2\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "265de079-0dfc-4344-9cd2-d42830bb3179", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F1F20992\\\"\",\"name\":\"ocr-skillset3510950397cc8753742d\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "332d76a1-9c07-47ab-b99c-530d31f8dbbd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset3948665377feeed314c2')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset3510950397cc8753742d')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset3948665377feeed314c2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset3510950397cc8753742d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "eb9e105d-7649-4b0b-9104-b831da5e6102", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b485e7d5-e3b3-4c29-b25a-9e83413e3dc2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "844", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "eb9e105d-7649-4b0b-9104-b831da5e6102", + "request-id" : "b485e7d5-e3b3-4c29-b25a-9e83413e3dc2", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:41 GMT", + "Date" : "Thu, 27 May 2021 21:18:17 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62834D66833\"", - "client-request-id" : "eb9e105d-7649-4b0b-9104-b831da5e6102", - "elapsed-time" : "86", + "ETag" : "W/\"0x8D92154F1FBCF5A\"", + "client-request-id" : "b485e7d5-e3b3-4c29-b25a-9e83413e3dc2", + "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "844", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62834D66833\\\"\",\"name\":\"ocr-skillset3948665377feeed314c2\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":{\"@odata.type\":\"#Microsoft.Azure.Search.DefaultCognitiveServices\",\"description\":\"description\"},\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "eb9e105d-7649-4b0b-9104-b831da5e6102", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F1FBCF5A\\\"\",\"name\":\"ocr-skillset3510950397cc8753742d\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":{\"@odata.type\":\"#Microsoft.Azure.Search.DefaultCognitiveServices\",\"description\":\"description\"},\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "b485e7d5-e3b3-4c29-b25a-9e83413e3dc2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset3948665377feeed314c2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset3510950397cc8753742d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "03e9f75d-aacb-48e4-8edc-f6ee59211caa" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1f594c2f-4af9-4b9d-b21f-379ddaa5191a" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "03e9f75d-aacb-48e4-8edc-f6ee59211caa", - "elapsed-time" : "53", + "client-request-id" : "1f594c2f-4af9-4b9d-b21f-379ddaa5191a", + "elapsed-time" : "22", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "03e9f75d-aacb-48e4-8edc-f6ee59211caa", + "request-id" : "1f594c2f-4af9-4b9d-b21f-379ddaa5191a", "StatusCode" : "204", - "x-ms-client-request-id" : "03e9f75d-aacb-48e4-8edc-f6ee59211caa", - "Date" : "Fri, 02 Apr 2021 22:39:41 GMT" + "x-ms-client-request-id" : "1f594c2f-4af9-4b9d-b21f-379ddaa5191a", + "Date" : "Thu, 27 May 2021 21:18:16 GMT" }, "Exception" : null } ], - "variables" : [ "ocr-skillset3948665377feeed314c2" ] + "variables" : [ "ocr-skillset3510950397cc8753742d" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateUpdatesSkills.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateUpdatesSkills.json index 59bcb4a18940..20c5b5192d68 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateUpdatesSkills.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateUpdatesSkills.json @@ -1,82 +1,82 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3626a630-517d-4aaa-89e3-5a453c49cc15", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "079d416f-08f9-4a6c-81fb-575fb5fe6054", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "769", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3626a630-517d-4aaa-89e3-5a453c49cc15", + "request-id" : "079d416f-08f9-4a6c-81fb-575fb5fe6054", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:49 GMT", + "Date" : "Thu, 27 May 2021 21:18:20 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62839551781\"", - "client-request-id" : "3626a630-517d-4aaa-89e3-5a453c49cc15", - "elapsed-time" : "73", + "ETag" : "W/\"0x8D92154F4B1A9B0\"", + "client-request-id" : "079d416f-08f9-4a6c-81fb-575fb5fe6054", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "769", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62839551781\\\"\",\"name\":\"ocr-skillsetcreateorupdateupdatesskillsd8879965\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "3626a630-517d-4aaa-89e3-5a453c49cc15", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F4B1A9B0\\\"\",\"name\":\"ocr-skillsetcreateorupdateupdatesskills96701123\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "079d416f-08f9-4a6c-81fb-575fb5fe6054", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillsetcreateorupdateupdatesskillsd8879965')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillsetcreateorupdateupdatesskills96701123')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillsetcreateorupdateupdatesskillsd8879965')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillsetcreateorupdateupdatesskills96701123')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "77244218-d8b8-49d1-858c-89c0fc463d87", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3703caef-2fde-4f1f-a248-81ba9307b674", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "694", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "77244218-d8b8-49d1-858c-89c0fc463d87", + "request-id" : "3703caef-2fde-4f1f-a248-81ba9307b674", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:49 GMT", + "Date" : "Thu, 27 May 2021 21:18:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283964F8C4\"", - "client-request-id" : "77244218-d8b8-49d1-858c-89c0fc463d87", - "elapsed-time" : "84", + "ETag" : "W/\"0x8D92154F4BB214A\"", + "client-request-id" : "3703caef-2fde-4f1f-a248-81ba9307b674", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "694", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283964F8C4\\\"\",\"name\":\"ocr-skillsetcreateorupdateupdatesskillsd8879965\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "77244218-d8b8-49d1-858c-89c0fc463d87", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F4BB214A\\\"\",\"name\":\"ocr-skillsetcreateorupdateupdatesskills96701123\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "3703caef-2fde-4f1f-a248-81ba9307b674", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillsetcreateorupdateupdatesskillsd8879965')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillsetcreateorupdateupdatesskills96701123')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "98378331-565a-4cd4-aed9-5a8bdc20e765" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f99466f6-a294-43a7-9c16-43dd5e390a34" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "98378331-565a-4cd4-aed9-5a8bdc20e765", - "elapsed-time" : "51", + "client-request-id" : "f99466f6-a294-43a7-9c16-43dd5e390a34", + "elapsed-time" : "21", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "98378331-565a-4cd4-aed9-5a8bdc20e765", + "request-id" : "f99466f6-a294-43a7-9c16-43dd5e390a34", "StatusCode" : "204", - "x-ms-client-request-id" : "98378331-565a-4cd4-aed9-5a8bdc20e765", - "Date" : "Fri, 02 Apr 2021 22:39:49 GMT" + "x-ms-client-request-id" : "f99466f6-a294-43a7-9c16-43dd5e390a34", + "Date" : "Thu, 27 May 2021 21:18:21 GMT" }, "Exception" : null } ], - "variables" : [ "ocr-skillsetcreateorupdateupdatesskillsd8879965" ] + "variables" : [ "ocr-skillsetcreateorupdateupdatesskills96701123" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateUpdatesWhenSkillsetExists.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateUpdatesWhenSkillsetExists.json index 6bc850373c25..fd0c4c09c236 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateUpdatesWhenSkillsetExists.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createOrUpdateUpdatesWhenSkillsetExists.json @@ -1,82 +1,82 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/skillsets('testskillset362064de4fe9e2f624a6')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('testskillset244866bdd26269ad946d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "26374017-709d-4a59-b622-4c44529522ae", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "421156e1-56f9-4fdf-b9f3-dd6d55ab5295", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "739", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "26374017-709d-4a59-b622-4c44529522ae", + "request-id" : "421156e1-56f9-4fdf-b9f3-dd6d55ab5295", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:46 GMT", + "Date" : "Thu, 27 May 2021 21:18:19 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62837D38BAB\"", - "client-request-id" : "26374017-709d-4a59-b622-4c44529522ae", - "elapsed-time" : "83", + "ETag" : "W/\"0x8D92154F3C2B15F\"", + "client-request-id" : "421156e1-56f9-4fdf-b9f3-dd6d55ab5295", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "739", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62837D38BAB\\\"\",\"name\":\"testskillset362064de4fe9e2f624a6\",\"description\":\"Skillset for testing OCR\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr-0\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext0\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "26374017-709d-4a59-b622-4c44529522ae", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F3C2B15F\\\"\",\"name\":\"testskillset244866bdd26269ad946d\",\"description\":\"Skillset for testing OCR\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr-0\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext0\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "421156e1-56f9-4fdf-b9f3-dd6d55ab5295", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('testskillset362064de4fe9e2f624a6')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('testskillset244866bdd26269ad946d')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/skillsets('testskillset362064de4fe9e2f624a6')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('testskillset244866bdd26269ad946d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "430822ea-1724-46e3-afdc-c78a8672f394", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "46e85f7a-0025-4f64-8700-2f20071edece", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "739", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "430822ea-1724-46e3-afdc-c78a8672f394", + "request-id" : "46e85f7a-0025-4f64-8700-2f20071edece", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:46 GMT", + "Date" : "Thu, 27 May 2021 21:18:19 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62837E45777\"", - "client-request-id" : "430822ea-1724-46e3-afdc-c78a8672f394", - "elapsed-time" : "70", + "ETag" : "W/\"0x8D92154F3CC500E\"", + "client-request-id" : "46e85f7a-0025-4f64-8700-2f20071edece", + "elapsed-time" : "36", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "739", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62837E45777\\\"\",\"name\":\"testskillset362064de4fe9e2f624a6\",\"description\":\"Skillset for testing OCR\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr-0\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext0\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "430822ea-1724-46e3-afdc-c78a8672f394", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F3CC500E\\\"\",\"name\":\"testskillset244866bdd26269ad946d\",\"description\":\"Skillset for testing OCR\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr-0\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext0\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "46e85f7a-0025-4f64-8700-2f20071edece", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('testskillset362064de4fe9e2f624a6')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('testskillset244866bdd26269ad946d')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5d4d24b8-f7a6-41ec-81c8-62a71f2a59e1" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "52da5bd4-5527-4453-85f2-45540ed742cb" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5d4d24b8-f7a6-41ec-81c8-62a71f2a59e1", - "elapsed-time" : "73", + "client-request-id" : "52da5bd4-5527-4453-85f2-45540ed742cb", + "elapsed-time" : "22", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "5d4d24b8-f7a6-41ec-81c8-62a71f2a59e1", + "request-id" : "52da5bd4-5527-4453-85f2-45540ed742cb", "StatusCode" : "204", - "x-ms-client-request-id" : "5d4d24b8-f7a6-41ec-81c8-62a71f2a59e1", - "Date" : "Fri, 02 Apr 2021 22:39:47 GMT" + "x-ms-client-request-id" : "52da5bd4-5527-4453-85f2-45540ed742cb", + "Date" : "Thu, 27 May 2021 21:18:20 GMT" }, "Exception" : null } ], - "variables" : [ "testskillset362064de4fe9e2f624a6", "testskillset441734f13b5cf485b45f" ] + "variables" : [ "testskillset244866bdd26269ad946d", "testskillset82748d0b97f02778945a" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionConditional.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionConditional.json index 8530bc9b6d0f..5682e9162bc9 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionConditional.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionConditional.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ae4fce70-f807-49f1-8c5a-7c23b853d5cb", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f1ca986c-9a99-43dd-b0e0-20ce227d3084", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "761", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ae4fce70-f807-49f1-8c5a-7c23b853d5cb", + "request-id" : "f1ca986c-9a99-43dd-b0e0-20ce227d3084", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:50 GMT", + "Date" : "Thu, 27 May 2021 21:18:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283A3D55FF\"", - "client-request-id" : "ae4fce70-f807-49f1-8c5a-7c23b853d5cb", - "elapsed-time" : "194", + "ETag" : "W/\"0x8D92154F533E9BA\"", + "client-request-id" : "f1ca986c-9a99-43dd-b0e0-20ce227d3084", + "elapsed-time" : "137", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "761", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283A3D55FF\\\"\",\"name\":\"conditional-skillset46168c6a952bce27\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Util.ConditionalSkill\",\"name\":\"myconditional\",\"description\":\"Tested Conditional skill\",\"context\":\"/document\",\"inputs\":[{\"name\":\"condition\",\"source\":\"= $(/document/language) == null\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"whenTrue\",\"source\":\"= 'es'\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"whenFalse\",\"source\":\"= $(/document/language)\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"output\",\"targetName\":\"myLanguageCode\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "ae4fce70-f807-49f1-8c5a-7c23b853d5cb", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F533E9BA\\\"\",\"name\":\"conditional-skillset68197fa4c60d342b\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Util.ConditionalSkill\",\"name\":\"myconditional\",\"description\":\"Tested Conditional skill\",\"context\":\"/document\",\"inputs\":[{\"name\":\"condition\",\"source\":\"= $(/document/language) == null\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"whenTrue\",\"source\":\"= 'es'\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"whenFalse\",\"source\":\"= $(/document/language)\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"output\",\"targetName\":\"myLanguageCode\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "f1ca986c-9a99-43dd-b0e0-20ce227d3084", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('conditional-skillset46168c6a952bce27')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('conditional-skillset68197fa4c60d342b')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('conditional-skillset46168c6a952bce27')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('conditional-skillset68197fa4c60d342b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3b5cb211-a4b2-44b4-8a26-aca67466709a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bbff40b6-78c0-4c23-9876-14582cf23c66" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3b5cb211-a4b2-44b4-8a26-aca67466709a", - "elapsed-time" : "145", + "client-request-id" : "bbff40b6-78c0-4c23-9876-14582cf23c66", + "elapsed-time" : "116", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "3b5cb211-a4b2-44b4-8a26-aca67466709a", + "request-id" : "bbff40b6-78c0-4c23-9876-14582cf23c66", "StatusCode" : "204", - "x-ms-client-request-id" : "3b5cb211-a4b2-44b4-8a26-aca67466709a", - "Date" : "Fri, 02 Apr 2021 22:39:50 GMT" + "x-ms-client-request-id" : "bbff40b6-78c0-4c23-9876-14582cf23c66", + "Date" : "Thu, 27 May 2021 21:18:22 GMT" }, "Exception" : null } ], - "variables" : [ "conditional-skillset46168c6a952bce27" ] + "variables" : [ "conditional-skillset68197fa4c60d342b" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionImageAnalysisKeyPhrase.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionImageAnalysisKeyPhrase.json index 2978af3b3e2b..0687d3211193 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionImageAnalysisKeyPhrase.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionImageAnalysisKeyPhrase.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2e5ba00b-ef69-4eff-a72c-aa68e22983e7", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e95bfff5-eb2c-418b-9a98-289262323951", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1219", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2e5ba00b-ef69-4eff-a72c-aa68e22983e7", + "request-id" : "e95bfff5-eb2c-418b-9a98-289262323951", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:50 GMT", + "Date" : "Thu, 27 May 2021 21:18:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283A0F3910\"", - "client-request-id" : "2e5ba00b-ef69-4eff-a72c-aa68e22983e7", - "elapsed-time" : "72", + "ETag" : "W/\"0x8D92154F5131552\"", + "client-request-id" : "e95bfff5-eb2c-418b-9a98-289262323951", + "elapsed-time" : "34", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1219", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283A0F3910\\\"\",\"name\":\"image-analysis-key-phrase-skillset94416fb51\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\"name\":\"myimage\",\"description\":\"Tested image analysis skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"visualFeatures\":[\"brands\",\"objects\",\"description\",\"categories\",\"adult\",\"faces\",\"tags\"],\"details\":[\"celebrities\",\"landmarks\"],\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"description\",\"targetName\":\"mydescription\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mydescription/*/Tags/*\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "2e5ba00b-ef69-4eff-a72c-aa68e22983e7", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F5131552\\\"\",\"name\":\"image-analysis-key-phrase-skillset20864117c\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\"name\":\"myimage\",\"description\":\"Tested image analysis skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"visualFeatures\":[\"brands\",\"objects\",\"description\",\"categories\",\"adult\",\"faces\",\"tags\"],\"details\":[\"celebrities\",\"landmarks\"],\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"description\",\"targetName\":\"mydescription\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mydescription/*/Tags/*\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "e95bfff5-eb2c-418b-9a98-289262323951", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('image-analysis-key-phrase-skillset94416fb51')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('image-analysis-key-phrase-skillset20864117c')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('image-analysis-key-phrase-skillset94416fb51')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('image-analysis-key-phrase-skillset20864117c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c5e5eaea-d2ae-4f69-9c89-0326c47bd8db" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5df97175-3c71-4c05-ad1d-683fb3e93f2b" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "c5e5eaea-d2ae-4f69-9c89-0326c47bd8db", - "elapsed-time" : "74", + "client-request-id" : "5df97175-3c71-4c05-ad1d-683fb3e93f2b", + "elapsed-time" : "21", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "c5e5eaea-d2ae-4f69-9c89-0326c47bd8db", + "request-id" : "5df97175-3c71-4c05-ad1d-683fb3e93f2b", "StatusCode" : "204", - "x-ms-client-request-id" : "c5e5eaea-d2ae-4f69-9c89-0326c47bd8db", - "Date" : "Fri, 02 Apr 2021 22:39:50 GMT" + "x-ms-client-request-id" : "5df97175-3c71-4c05-ad1d-683fb3e93f2b", + "Date" : "Thu, 27 May 2021 21:18:22 GMT" }, "Exception" : null } ], - "variables" : [ "image-analysis-key-phrase-skillset94416fb51" ] + "variables" : [ "image-analysis-key-phrase-skillset20864117c" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionImageAnalysisKeyPhraseWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionImageAnalysisKeyPhraseWithResponse.json index da3f46f9a7ab..5ad8542dd512 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionImageAnalysisKeyPhraseWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionImageAnalysisKeyPhraseWithResponse.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c67bef5-92eb-4d52-8354-91444a0f7501", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "df2b78ae-52d4-4b38-b3fc-6082a87d34af", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1219", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9c67bef5-92eb-4d52-8354-91444a0f7501", + "request-id" : "df2b78ae-52d4-4b38-b3fc-6082a87d34af", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:45 GMT", + "Date" : "Thu, 27 May 2021 21:18:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628374080B8\"", - "client-request-id" : "9c67bef5-92eb-4d52-8354-91444a0f7501", - "elapsed-time" : "91", + "ETag" : "W/\"0x8D92154F36AE471\"", + "client-request-id" : "df2b78ae-52d4-4b38-b3fc-6082a87d34af", + "elapsed-time" : "99", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1219", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F628374080B8\\\"\",\"name\":\"image-analysis-key-phrase-skillset1144427cd\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\"name\":\"myimage\",\"description\":\"Tested image analysis skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"visualFeatures\":[\"brands\",\"objects\",\"description\",\"categories\",\"adult\",\"faces\",\"tags\"],\"details\":[\"celebrities\",\"landmarks\"],\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"description\",\"targetName\":\"mydescription\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mydescription/*/Tags/*\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "9c67bef5-92eb-4d52-8354-91444a0f7501", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F36AE471\\\"\",\"name\":\"image-analysis-key-phrase-skillset14300a39e\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\"name\":\"myimage\",\"description\":\"Tested image analysis skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"visualFeatures\":[\"brands\",\"objects\",\"description\",\"categories\",\"adult\",\"faces\",\"tags\"],\"details\":[\"celebrities\",\"landmarks\"],\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"description\",\"targetName\":\"mydescription\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mydescription/*/Tags/*\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "df2b78ae-52d4-4b38-b3fc-6082a87d34af", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('image-analysis-key-phrase-skillset1144427cd')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('image-analysis-key-phrase-skillset14300a39e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('image-analysis-key-phrase-skillset1144427cd')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('image-analysis-key-phrase-skillset14300a39e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "56215da7-a2c6-40d4-9f88-27d8a452ce65" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "80ea55d1-0250-4943-9a60-9b70451d8197" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "56215da7-a2c6-40d4-9f88-27d8a452ce65", - "elapsed-time" : "82", + "client-request-id" : "80ea55d1-0250-4943-9a60-9b70451d8197", + "elapsed-time" : "33", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "56215da7-a2c6-40d4-9f88-27d8a452ce65", + "request-id" : "80ea55d1-0250-4943-9a60-9b70451d8197", "StatusCode" : "204", - "x-ms-client-request-id" : "56215da7-a2c6-40d4-9f88-27d8a452ce65", - "Date" : "Fri, 02 Apr 2021 22:39:46 GMT" + "x-ms-client-request-id" : "80ea55d1-0250-4943-9a60-9b70451d8197", + "Date" : "Thu, 27 May 2021 21:18:19 GMT" }, "Exception" : null } ], - "variables" : [ "image-analysis-key-phrase-skillset1144427cd" ] + "variables" : [ "image-analysis-key-phrase-skillset14300a39e" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionLanguageDetection.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionLanguageDetection.json index 651bba5472ad..1ddbe3cae2a3 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionLanguageDetection.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionLanguageDetection.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "76dc47e8-3262-4f4a-a746-3175e174ec3b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a40030c3-db15-46b9-81af-1b6ed311dc04", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "645", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "76dc47e8-3262-4f4a-a746-3175e174ec3b", + "request-id" : "a40030c3-db15-46b9-81af-1b6ed311dc04", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:44 GMT", + "Date" : "Thu, 27 May 2021 21:18:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62836E4950E\"", - "client-request-id" : "76dc47e8-3262-4f4a-a746-3175e174ec3b", - "elapsed-time" : "69", + "ETag" : "W/\"0x8D92154F32B37CB\"", + "client-request-id" : "a40030c3-db15-46b9-81af-1b6ed311dc04", + "elapsed-time" : "35", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "645", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62836E4950E\\\"\",\"name\":\"language-detection-skillset74484e9b8ed4f\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.LanguageDetectionSkill\",\"name\":\"mylanguage\",\"description\":\"Tested Language Detection skill\",\"context\":\"/document\",\"defaultCountryHint\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/text\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"languageCode\",\"targetName\":\"myLanguageCode\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "76dc47e8-3262-4f4a-a746-3175e174ec3b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F32B37CB\\\"\",\"name\":\"language-detection-skillset55498660a3336\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.LanguageDetectionSkill\",\"name\":\"mylanguage\",\"description\":\"Tested Language Detection skill\",\"context\":\"/document\",\"defaultCountryHint\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/text\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"languageCode\",\"targetName\":\"myLanguageCode\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "a40030c3-db15-46b9-81af-1b6ed311dc04", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('language-detection-skillset74484e9b8ed4f')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('language-detection-skillset55498660a3336')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('language-detection-skillset74484e9b8ed4f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('language-detection-skillset55498660a3336')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "767b10e7-1a6b-4047-9274-a1e7a5909f5c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "89176a41-9b6c-474c-a141-09558f297412" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "767b10e7-1a6b-4047-9274-a1e7a5909f5c", - "elapsed-time" : "73", + "client-request-id" : "89176a41-9b6c-474c-a141-09558f297412", + "elapsed-time" : "20", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "767b10e7-1a6b-4047-9274-a1e7a5909f5c", + "request-id" : "89176a41-9b6c-474c-a141-09558f297412", "StatusCode" : "204", - "x-ms-client-request-id" : "767b10e7-1a6b-4047-9274-a1e7a5909f5c", - "Date" : "Fri, 02 Apr 2021 22:39:44 GMT" + "x-ms-client-request-id" : "89176a41-9b6c-474c-a141-09558f297412", + "Date" : "Thu, 27 May 2021 21:18:19 GMT" }, "Exception" : null } ], - "variables" : [ "language-detection-skillset74484e9b8ed4f" ] + "variables" : [ "language-detection-skillset55498660a3336" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionMergeText.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionMergeText.json index e9c5f0c56f92..49295b631df4 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionMergeText.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionMergeText.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "dd8ffabc-8fca-4e60-aa1e-1200b0f978b4", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "966b22a8-c2e2-46f5-a85f-f8fde27d7c68", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "781", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "dd8ffabc-8fca-4e60-aa1e-1200b0f978b4", + "request-id" : "966b22a8-c2e2-46f5-a85f-f8fde27d7c68", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:45 GMT", + "Date" : "Thu, 27 May 2021 21:18:19 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62837623F76\"", - "client-request-id" : "dd8ffabc-8fca-4e60-aa1e-1200b0f978b4", - "elapsed-time" : "74", + "ETag" : "W/\"0x8D92154F3821A2A\"", + "client-request-id" : "966b22a8-c2e2-46f5-a85f-f8fde27d7c68", + "elapsed-time" : "38", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "781", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62837623F76\\\"\",\"name\":\"merge-text-skillset18926fee71555cab5\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.MergeSkill\",\"name\":\"mymerge\",\"description\":\"Tested Merged Text skill\",\"context\":\"/document\",\"insertPreTag\":\"__\",\"insertPostTag\":\"__e\",\"inputs\":[{\"name\":\"text\",\"source\":\"/document/text\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"itemsToInsert\",\"source\":\"/document/textitems\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"offsets\",\"source\":\"/document/offsets\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"mergedText\",\"targetName\":\"myMergedText\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "dd8ffabc-8fca-4e60-aa1e-1200b0f978b4", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F3821A2A\\\"\",\"name\":\"merge-text-skillset506174652702e827b\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.MergeSkill\",\"name\":\"mymerge\",\"description\":\"Tested Merged Text skill\",\"context\":\"/document\",\"insertPreTag\":\"__\",\"insertPostTag\":\"__e\",\"inputs\":[{\"name\":\"text\",\"source\":\"/document/text\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"itemsToInsert\",\"source\":\"/document/textitems\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"offsets\",\"source\":\"/document/offsets\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"mergedText\",\"targetName\":\"myMergedText\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "966b22a8-c2e2-46f5-a85f-f8fde27d7c68", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('merge-text-skillset18926fee71555cab5')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('merge-text-skillset506174652702e827b')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('merge-text-skillset18926fee71555cab5')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('merge-text-skillset506174652702e827b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e761171-d7dc-466e-a475-bfbfd69a27cd" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "43c68f55-2be5-4caa-bfc4-3cee26195615" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8e761171-d7dc-466e-a475-bfbfd69a27cd", - "elapsed-time" : "71", + "client-request-id" : "43c68f55-2be5-4caa-bfc4-3cee26195615", + "elapsed-time" : "25", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "8e761171-d7dc-466e-a475-bfbfd69a27cd", + "request-id" : "43c68f55-2be5-4caa-bfc4-3cee26195615", "StatusCode" : "204", - "x-ms-client-request-id" : "8e761171-d7dc-466e-a475-bfbfd69a27cd", - "Date" : "Fri, 02 Apr 2021 22:39:46 GMT" + "x-ms-client-request-id" : "43c68f55-2be5-4caa-bfc4-3cee26195615", + "Date" : "Thu, 27 May 2021 21:18:19 GMT" }, "Exception" : null } ], - "variables" : [ "merge-text-skillset18926fee71555cab5" ] + "variables" : [ "merge-text-skillset506174652702e827b" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrEntity.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrEntity.json index f2611ed253ac..1d66741a6057 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrEntity.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrEntity.json @@ -1,104 +1,104 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "70c77c7c-aa07-4f79-a94d-0a3fb5548f37", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "665bcd6b-a1f8-423e-9303-8cdcc6c3873b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1130", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "70c77c7c-aa07-4f79-a94d-0a3fb5548f37", + "request-id" : "665bcd6b-a1f8-423e-9303-8cdcc6c3873b", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:48 GMT", + "Date" : "Thu, 27 May 2021 21:18:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62838E09692\"", - "client-request-id" : "70c77c7c-aa07-4f79-a94d-0a3fb5548f37", - "elapsed-time" : "81", + "ETag" : "W/\"0x8D92154F462B803\"", + "client-request-id" : "665bcd6b-a1f8-423e-9303-8cdcc6c3873b", + "elapsed-time" : "136", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1130", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62838E09692\\\"\",\"name\":\"ocr-entity-skillset82942ab220cb670bb\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.EntityRecognitionSkill\",\"name\":\"myentity\",\"description\":\"Tested Entity Recognition skill\",\"context\":\"/document\",\"categories\":[],\"defaultLanguageCode\":\"en\",\"minimumPrecision\":0.5,\"includeTypelessEntities\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"entities\",\"targetName\":\"myEntities\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "70c77c7c-aa07-4f79-a94d-0a3fb5548f37", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F462B803\\\"\",\"name\":\"ocr-entity-skillset66521570c48ee4b95\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.EntityRecognitionSkill\",\"name\":\"myentity\",\"description\":\"Tested Entity Recognition skill\",\"context\":\"/document\",\"categories\":[],\"defaultLanguageCode\":\"en\",\"minimumPrecision\":0.5,\"includeTypelessEntities\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"entities\",\"targetName\":\"myEntities\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "665bcd6b-a1f8-423e-9303-8cdcc6c3873b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-entity-skillset82942ab220cb670bb')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-entity-skillset66521570c48ee4b95')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1f1b49a4-b4be-4718-93b6-b76ed634cebc", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e6229711-80c5-4550-a25b-16f0de0864bc", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1164", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1f1b49a4-b4be-4718-93b6-b76ed634cebc", + "request-id" : "e6229711-80c5-4550-a25b-16f0de0864bc", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:48 GMT", + "Date" : "Thu, 27 May 2021 21:18:20 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62839005913\"", - "client-request-id" : "1f1b49a4-b4be-4718-93b6-b76ed634cebc", - "elapsed-time" : "175", + "ETag" : "W/\"0x8D92154F4831731\"", + "client-request-id" : "e6229711-80c5-4550-a25b-16f0de0864bc", + "elapsed-time" : "78", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1164", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62839005913\\\"\",\"name\":\"ocr-entity-skillset15623e4c91cb51382\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.EntityRecognitionSkill\",\"name\":\"myentity\",\"description\":\"Tested Entity Recognition skill\",\"context\":\"/document\",\"categories\":[\"location\",\"organization\",\"person\"],\"defaultLanguageCode\":\"en\",\"minimumPrecision\":0.5,\"includeTypelessEntities\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"entities\",\"targetName\":\"myEntities\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "1f1b49a4-b4be-4718-93b6-b76ed634cebc", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F4831731\\\"\",\"name\":\"ocr-entity-skillset941168ffd968f5910\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.EntityRecognitionSkill\",\"name\":\"myentity\",\"description\":\"Tested Entity Recognition skill\",\"context\":\"/document\",\"categories\":[\"location\",\"organization\",\"person\"],\"defaultLanguageCode\":\"en\",\"minimumPrecision\":0.5,\"includeTypelessEntities\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"entities\",\"targetName\":\"myEntities\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "e6229711-80c5-4550-a25b-16f0de0864bc", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-entity-skillset15623e4c91cb51382')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-entity-skillset941168ffd968f5910')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-entity-skillset82942ab220cb670bb')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-entity-skillset66521570c48ee4b95')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1950f906-02b5-4aa8-8596-bc4d009e7907" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6eace612-b9e5-4ae5-bccf-bb7181048016" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "1950f906-02b5-4aa8-8596-bc4d009e7907", - "elapsed-time" : "73", + "client-request-id" : "6eace612-b9e5-4ae5-bccf-bb7181048016", + "elapsed-time" : "25", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "1950f906-02b5-4aa8-8596-bc4d009e7907", + "request-id" : "6eace612-b9e5-4ae5-bccf-bb7181048016", "StatusCode" : "204", - "x-ms-client-request-id" : "1950f906-02b5-4aa8-8596-bc4d009e7907", - "Date" : "Fri, 02 Apr 2021 22:39:48 GMT" + "x-ms-client-request-id" : "6eace612-b9e5-4ae5-bccf-bb7181048016", + "Date" : "Thu, 27 May 2021 21:18:21 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-entity-skillset15623e4c91cb51382')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-entity-skillset941168ffd968f5910')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2a54dd6b-84cf-4786-ac5b-7d6b8c46488b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e6e96a10-dbe9-4f91-b345-14b040e9568a" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2a54dd6b-84cf-4786-ac5b-7d6b8c46488b", - "elapsed-time" : "60", + "client-request-id" : "e6e96a10-dbe9-4f91-b345-14b040e9568a", + "elapsed-time" : "21", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "2a54dd6b-84cf-4786-ac5b-7d6b8c46488b", + "request-id" : "e6e96a10-dbe9-4f91-b345-14b040e9568a", "StatusCode" : "204", - "x-ms-client-request-id" : "2a54dd6b-84cf-4786-ac5b-7d6b8c46488b", - "Date" : "Fri, 02 Apr 2021 22:39:48 GMT" + "x-ms-client-request-id" : "e6e96a10-dbe9-4f91-b345-14b040e9568a", + "Date" : "Thu, 27 May 2021 21:18:20 GMT" }, "Exception" : null } ], - "variables" : [ "ocr-entity-skillset82942ab220cb670bb", "ocr-entity-skillset15623e4c91cb51382" ] + "variables" : [ "ocr-entity-skillset66521570c48ee4b95", "ocr-entity-skillset941168ffd968f5910" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrHandwritingSentiment.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrHandwritingSentiment.json index 9687d8be525d..f65f1ea006c4 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrHandwritingSentiment.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrHandwritingSentiment.json @@ -1,154 +1,154 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2ed9117c-daf9-4077-9d6a-cf6a27d00092", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a9e9551f-4f89-4844-a7b5-4d043edb77a0", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1048", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2ed9117c-daf9-4077-9d6a-cf6a27d00092", + "request-id" : "a9e9551f-4f89-4844-a7b5-4d043edb77a0", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:51 GMT", + "Date" : "Thu, 27 May 2021 21:18:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283A912A0B\"", - "client-request-id" : "2ed9117c-daf9-4077-9d6a-cf6a27d00092", - "elapsed-time" : "77", + "ETag" : "W/\"0x8D92154F56EB37C\"", + "client-request-id" : "a9e9551f-4f89-4844-a7b5-4d043edb77a0", + "elapsed-time" : "43", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1048", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283A912A0B\\\"\",\"name\":\"ocr-sentiment-skillset37491790c07bdc8\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"pt\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.SentimentSkill\",\"name\":\"mysentiment\",\"description\":\"Tested Sentiment skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"pt-PT\",\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"score\",\"targetName\":\"mySentiment\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "2ed9117c-daf9-4077-9d6a-cf6a27d00092", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F56EB37C\\\"\",\"name\":\"ocr-sentiment-skillset6535464ad06b75e\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"pt\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.SentimentSkill\",\"name\":\"mysentiment\",\"description\":\"Tested Sentiment skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"pt-PT\",\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"score\",\"targetName\":\"mySentiment\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "a9e9551f-4f89-4844-a7b5-4d043edb77a0", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-sentiment-skillset37491790c07bdc8')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-sentiment-skillset6535464ad06b75e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "01949a40-0646-42c8-a26d-3ee0dad1d086", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "dbd635af-13ae-4d9e-8ea1-8b1d38948422", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1045", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "01949a40-0646-42c8-a26d-3ee0dad1d086", + "request-id" : "dbd635af-13ae-4d9e-8ea1-8b1d38948422", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:51 GMT", + "Date" : "Thu, 27 May 2021 21:18:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283AA10B54\"", - "client-request-id" : "01949a40-0646-42c8-a26d-3ee0dad1d086", - "elapsed-time" : "69", + "ETag" : "W/\"0x8D92154F5810652\"", + "client-request-id" : "dbd635af-13ae-4d9e-8ea1-8b1d38948422", + "elapsed-time" : "87", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1045", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283AA10B54\\\"\",\"name\":\"ocr-sentiment-skillset26397682cd31d14\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"fi\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.SentimentSkill\",\"name\":\"mysentiment\",\"description\":\"Tested Sentiment skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"fi\",\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"score\",\"targetName\":\"mySentiment\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "01949a40-0646-42c8-a26d-3ee0dad1d086", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F5810652\\\"\",\"name\":\"ocr-sentiment-skillset696492a06fd257b\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"fi\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.SentimentSkill\",\"name\":\"mysentiment\",\"description\":\"Tested Sentiment skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"fi\",\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"score\",\"targetName\":\"mySentiment\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "dbd635af-13ae-4d9e-8ea1-8b1d38948422", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-sentiment-skillset26397682cd31d14')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-sentiment-skillset696492a06fd257b')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6ecf700a-1149-407f-8cb9-f5bf5c2f3563", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "531e5311-963a-4350-8b3b-c59188c5a2ae", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1045", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6ecf700a-1149-407f-8cb9-f5bf5c2f3563", + "request-id" : "531e5311-963a-4350-8b3b-c59188c5a2ae", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:51 GMT", + "Date" : "Thu, 27 May 2021 21:18:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283AB0EC99\"", - "client-request-id" : "6ecf700a-1149-407f-8cb9-f5bf5c2f3563", - "elapsed-time" : "87", + "ETag" : "W/\"0x8D92154F58B6876\"", + "client-request-id" : "531e5311-963a-4350-8b3b-c59188c5a2ae", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1045", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283AB0EC99\\\"\",\"name\":\"ocr-sentiment-skillset04252c189575290\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.SentimentSkill\",\"name\":\"mysentiment\",\"description\":\"Tested Sentiment skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"score\",\"targetName\":\"mySentiment\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "6ecf700a-1149-407f-8cb9-f5bf5c2f3563", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F58B6876\\\"\",\"name\":\"ocr-sentiment-skillset59886178cde2aa3\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.SentimentSkill\",\"name\":\"mysentiment\",\"description\":\"Tested Sentiment skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"score\",\"targetName\":\"mySentiment\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "531e5311-963a-4350-8b3b-c59188c5a2ae", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-sentiment-skillset04252c189575290')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-sentiment-skillset59886178cde2aa3')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-sentiment-skillset37491790c07bdc8')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-sentiment-skillset6535464ad06b75e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f5c60599-bd15-47ce-92c6-6149688be195" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "deae5b5d-8854-4683-a7e8-27e8983c6791" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f5c60599-bd15-47ce-92c6-6149688be195", - "elapsed-time" : "65", + "client-request-id" : "deae5b5d-8854-4683-a7e8-27e8983c6791", + "elapsed-time" : "26", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "f5c60599-bd15-47ce-92c6-6149688be195", + "request-id" : "deae5b5d-8854-4683-a7e8-27e8983c6791", "StatusCode" : "204", - "x-ms-client-request-id" : "f5c60599-bd15-47ce-92c6-6149688be195", - "Date" : "Fri, 02 Apr 2021 22:39:51 GMT" + "x-ms-client-request-id" : "deae5b5d-8854-4683-a7e8-27e8983c6791", + "Date" : "Thu, 27 May 2021 21:18:22 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-sentiment-skillset26397682cd31d14')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-sentiment-skillset696492a06fd257b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3ef4bdec-da7a-4153-a774-b7fce3432276" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "27f8fc39-a95f-4d98-bb39-29ff656cbb13" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3ef4bdec-da7a-4153-a774-b7fce3432276", - "elapsed-time" : "71", + "client-request-id" : "27f8fc39-a95f-4d98-bb39-29ff656cbb13", + "elapsed-time" : "22", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "3ef4bdec-da7a-4153-a774-b7fce3432276", + "request-id" : "27f8fc39-a95f-4d98-bb39-29ff656cbb13", "StatusCode" : "204", - "x-ms-client-request-id" : "3ef4bdec-da7a-4153-a774-b7fce3432276", - "Date" : "Fri, 02 Apr 2021 22:39:51 GMT" + "x-ms-client-request-id" : "27f8fc39-a95f-4d98-bb39-29ff656cbb13", + "Date" : "Thu, 27 May 2021 21:18:22 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-sentiment-skillset04252c189575290')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-sentiment-skillset59886178cde2aa3')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4881a51e-6ced-4b8b-9347-49af663e307d" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0d17e960-aeb2-4907-beb7-af36c9c723b5" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4881a51e-6ced-4b8b-9347-49af663e307d", - "elapsed-time" : "57", + "client-request-id" : "0d17e960-aeb2-4907-beb7-af36c9c723b5", + "elapsed-time" : "22", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "4881a51e-6ced-4b8b-9347-49af663e307d", + "request-id" : "0d17e960-aeb2-4907-beb7-af36c9c723b5", "StatusCode" : "204", - "x-ms-client-request-id" : "4881a51e-6ced-4b8b-9347-49af663e307d", - "Date" : "Fri, 02 Apr 2021 22:39:51 GMT" + "x-ms-client-request-id" : "0d17e960-aeb2-4907-beb7-af36c9c723b5", + "Date" : "Thu, 27 May 2021 21:18:22 GMT" }, "Exception" : null } ], - "variables" : [ "ocr-sentiment-skillset37491790c07bdc8", "ocr-sentiment-skillset26397682cd31d14", "ocr-sentiment-skillset04252c189575290" ] + "variables" : [ "ocr-sentiment-skillset6535464ad06b75e", "ocr-sentiment-skillset696492a06fd257b", "ocr-sentiment-skillset59886178cde2aa3" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrKeyPhrase.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrKeyPhrase.json index 06e4c630abf2..886d349d2cb8 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrKeyPhrase.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrKeyPhrase.json @@ -1,154 +1,154 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9543b2bf-6309-4e30-83dd-e881fc61370b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1c1d29d4-122f-4f54-b15a-a985eb664e4a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1109", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9543b2bf-6309-4e30-83dd-e881fc61370b", + "request-id" : "1c1d29d4-122f-4f54-b15a-a985eb664e4a", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:47 GMT", + "Date" : "Thu, 27 May 2021 21:18:20 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62838868011\"", - "client-request-id" : "9543b2bf-6309-4e30-83dd-e881fc61370b", - "elapsed-time" : "90", + "ETag" : "W/\"0x8D92154F431DB19\"", + "client-request-id" : "1c1d29d4-122f-4f54-b15a-a985eb664e4a", + "elapsed-time" : "68", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1109", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62838868011\\\"\",\"name\":\"ocr-key-phrase-skillset469420ec52e9e03\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "9543b2bf-6309-4e30-83dd-e881fc61370b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F431DB19\\\"\",\"name\":\"ocr-key-phrase-skillset72218e055ae9ee1\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "1c1d29d4-122f-4f54-b15a-a985eb664e4a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-key-phrase-skillset469420ec52e9e03')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-key-phrase-skillset72218e055ae9ee1')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c0883be4-ab4c-4488-9558-de1984867f8b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "76368e9e-8b1d-4d13-a82f-963758183a2f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1109", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c0883be4-ab4c-4488-9558-de1984867f8b", + "request-id" : "76368e9e-8b1d-4d13-a82f-963758183a2f", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:48 GMT", + "Date" : "Thu, 27 May 2021 21:18:20 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283899BD3C\"", - "client-request-id" : "c0883be4-ab4c-4488-9558-de1984867f8b", - "elapsed-time" : "72", + "ETag" : "W/\"0x8D92154F43B79CB\"", + "client-request-id" : "76368e9e-8b1d-4d13-a82f-963758183a2f", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1109", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283899BD3C\\\"\",\"name\":\"ocr-key-phrase-skillset0358500431223ea\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"fr\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"fr\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "c0883be4-ab4c-4488-9558-de1984867f8b", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F43B79CB\\\"\",\"name\":\"ocr-key-phrase-skillset25402df1093f6c5\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"fr\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"fr\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "76368e9e-8b1d-4d13-a82f-963758183a2f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-key-phrase-skillset0358500431223ea')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-key-phrase-skillset25402df1093f6c5')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6458579-5656-4939-b3b8-9e915c4691a5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bfcb4ed0-53b4-4d73-bd09-395c0afb93fd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1109", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a6458579-5656-4939-b3b8-9e915c4691a5", + "request-id" : "bfcb4ed0-53b4-4d73-bd09-395c0afb93fd", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:48 GMT", + "Date" : "Thu, 27 May 2021 21:18:20 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62838A9293D\"", - "client-request-id" : "a6458579-5656-4939-b3b8-9e915c4691a5", - "elapsed-time" : "81", + "ETag" : "W/\"0x8D92154F4460304\"", + "client-request-id" : "bfcb4ed0-53b4-4d73-bd09-395c0afb93fd", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1109", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62838A9293D\\\"\",\"name\":\"ocr-key-phrase-skillset03558c23fb42b88\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"es\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"es\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "a6458579-5656-4939-b3b8-9e915c4691a5", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F4460304\\\"\",\"name\":\"ocr-key-phrase-skillset4554625b3e0edc7\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"es\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"es\",\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "bfcb4ed0-53b4-4d73-bd09-395c0afb93fd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-key-phrase-skillset03558c23fb42b88')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-key-phrase-skillset4554625b3e0edc7')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-key-phrase-skillset469420ec52e9e03')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-key-phrase-skillset72218e055ae9ee1')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5ea00061-725c-43ce-a144-738b741c2ebd" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "41be3afb-ce1d-4638-842d-f6de52dd0670" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5ea00061-725c-43ce-a144-738b741c2ebd", - "elapsed-time" : "55", + "client-request-id" : "41be3afb-ce1d-4638-842d-f6de52dd0670", + "elapsed-time" : "21", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "5ea00061-725c-43ce-a144-738b741c2ebd", + "request-id" : "41be3afb-ce1d-4638-842d-f6de52dd0670", "StatusCode" : "204", - "x-ms-client-request-id" : "5ea00061-725c-43ce-a144-738b741c2ebd", - "Date" : "Fri, 02 Apr 2021 22:39:48 GMT" + "x-ms-client-request-id" : "41be3afb-ce1d-4638-842d-f6de52dd0670", + "Date" : "Thu, 27 May 2021 21:18:20 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-key-phrase-skillset0358500431223ea')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-key-phrase-skillset25402df1093f6c5')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "fee41c02-e78d-44db-9a48-9a6318199f04" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8742e4e2-20e3-49ad-9195-3f8f02636d26" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "fee41c02-e78d-44db-9a48-9a6318199f04", - "elapsed-time" : "75", + "client-request-id" : "8742e4e2-20e3-49ad-9195-3f8f02636d26", + "elapsed-time" : "22", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "fee41c02-e78d-44db-9a48-9a6318199f04", + "request-id" : "8742e4e2-20e3-49ad-9195-3f8f02636d26", "StatusCode" : "204", - "x-ms-client-request-id" : "fee41c02-e78d-44db-9a48-9a6318199f04", - "Date" : "Fri, 02 Apr 2021 22:39:48 GMT" + "x-ms-client-request-id" : "8742e4e2-20e3-49ad-9195-3f8f02636d26", + "Date" : "Thu, 27 May 2021 21:18:20 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-key-phrase-skillset03558c23fb42b88')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-key-phrase-skillset4554625b3e0edc7')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0c310f19-53a7-43e9-944d-9d339e5a865e" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "aafeb83d-1c19-4a9c-aa87-e99d7eeb3f04" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0c310f19-53a7-43e9-944d-9d339e5a865e", - "elapsed-time" : "53", + "client-request-id" : "aafeb83d-1c19-4a9c-aa87-e99d7eeb3f04", + "elapsed-time" : "22", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "0c310f19-53a7-43e9-944d-9d339e5a865e", + "request-id" : "aafeb83d-1c19-4a9c-aa87-e99d7eeb3f04", "StatusCode" : "204", - "x-ms-client-request-id" : "0c310f19-53a7-43e9-944d-9d339e5a865e", - "Date" : "Fri, 02 Apr 2021 22:39:48 GMT" + "x-ms-client-request-id" : "aafeb83d-1c19-4a9c-aa87-e99d7eeb3f04", + "Date" : "Thu, 27 May 2021 21:18:20 GMT" }, "Exception" : null } ], - "variables" : [ "ocr-key-phrase-skillset469420ec52e9e03", "ocr-key-phrase-skillset0358500431223ea", "ocr-key-phrase-skillset03558c23fb42b88" ] + "variables" : [ "ocr-key-phrase-skillset72218e055ae9ee1", "ocr-key-phrase-skillset25402df1093f6c5", "ocr-key-phrase-skillset4554625b3e0edc7" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrShaper.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrShaper.json index 5c6a3dd9e34f..1d653bb77582 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrShaper.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrShaper.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b22292e0-6fda-41cc-b158-10cee0300a3d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "cdf54c52-67c2-40ef-b87d-8e6b8efdfeca", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1007", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b22292e0-6fda-41cc-b158-10cee0300a3d", + "request-id" : "cdf54c52-67c2-40ef-b87d-8e6b8efdfeca", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:50 GMT", + "Date" : "Thu, 27 May 2021 21:18:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62839EF9D9F\"", - "client-request-id" : "b22292e0-6fda-41cc-b158-10cee0300a3d", - "elapsed-time" : "76", + "ETag" : "W/\"0x8D92154F502495E\"", + "client-request-id" : "cdf54c52-67c2-40ef-b87d-8e6b8efdfeca", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1007", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62839EF9D9F\\\"\",\"name\":\"ocr-shaper-skillset74234e8b625e2fec7\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Util.ShaperSkill\",\"name\":\"mysharper\",\"description\":\"Tested Shaper skill\",\"context\":\"/document\",\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"output\",\"targetName\":\"myOutput\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "b22292e0-6fda-41cc-b158-10cee0300a3d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F502495E\\\"\",\"name\":\"ocr-shaper-skillset18162b4263ca3cc8f\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Util.ShaperSkill\",\"name\":\"mysharper\",\"description\":\"Tested Shaper skill\",\"context\":\"/document\",\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"output\",\"targetName\":\"myOutput\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "cdf54c52-67c2-40ef-b87d-8e6b8efdfeca", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-shaper-skillset74234e8b625e2fec7')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-shaper-skillset18162b4263ca3cc8f')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-shaper-skillset74234e8b625e2fec7')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-shaper-skillset18162b4263ca3cc8f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "59291d09-465c-47b4-9c61-085d9d502a60" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e8ae2b88-0d66-44d3-bdc6-2b9b81d73263" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "59291d09-465c-47b4-9c61-085d9d502a60", - "elapsed-time" : "72", + "client-request-id" : "e8ae2b88-0d66-44d3-bdc6-2b9b81d73263", + "elapsed-time" : "22", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "59291d09-465c-47b4-9c61-085d9d502a60", + "request-id" : "e8ae2b88-0d66-44d3-bdc6-2b9b81d73263", "StatusCode" : "204", - "x-ms-client-request-id" : "59291d09-465c-47b4-9c61-085d9d502a60", - "Date" : "Fri, 02 Apr 2021 22:39:50 GMT" + "x-ms-client-request-id" : "e8ae2b88-0d66-44d3-bdc6-2b9b81d73263", + "Date" : "Thu, 27 May 2021 21:18:21 GMT" }, "Exception" : null } ], - "variables" : [ "ocr-shaper-skillset74234e8b625e2fec7" ] + "variables" : [ "ocr-shaper-skillset18162b4263ca3cc8f" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrSplitText.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrSplitText.json index 212e7e29d667..9f609c6c38f0 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrSplitText.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionOcrSplitText.json @@ -1,204 +1,204 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "531974f6-7252-40a3-b1ee-88eea192b3c2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ae313c3c-e1b8-42d2-854b-f8140a187fc8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1087", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "531974f6-7252-40a3-b1ee-88eea192b3c2", + "request-id" : "ae313c3c-e1b8-42d2-854b-f8140a187fc8", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:42 GMT", + "Date" : "Thu, 27 May 2021 21:18:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62835C44CF4\"", - "client-request-id" : "531974f6-7252-40a3-b1ee-88eea192b3c2", - "elapsed-time" : "76", + "ETag" : "W/\"0x8D92154F29125AF\"", + "client-request-id" : "ae313c3c-e1b8-42d2-854b-f8140a187fc8", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1087", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62835C44CF4\\\"\",\"name\":\"ocr-split-text-skillset82679b17a661816\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.SplitSkill\",\"name\":\"mysplit\",\"description\":\"Tested Split skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"textSplitMode\":\"pages\",\"maximumPageLength\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"textItems\",\"targetName\":\"myTextItems\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "531974f6-7252-40a3-b1ee-88eea192b3c2", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F29125AF\\\"\",\"name\":\"ocr-split-text-skillset61346ce25296fe8\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.SplitSkill\",\"name\":\"mysplit\",\"description\":\"Tested Split skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"en\",\"textSplitMode\":\"pages\",\"maximumPageLength\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"textItems\",\"targetName\":\"myTextItems\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "ae313c3c-e1b8-42d2-854b-f8140a187fc8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-split-text-skillset82679b17a661816')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-split-text-skillset61346ce25296fe8')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "96dcbe46-3f53-4a27-b405-b3bd74f2c862", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0225b45f-3361-40da-aa08-ff45f5ff54b0", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1087", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "96dcbe46-3f53-4a27-b405-b3bd74f2c862", + "request-id" : "0225b45f-3361-40da-aa08-ff45f5ff54b0", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:42 GMT", + "Date" : "Thu, 27 May 2021 21:18:17 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62835D62A61\"", - "client-request-id" : "96dcbe46-3f53-4a27-b405-b3bd74f2c862", - "elapsed-time" : "84", + "ETag" : "W/\"0x8D92154F29BFD16\"", + "client-request-id" : "0225b45f-3361-40da-aa08-ff45f5ff54b0", + "elapsed-time" : "45", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1087", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62835D62A61\\\"\",\"name\":\"ocr-split-text-skillset266153174f2d00f\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"fr\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.SplitSkill\",\"name\":\"mysplit\",\"description\":\"Tested Split skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"fr\",\"textSplitMode\":\"pages\",\"maximumPageLength\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"textItems\",\"targetName\":\"myTextItems\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "96dcbe46-3f53-4a27-b405-b3bd74f2c862", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F29BFD16\\\"\",\"name\":\"ocr-split-text-skillset399768202150d5c\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"fr\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.SplitSkill\",\"name\":\"mysplit\",\"description\":\"Tested Split skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"fr\",\"textSplitMode\":\"pages\",\"maximumPageLength\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"textItems\",\"targetName\":\"myTextItems\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "0225b45f-3361-40da-aa08-ff45f5ff54b0", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-split-text-skillset266153174f2d00f')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-split-text-skillset399768202150d5c')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "fc40424d-b37d-4591-9e9b-046b4e99cd7e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "79da4e38-64f4-4187-8d67-70c7bd75490b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1091", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "fc40424d-b37d-4591-9e9b-046b4e99cd7e", + "request-id" : "79da4e38-64f4-4187-8d67-70c7bd75490b", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:43 GMT", + "Date" : "Thu, 27 May 2021 21:18:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62835E680E6\"", - "client-request-id" : "fc40424d-b37d-4591-9e9b-046b4e99cd7e", - "elapsed-time" : "89", + "ETag" : "W/\"0x8D92154F2A4FF68\"", + "client-request-id" : "79da4e38-64f4-4187-8d67-70c7bd75490b", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1091", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62835E680E6\\\"\",\"name\":\"ocr-split-text-skillset8531509c15071d5\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"fi\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.SplitSkill\",\"name\":\"mysplit\",\"description\":\"Tested Split skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"fi\",\"textSplitMode\":\"sentences\",\"maximumPageLength\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"textItems\",\"targetName\":\"myTextItems\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "fc40424d-b37d-4591-9e9b-046b4e99cd7e", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F2A4FF68\\\"\",\"name\":\"ocr-split-text-skillset12572d9a35fe710\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"fi\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.SplitSkill\",\"name\":\"mysplit\",\"description\":\"Tested Split skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"fi\",\"textSplitMode\":\"sentences\",\"maximumPageLength\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"textItems\",\"targetName\":\"myTextItems\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "79da4e38-64f4-4187-8d67-70c7bd75490b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-split-text-skillset8531509c15071d5')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-split-text-skillset12572d9a35fe710')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-split-text-skillset8531509c15071d5')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-split-text-skillset12572d9a35fe710')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9762d877-7213-457e-a980-f4af3b08df80" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2261beaf-eae2-4e29-bdc6-6dde15a6f2ff" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9762d877-7213-457e-a980-f4af3b08df80", - "elapsed-time" : "55", + "client-request-id" : "2261beaf-eae2-4e29-bdc6-6dde15a6f2ff", + "elapsed-time" : "21", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "9762d877-7213-457e-a980-f4af3b08df80", + "request-id" : "2261beaf-eae2-4e29-bdc6-6dde15a6f2ff", "StatusCode" : "204", - "x-ms-client-request-id" : "9762d877-7213-457e-a980-f4af3b08df80", - "Date" : "Fri, 02 Apr 2021 22:39:43 GMT" + "x-ms-client-request-id" : "2261beaf-eae2-4e29-bdc6-6dde15a6f2ff", + "Date" : "Thu, 27 May 2021 21:18:17 GMT" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e64d1087-17c7-4d6d-a1ff-c55476d013e0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a4782791-05e0-42e1-9993-b6de1b40eacd", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1091", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e64d1087-17c7-4d6d-a1ff-c55476d013e0", + "request-id" : "a4782791-05e0-42e1-9993-b6de1b40eacd", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:43 GMT", + "Date" : "Thu, 27 May 2021 21:18:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628360558E3\"", - "client-request-id" : "e64d1087-17c7-4d6d-a1ff-c55476d013e0", - "elapsed-time" : "80", + "ETag" : "W/\"0x8D92154F2B61985\"", + "client-request-id" : "a4782791-05e0-42e1-9993-b6de1b40eacd", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1091", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F628360558E3\\\"\",\"name\":\"ocr-split-text-skillset983564d2adb3fef\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"da\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.SplitSkill\",\"name\":\"mysplit\",\"description\":\"Tested Split skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"da\",\"textSplitMode\":\"sentences\",\"maximumPageLength\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"textItems\",\"targetName\":\"myTextItems\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "e64d1087-17c7-4d6d-a1ff-c55476d013e0", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F2B61985\\\"\",\"name\":\"ocr-split-text-skillset7208237045ae8f9\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"da\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]},{\"@odata.type\":\"#Microsoft.Skills.Text.SplitSkill\",\"name\":\"mysplit\",\"description\":\"Tested Split skill\",\"context\":\"/document\",\"defaultLanguageCode\":\"da\",\"textSplitMode\":\"sentences\",\"maximumPageLength\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"textItems\",\"targetName\":\"myTextItems\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "a4782791-05e0-42e1-9993-b6de1b40eacd", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-split-text-skillset983564d2adb3fef')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-split-text-skillset7208237045ae8f9')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-split-text-skillset82679b17a661816')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-split-text-skillset61346ce25296fe8')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ac78f994-0ef2-4a44-b6c9-148acd70c92d" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b7f3aa37-7544-413b-bda4-f19b1efb698e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ac78f994-0ef2-4a44-b6c9-148acd70c92d", - "elapsed-time" : "55", + "client-request-id" : "b7f3aa37-7544-413b-bda4-f19b1efb698e", + "elapsed-time" : "20", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "ac78f994-0ef2-4a44-b6c9-148acd70c92d", + "request-id" : "b7f3aa37-7544-413b-bda4-f19b1efb698e", "StatusCode" : "204", - "x-ms-client-request-id" : "ac78f994-0ef2-4a44-b6c9-148acd70c92d", - "Date" : "Fri, 02 Apr 2021 22:39:43 GMT" + "x-ms-client-request-id" : "b7f3aa37-7544-413b-bda4-f19b1efb698e", + "Date" : "Thu, 27 May 2021 21:18:17 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-split-text-skillset266153174f2d00f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-split-text-skillset399768202150d5c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b5996431-7c2e-45f2-b499-51ac0a5286b0" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c49e058d-b4b8-417a-84bd-655eaaf91bfa" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b5996431-7c2e-45f2-b499-51ac0a5286b0", - "elapsed-time" : "74", + "client-request-id" : "c49e058d-b4b8-417a-84bd-655eaaf91bfa", + "elapsed-time" : "24", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "b5996431-7c2e-45f2-b499-51ac0a5286b0", + "request-id" : "c49e058d-b4b8-417a-84bd-655eaaf91bfa", "StatusCode" : "204", - "x-ms-client-request-id" : "b5996431-7c2e-45f2-b499-51ac0a5286b0", - "Date" : "Fri, 02 Apr 2021 22:39:43 GMT" + "x-ms-client-request-id" : "c49e058d-b4b8-417a-84bd-655eaaf91bfa", + "Date" : "Thu, 27 May 2021 21:18:18 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-split-text-skillset983564d2adb3fef')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-split-text-skillset7208237045ae8f9')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9b327fb2-397d-4ae4-9bc7-57e73d160de4" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f6c0a546-89df-48c2-b9c0-74987c96dd4d" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9b327fb2-397d-4ae4-9bc7-57e73d160de4", - "elapsed-time" : "53", + "client-request-id" : "f6c0a546-89df-48c2-b9c0-74987c96dd4d", + "elapsed-time" : "21", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "9b327fb2-397d-4ae4-9bc7-57e73d160de4", + "request-id" : "f6c0a546-89df-48c2-b9c0-74987c96dd4d", "StatusCode" : "204", - "x-ms-client-request-id" : "9b327fb2-397d-4ae4-9bc7-57e73d160de4", - "Date" : "Fri, 02 Apr 2021 22:39:43 GMT" + "x-ms-client-request-id" : "f6c0a546-89df-48c2-b9c0-74987c96dd4d", + "Date" : "Thu, 27 May 2021 21:18:17 GMT" }, "Exception" : null } ], - "variables" : [ "ocr-split-text-skillset82679b17a661816", "ocr-split-text-skillset266153174f2d00f", "ocr-split-text-skillset8531509c15071d5", "ocr-split-text-skillset983564d2adb3fef" ] + "variables" : [ "ocr-split-text-skillset61346ce25296fe8", "ocr-split-text-skillset399768202150d5c", "ocr-split-text-skillset12572d9a35fe710", "ocr-split-text-skillset7208237045ae8f9" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionShaperWithNestedInputs.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionShaperWithNestedInputs.json index 1ca53828a8c8..c5ed03e3e5b5 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionShaperWithNestedInputs.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionShaperWithNestedInputs.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1782be0c-0dd3-4324-99a7-799ebc60af8f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8d330b15-94b2-4176-97c5-30046935a80f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "728", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1782be0c-0dd3-4324-99a7-799ebc60af8f", + "request-id" : "8d330b15-94b2-4176-97c5-30046935a80f", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:41 GMT", + "Date" : "Thu, 27 May 2021 21:18:17 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283517C258\"", - "client-request-id" : "1782be0c-0dd3-4324-99a7-799ebc60af8f", - "elapsed-time" : "102", + "ETag" : "W/\"0x8D92154F223D103\"", + "client-request-id" : "8d330b15-94b2-4176-97c5-30046935a80f", + "elapsed-time" : "58", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "728", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283517C258\\\"\",\"name\":\"nested-skillset-with-sharperskill56640894fd\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Util.ShaperSkill\",\"name\":\"myshaper\",\"description\":\"Tested Shaper skill\",\"context\":\"/document\",\"inputs\":[{\"name\":\"doc\",\"source\":null,\"sourceContext\":\"/document\",\"inputs\":[{\"name\":\"text\",\"source\":\"/document/content\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"images\",\"source\":\"/document/normalized_images/*\",\"sourceContext\":null,\"inputs\":[]}]}],\"outputs\":[{\"name\":\"output\",\"targetName\":\"myOutput\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "1782be0c-0dd3-4324-99a7-799ebc60af8f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F223D103\\\"\",\"name\":\"nested-skillset-with-sharperskill5600476839\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Util.ShaperSkill\",\"name\":\"myshaper\",\"description\":\"Tested Shaper skill\",\"context\":\"/document\",\"inputs\":[{\"name\":\"doc\",\"source\":null,\"sourceContext\":\"/document\",\"inputs\":[{\"name\":\"text\",\"source\":\"/document/content\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"images\",\"source\":\"/document/normalized_images/*\",\"sourceContext\":null,\"inputs\":[]}]}],\"outputs\":[{\"name\":\"output\",\"targetName\":\"myOutput\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "8d330b15-94b2-4176-97c5-30046935a80f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('nested-skillset-with-sharperskill56640894fd')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('nested-skillset-with-sharperskill5600476839')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('nested-skillset-with-sharperskill56640894fd')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('nested-skillset-with-sharperskill5600476839')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4ede865c-4f90-4379-b9a0-1c763f140e49" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3ab4904d-a529-4fdf-ad3e-17dab9b9f1d3" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4ede865c-4f90-4379-b9a0-1c763f140e49", - "elapsed-time" : "51", + "client-request-id" : "3ab4904d-a529-4fdf-ad3e-17dab9b9f1d3", + "elapsed-time" : "20", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "4ede865c-4f90-4379-b9a0-1c763f140e49", + "request-id" : "3ab4904d-a529-4fdf-ad3e-17dab9b9f1d3", "StatusCode" : "204", - "x-ms-client-request-id" : "4ede865c-4f90-4379-b9a0-1c763f140e49", - "Date" : "Fri, 02 Apr 2021 22:39:41 GMT" + "x-ms-client-request-id" : "3ab4904d-a529-4fdf-ad3e-17dab9b9f1d3", + "Date" : "Thu, 27 May 2021 21:18:16 GMT" }, "Exception" : null } ], - "variables" : [ "nested-skillset-with-sharperskill56640894fd" ] + "variables" : [ "nested-skillset-with-sharperskill5600476839" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithCognitiveServicesDefault.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithCognitiveServicesDefault.json index 15890c7cd0de..6eeecac2e449 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithCognitiveServicesDefault.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithCognitiveServicesDefault.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2c610bbc-f253-41a3-995d-bea8d6bf47f9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "104260f9-dbe7-4b62-990e-b65ec79ee3db", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "822", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2c610bbc-f253-41a3-995d-bea8d6bf47f9", + "request-id" : "104260f9-dbe7-4b62-990e-b65ec79ee3db", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:41 GMT", + "Date" : "Thu, 27 May 2021 21:18:17 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62834F54030\"", - "client-request-id" : "2c610bbc-f253-41a3-995d-bea8d6bf47f9", - "elapsed-time" : "79", + "ETag" : "W/\"0x8D92154F20D108C\"", + "client-request-id" : "104260f9-dbe7-4b62-990e-b65ec79ee3db", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "822", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62834F54030\\\"\",\"name\":\"cognitive-services-key-skillset66865265326\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":{\"@odata.type\":\"#Microsoft.Azure.Search.DefaultCognitiveServices\",\"description\":null},\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "2c610bbc-f253-41a3-995d-bea8d6bf47f9", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F20D108C\\\"\",\"name\":\"cognitive-services-key-skillset758738aed08\",\"description\":\"Skillset for testing\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":\"en\",\"detectOrientation\":null,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":{\"@odata.type\":\"#Microsoft.Azure.Search.DefaultCognitiveServices\",\"description\":null},\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "104260f9-dbe7-4b62-990e-b65ec79ee3db", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('cognitive-services-key-skillset66865265326')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('cognitive-services-key-skillset758738aed08')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('cognitive-services-key-skillset66865265326')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('cognitive-services-key-skillset758738aed08')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "43879f0d-ed54-407b-9fb8-11c798d34d04" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "846e478a-f6d8-4e48-9d54-220ac50cd48e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "43879f0d-ed54-407b-9fb8-11c798d34d04", - "elapsed-time" : "63", + "client-request-id" : "846e478a-f6d8-4e48-9d54-220ac50cd48e", + "elapsed-time" : "25", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "43879f0d-ed54-407b-9fb8-11c798d34d04", + "request-id" : "846e478a-f6d8-4e48-9d54-220ac50cd48e", "StatusCode" : "204", - "x-ms-client-request-id" : "43879f0d-ed54-407b-9fb8-11c798d34d04", - "Date" : "Fri, 02 Apr 2021 22:39:41 GMT" + "x-ms-client-request-id" : "846e478a-f6d8-4e48-9d54-220ac50cd48e", + "Date" : "Thu, 27 May 2021 21:18:16 GMT" }, "Exception" : null } ], - "variables" : [ "cognitive-services-key-skillset66865265326" ] + "variables" : [ "cognitive-services-key-skillset758738aed08" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithEntityRecognitionDefaultSettings.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithEntityRecognitionDefaultSettings.json index 9368f58552e1..4c0829ce28c4 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithEntityRecognitionDefaultSettings.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithEntityRecognitionDefaultSettings.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b6f35315-8f59-4c99-b3b1-d9bf7185c3a7", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "61c7bfdf-629e-4cec-a9e3-3ceb26fdb9e5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "711", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b6f35315-8f59-4c99-b3b1-d9bf7185c3a7", + "request-id" : "61c7bfdf-629e-4cec-a9e3-3ceb26fdb9e5", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:42 GMT", + "Date" : "Thu, 27 May 2021 21:18:17 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283557BCAA\"", - "client-request-id" : "b6f35315-8f59-4c99-b3b1-d9bf7185c3a7", - "elapsed-time" : "81", + "ETag" : "W/\"0x8D92154F24F55BD\"", + "client-request-id" : "61c7bfdf-629e-4cec-a9e3-3ceb26fdb9e5", + "elapsed-time" : "84", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "711", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283557BCAA\\\"\",\"name\":\"entity-recognition-skillset4401012708962\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.EntityRecognitionSkill\",\"name\":\"myentity\",\"description\":\"Tested Entity Recognition skill\",\"context\":\"/document\",\"categories\":[],\"defaultLanguageCode\":null,\"minimumPrecision\":null,\"includeTypelessEntities\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"entities\",\"targetName\":\"myEntities\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "b6f35315-8f59-4c99-b3b1-d9bf7185c3a7", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F24F55BD\\\"\",\"name\":\"entity-recognition-skillset59460dd30203f\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.EntityRecognitionSkill\",\"name\":\"myentity\",\"description\":\"Tested Entity Recognition skill\",\"context\":\"/document\",\"categories\":[],\"defaultLanguageCode\":null,\"minimumPrecision\":null,\"includeTypelessEntities\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"entities\",\"targetName\":\"myEntities\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "61c7bfdf-629e-4cec-a9e3-3ceb26fdb9e5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('entity-recognition-skillset4401012708962')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('entity-recognition-skillset59460dd30203f')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('entity-recognition-skillset4401012708962')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('entity-recognition-skillset59460dd30203f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bcf6bcb2-1f92-482a-983c-4949fc8b25db" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4123029d-b7a2-48c0-8f00-0c4166a2888a" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "bcf6bcb2-1f92-482a-983c-4949fc8b25db", - "elapsed-time" : "66", + "client-request-id" : "4123029d-b7a2-48c0-8f00-0c4166a2888a", + "elapsed-time" : "32", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "bcf6bcb2-1f92-482a-983c-4949fc8b25db", + "request-id" : "4123029d-b7a2-48c0-8f00-0c4166a2888a", "StatusCode" : "204", - "x-ms-client-request-id" : "bcf6bcb2-1f92-482a-983c-4949fc8b25db", - "Date" : "Fri, 02 Apr 2021 22:39:42 GMT" + "x-ms-client-request-id" : "4123029d-b7a2-48c0-8f00-0c4166a2888a", + "Date" : "Thu, 27 May 2021 21:18:17 GMT" }, "Exception" : null } ], - "variables" : [ "entity-recognition-skillset4401012708962" ] + "variables" : [ "entity-recognition-skillset59460dd30203f" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithImageAnalysisDefaultSettings.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithImageAnalysisDefaultSettings.json index 2b012a35aa27..2acb45001ded 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithImageAnalysisDefaultSettings.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithImageAnalysisDefaultSettings.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "64388458-92a9-48d7-ab45-969392a9321e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c0b65155-220f-4119-88b3-dfdac29d7a32", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "755", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "64388458-92a9-48d7-ab45-969392a9321e", + "request-id" : "c0b65155-220f-4119-88b3-dfdac29d7a32", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:47 GMT", + "Date" : "Thu, 27 May 2021 21:18:20 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283869CB4A\"", - "client-request-id" : "64388458-92a9-48d7-ab45-969392a9321e", - "elapsed-time" : "90", + "ETag" : "W/\"0x8D92154F41C2C53\"", + "client-request-id" : "c0b65155-220f-4119-88b3-dfdac29d7a32", + "elapsed-time" : "40", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "755", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283869CB4A\\\"\",\"name\":\"image-analysis-skillset41942bfbbf52fdd\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\"name\":\"myimage\",\"description\":\"Tested image analysis skill\",\"context\":\"/document\",\"defaultLanguageCode\":null,\"visualFeatures\":[],\"details\":[],\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"description\",\"targetName\":\"mydescription\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "64388458-92a9-48d7-ab45-969392a9321e", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F41C2C53\\\"\",\"name\":\"image-analysis-skillset417670e2e3b9c69\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.ImageAnalysisSkill\",\"name\":\"myimage\",\"description\":\"Tested image analysis skill\",\"context\":\"/document\",\"defaultLanguageCode\":null,\"visualFeatures\":[],\"details\":[],\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"description\",\"targetName\":\"mydescription\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "c0b65155-220f-4119-88b3-dfdac29d7a32", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('image-analysis-skillset41942bfbbf52fdd')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('image-analysis-skillset417670e2e3b9c69')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('image-analysis-skillset41942bfbbf52fdd')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('image-analysis-skillset417670e2e3b9c69')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4e4764c6-5f93-4489-be1e-146e1eb1d4c9" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "300909d1-3efd-43e7-94fd-5f3baf1e7550" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4e4764c6-5f93-4489-be1e-146e1eb1d4c9", - "elapsed-time" : "57", + "client-request-id" : "300909d1-3efd-43e7-94fd-5f3baf1e7550", + "elapsed-time" : "23", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "4e4764c6-5f93-4489-be1e-146e1eb1d4c9", + "request-id" : "300909d1-3efd-43e7-94fd-5f3baf1e7550", "StatusCode" : "204", - "x-ms-client-request-id" : "4e4764c6-5f93-4489-be1e-146e1eb1d4c9", - "Date" : "Fri, 02 Apr 2021 22:39:46 GMT" + "x-ms-client-request-id" : "300909d1-3efd-43e7-94fd-5f3baf1e7550", + "Date" : "Thu, 27 May 2021 21:18:20 GMT" }, "Exception" : null } ], - "variables" : [ "image-analysis-skillset41942bfbbf52fdd" ] + "variables" : [ "image-analysis-skillset417670e2e3b9c69" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithKeyPhraseExtractionDefaultSettings.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithKeyPhraseExtractionDefaultSettings.json index 87385b937b09..f6490a183585 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithKeyPhraseExtractionDefaultSettings.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithKeyPhraseExtractionDefaultSettings.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "540ddcd5-ec12-4209-82a0-40f14f069376", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d13aba1a-ec76-4d26-9663-2ccfd046f24c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "688", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "540ddcd5-ec12-4209-82a0-40f14f069376", + "request-id" : "d13aba1a-ec76-4d26-9663-2ccfd046f24c", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:42 GMT", + "Date" : "Thu, 27 May 2021 21:18:17 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283579C97B\"", - "client-request-id" : "540ddcd5-ec12-4209-82a0-40f14f069376", - "elapsed-time" : "99", + "ETag" : "W/\"0x8D92154F2641A05\"", + "client-request-id" : "d13aba1a-ec76-4d26-9663-2ccfd046f24c", + "elapsed-time" : "68", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "688", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283579C97B\\\"\",\"name\":\"key-phrase-extraction-skillset62806d340b0\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":null,\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/myText\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "540ddcd5-ec12-4209-82a0-40f14f069376", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F2641A05\\\"\",\"name\":\"key-phrase-extraction-skillset090982c709f\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.KeyPhraseExtractionSkill\",\"name\":\"mykeyphrases\",\"description\":\"Tested Key Phrase skill\",\"context\":\"/document\",\"defaultLanguageCode\":null,\"maxKeyPhraseCount\":null,\"modelVersion\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/myText\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"keyPhrases\",\"targetName\":\"myKeyPhrases\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "d13aba1a-ec76-4d26-9663-2ccfd046f24c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('key-phrase-extraction-skillset62806d340b0')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('key-phrase-extraction-skillset090982c709f')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('key-phrase-extraction-skillset62806d340b0')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('key-phrase-extraction-skillset090982c709f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e766984c-8de6-47e0-b35f-dc44acb50c0c" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1844b4dd-2e05-480c-9a82-b318bd05d6c5" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e766984c-8de6-47e0-b35f-dc44acb50c0c", - "elapsed-time" : "55", + "client-request-id" : "1844b4dd-2e05-480c-9a82-b318bd05d6c5", + "elapsed-time" : "19", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "e766984c-8de6-47e0-b35f-dc44acb50c0c", + "request-id" : "1844b4dd-2e05-480c-9a82-b318bd05d6c5", "StatusCode" : "204", - "x-ms-client-request-id" : "e766984c-8de6-47e0-b35f-dc44acb50c0c", - "Date" : "Fri, 02 Apr 2021 22:39:42 GMT" + "x-ms-client-request-id" : "1844b4dd-2e05-480c-9a82-b318bd05d6c5", + "Date" : "Thu, 27 May 2021 21:18:17 GMT" }, "Exception" : null } ], - "variables" : [ "key-phrase-extraction-skillset62806d340b0" ] + "variables" : [ "key-phrase-extraction-skillset090982c709f" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithMergeDefaultSettings.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithMergeDefaultSettings.json index 0a1c75e880b5..0853836773a0 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithMergeDefaultSettings.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithMergeDefaultSettings.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "32e2e613-93b6-4e8f-b0b4-ce5ddecd01e4", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "995e3346-12c8-4bbd-8120-241aea5213a8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "799", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "32e2e613-93b6-4e8f-b0b4-ce5ddecd01e4", + "request-id" : "995e3346-12c8-4bbd-8120-241aea5213a8", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:46 GMT", + "Date" : "Thu, 27 May 2021 21:18:19 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62838018176\"", - "client-request-id" : "32e2e613-93b6-4e8f-b0b4-ce5ddecd01e4", - "elapsed-time" : "64", + "ETag" : "W/\"0x8D92154F3DC0A59\"", + "client-request-id" : "995e3346-12c8-4bbd-8120-241aea5213a8", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "799", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62838018176\\\"\",\"name\":\"merge-skillset51875ce9f9f5f127a4e\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.MergeSkill\",\"name\":\"mymerge\",\"description\":\"Tested Merged Text skill\",\"context\":\"/document\",\"insertPreTag\":null,\"insertPostTag\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/text\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"itemsToInsert\",\"source\":\"/document/textitems\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"offsets\",\"source\":\"/document/offsets\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"mergedText\",\"targetName\":\"myMergedText\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "32e2e613-93b6-4e8f-b0b4-ce5ddecd01e4", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F3DC0A59\\\"\",\"name\":\"merge-skillset4149393cbfc28896d44\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.MergeSkill\",\"name\":\"mymerge\",\"description\":\"Tested Merged Text skill\",\"context\":\"/document\",\"insertPreTag\":null,\"insertPostTag\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/text\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"itemsToInsert\",\"source\":\"/document/textitems\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"offsets\",\"source\":\"/document/offsets\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"mergedText\",\"targetName\":\"myMergedText\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "995e3346-12c8-4bbd-8120-241aea5213a8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('merge-skillset51875ce9f9f5f127a4e')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('merge-skillset4149393cbfc28896d44')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('merge-skillset51875ce9f9f5f127a4e')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('merge-skillset4149393cbfc28896d44')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6139bfbe-15b5-4782-8c34-7e205f6776c4" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7f8d2759-6d81-420c-9926-85840d562c09" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6139bfbe-15b5-4782-8c34-7e205f6776c4", - "elapsed-time" : "68", + "client-request-id" : "7f8d2759-6d81-420c-9926-85840d562c09", + "elapsed-time" : "23", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "6139bfbe-15b5-4782-8c34-7e205f6776c4", + "request-id" : "7f8d2759-6d81-420c-9926-85840d562c09", "StatusCode" : "204", - "x-ms-client-request-id" : "6139bfbe-15b5-4782-8c34-7e205f6776c4", - "Date" : "Fri, 02 Apr 2021 22:39:47 GMT" + "x-ms-client-request-id" : "7f8d2759-6d81-420c-9926-85840d562c09", + "Date" : "Thu, 27 May 2021 21:18:20 GMT" }, "Exception" : null } ], - "variables" : [ "merge-skillset51875ce9f9f5f127a4e" ] + "variables" : [ "merge-skillset4149393cbfc28896d44" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithOcrDefaultSettings.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithOcrDefaultSettings.json index a0a52c7473ca..ec08990eab05 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithOcrDefaultSettings.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithOcrDefaultSettings.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4dfb24f4-2076-4f27-b89d-5bd3de821835", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8636d5f6-7e11-4cff-bbe1-700dd2d16378", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "754", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4dfb24f4-2076-4f27-b89d-5bd3de821835", + "request-id" : "8636d5f6-7e11-4cff-bbe1-700dd2d16378", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:44 GMT", + "Date" : "Thu, 27 May 2021 21:18:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628371DB05C\"", - "client-request-id" : "4dfb24f4-2076-4f27-b89d-5bd3de821835", - "elapsed-time" : "64", + "ETag" : "W/\"0x8D92154F34B48BD\"", + "client-request-id" : "8636d5f6-7e11-4cff-bbe1-700dd2d16378", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "754", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F628371DB05C\\\"\",\"name\":\"ocr-skillset94212903a5a0c602a443\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "4dfb24f4-2076-4f27-b89d-5bd3de821835", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F34B48BD\\\"\",\"name\":\"ocr-skillset917194b13e532652943e\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "8636d5f6-7e11-4cff-bbe1-700dd2d16378", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset94212903a5a0c602a443')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset917194b13e532652943e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset94212903a5a0c602a443')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset917194b13e532652943e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7c47e488-e099-4a50-abad-4ae14fad2429" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "be6148a2-de48-457c-bc02-8c544900c91b" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7c47e488-e099-4a50-abad-4ae14fad2429", - "elapsed-time" : "74", + "client-request-id" : "be6148a2-de48-457c-bc02-8c544900c91b", + "elapsed-time" : "20", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "7c47e488-e099-4a50-abad-4ae14fad2429", + "request-id" : "be6148a2-de48-457c-bc02-8c544900c91b", "StatusCode" : "204", - "x-ms-client-request-id" : "7c47e488-e099-4a50-abad-4ae14fad2429", - "Date" : "Fri, 02 Apr 2021 22:39:44 GMT" + "x-ms-client-request-id" : "be6148a2-de48-457c-bc02-8c544900c91b", + "Date" : "Thu, 27 May 2021 21:18:19 GMT" }, "Exception" : null } ], - "variables" : [ "ocr-skillset94212903a5a0c602a443" ] + "variables" : [ "ocr-skillset917194b13e532652943e" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithSentimentDefaultSettings.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithSentimentDefaultSettings.json index 0c156c601f0a..7190d7783c28 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithSentimentDefaultSettings.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithSentimentDefaultSettings.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e3c49002-1b9b-4530-b548-29a1eaca2fb6", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "13dfcf0d-ea5d-4255-b7ae-5df28a82dcf5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "619", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e3c49002-1b9b-4530-b548-29a1eaca2fb6", + "request-id" : "13dfcf0d-ea5d-4255-b7ae-5df28a82dcf5", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:41 GMT", + "Date" : "Thu, 27 May 2021 21:18:16 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62834A9D234\"", - "client-request-id" : "e3c49002-1b9b-4530-b548-29a1eaca2fb6", - "elapsed-time" : "82", + "ETag" : "W/\"0x8D92154F1E05315\"", + "client-request-id" : "13dfcf0d-ea5d-4255-b7ae-5df28a82dcf5", + "elapsed-time" : "40", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "619", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62834A9D234\\\"\",\"name\":\"sentiment-skillset99671f1bb5e333f71\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.SentimentSkill\",\"name\":\"mysentiment\",\"description\":\"Tested Sentiment skill\",\"context\":\"/document\",\"defaultLanguageCode\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"score\",\"targetName\":\"mySentiment\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "e3c49002-1b9b-4530-b548-29a1eaca2fb6", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F1E05315\\\"\",\"name\":\"sentiment-skillset7724169e53e4da1ef\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.SentimentSkill\",\"name\":\"mysentiment\",\"description\":\"Tested Sentiment skill\",\"context\":\"/document\",\"defaultLanguageCode\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"score\",\"targetName\":\"mySentiment\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "13dfcf0d-ea5d-4255-b7ae-5df28a82dcf5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('sentiment-skillset99671f1bb5e333f71')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('sentiment-skillset7724169e53e4da1ef')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('sentiment-skillset99671f1bb5e333f71')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('sentiment-skillset7724169e53e4da1ef')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "63b1eb6e-b766-4545-a51b-abfe4bb586e0" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1558a890-a676-4c23-980c-33d7dda907e6" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "63b1eb6e-b766-4545-a51b-abfe4bb586e0", - "elapsed-time" : "61", + "client-request-id" : "1558a890-a676-4c23-980c-33d7dda907e6", + "elapsed-time" : "30", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "63b1eb6e-b766-4545-a51b-abfe4bb586e0", + "request-id" : "1558a890-a676-4c23-980c-33d7dda907e6", "StatusCode" : "204", - "x-ms-client-request-id" : "63b1eb6e-b766-4545-a51b-abfe4bb586e0", - "Date" : "Fri, 02 Apr 2021 22:39:41 GMT" + "x-ms-client-request-id" : "1558a890-a676-4c23-980c-33d7dda907e6", + "Date" : "Thu, 27 May 2021 21:18:16 GMT" }, "Exception" : null } ], - "variables" : [ "sentiment-skillset99671f1bb5e333f71" ] + "variables" : [ "sentiment-skillset7724169e53e4da1ef" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithSplitDefaultSettings.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithSplitDefaultSettings.json index e4b0c4a7736a..e0e2155c19e3 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithSplitDefaultSettings.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.createSkillsetReturnsCorrectDefinitionWithSplitDefaultSettings.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cd6ac06f-e691-4de6-84dc-bed69a15800d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7e45fd1c-02ea-4a34-8a37-456661faf218", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "658", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "cd6ac06f-e691-4de6-84dc-bed69a15800d", + "request-id" : "7e45fd1c-02ea-4a34-8a37-456661faf218", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:42 GMT", + "Date" : "Thu, 27 May 2021 21:18:17 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283535AFC8\"", - "client-request-id" : "cd6ac06f-e691-4de6-84dc-bed69a15800d", - "elapsed-time" : "94", + "ETag" : "W/\"0x8D92154F235394E\"", + "client-request-id" : "7e45fd1c-02ea-4a34-8a37-456661faf218", + "elapsed-time" : "45", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "658", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283535AFC8\\\"\",\"name\":\"split-skillset9221095a99a378c8644\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.SplitSkill\",\"name\":\"mysplit\",\"description\":\"Tested Split skill\",\"context\":\"/document\",\"defaultLanguageCode\":null,\"textSplitMode\":\"pages\",\"maximumPageLength\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"textItems\",\"targetName\":\"myTextItems\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "cd6ac06f-e691-4de6-84dc-bed69a15800d", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F235394E\\\"\",\"name\":\"split-skillset76112facb7bf14e4e46\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Text.SplitSkill\",\"name\":\"mysplit\",\"description\":\"Tested Split skill\",\"context\":\"/document\",\"defaultLanguageCode\":null,\"textSplitMode\":\"pages\",\"maximumPageLength\":null,\"inputs\":[{\"name\":\"text\",\"source\":\"/document/mytext\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"textItems\",\"targetName\":\"myTextItems\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "7e45fd1c-02ea-4a34-8a37-456661faf218", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('split-skillset9221095a99a378c8644')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('split-skillset76112facb7bf14e4e46')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('split-skillset9221095a99a378c8644')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('split-skillset76112facb7bf14e4e46')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "02fcf63c-4068-4125-ace3-6628d01e70b7" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1e8eff28-12a4-477e-9558-2c2d36363bc0" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "02fcf63c-4068-4125-ace3-6628d01e70b7", - "elapsed-time" : "79", + "client-request-id" : "1e8eff28-12a4-477e-9558-2c2d36363bc0", + "elapsed-time" : "25", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "02fcf63c-4068-4125-ace3-6628d01e70b7", + "request-id" : "1e8eff28-12a4-477e-9558-2c2d36363bc0", "StatusCode" : "204", - "x-ms-client-request-id" : "02fcf63c-4068-4125-ace3-6628d01e70b7", - "Date" : "Fri, 02 Apr 2021 22:39:42 GMT" + "x-ms-client-request-id" : "1e8eff28-12a4-477e-9558-2c2d36363bc0", + "Date" : "Thu, 27 May 2021 21:18:16 GMT" }, "Exception" : null } ], - "variables" : [ "split-skillset9221095a99a378c8644" ] + "variables" : [ "split-skillset76112facb7bf14e4e46" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.deleteSkillsetIfExistsWorksOnlyWhenResourceExists.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.deleteSkillsetIfExistsWorksOnlyWhenResourceExists.json index fddaf6fdf9be..bde4b9de3468 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.deleteSkillsetIfExistsWorksOnlyWhenResourceExists.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.deleteSkillsetIfExistsWorksOnlyWhenResourceExists.json @@ -1,81 +1,81 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset41961ff625b7c722f432')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset038373dec6192141645c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c1da1e4d-ebb4-4ef6-9d4b-9228ff68cbd0", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e85b1684-ef92-4f2e-9128-1e016b606a4e", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "754", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c1da1e4d-ebb4-4ef6-9d4b-9228ff68cbd0", + "request-id" : "e85b1684-ef92-4f2e-9128-1e016b606a4e", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:43 GMT", + "Date" : "Thu, 27 May 2021 21:18:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628366F2992\"", - "client-request-id" : "c1da1e4d-ebb4-4ef6-9d4b-9228ff68cbd0", - "elapsed-time" : "65", + "ETag" : "W/\"0x8D92154F2EBD94F\"", + "client-request-id" : "e85b1684-ef92-4f2e-9128-1e016b606a4e", + "elapsed-time" : "30", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "754", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F628366F2992\\\"\",\"name\":\"ocr-skillset41961ff625b7c722f432\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "c1da1e4d-ebb4-4ef6-9d4b-9228ff68cbd0", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F2EBD94F\\\"\",\"name\":\"ocr-skillset038373dec6192141645c\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "e85b1684-ef92-4f2e-9128-1e016b606a4e", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset41961ff625b7c722f432')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset038373dec6192141645c')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset41961ff625b7c722f432')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset038373dec6192141645c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "eea4309d-a54e-4b45-8589-9c99f88a873a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "96750275-f8f4-4521-87b8-c5f7e820671d" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "eea4309d-a54e-4b45-8589-9c99f88a873a", - "elapsed-time" : "70", + "client-request-id" : "96750275-f8f4-4521-87b8-c5f7e820671d", + "elapsed-time" : "19", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "eea4309d-a54e-4b45-8589-9c99f88a873a", + "request-id" : "96750275-f8f4-4521-87b8-c5f7e820671d", "StatusCode" : "204", - "x-ms-client-request-id" : "eea4309d-a54e-4b45-8589-9c99f88a873a", - "Date" : "Fri, 02 Apr 2021 22:39:43 GMT" + "x-ms-client-request-id" : "96750275-f8f4-4521-87b8-c5f7e820671d", + "Date" : "Thu, 27 May 2021 21:18:18 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset41961ff625b7c722f432')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset038373dec6192141645c')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5a819430-a068-4270-8288-27ac42e78e9f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "98cfb8f9-9ced-467d-bd79-821a2506b88d" }, "Response" : { + "content-length" : "160", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5a819430-a068-4270-8288-27ac42e78e9f", + "request-id" : "98cfb8f9-9ced-467d-bd79-821a2506b88d", "StatusCode" : "412", - "Date" : "Fri, 02 Apr 2021 22:39:43 GMT", + "Date" : "Thu, 27 May 2021 21:18:18 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5a819430-a068-4270-8288-27ac42e78e9f", - "elapsed-time" : "32", + "client-request-id" : "98cfb8f9-9ced-467d-bd79-821a2506b88d", + "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "5a819430-a068-4270-8288-27ac42e78e9f", + "x-ms-client-request-id" : "98cfb8f9-9ced-467d-bd79-821a2506b88d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "ocr-skillset41961ff625b7c722f432" ] + "variables" : [ "ocr-skillset038373dec6192141645c" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.deleteSkillsetIfNotChangedWorksOnlyOnCurrentResource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.deleteSkillsetIfNotChangedWorksOnlyOnCurrentResource.json index 635d0a7011f3..700310e62282 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.deleteSkillsetIfNotChangedWorksOnlyOnCurrentResource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.deleteSkillsetIfNotChangedWorksOnlyOnCurrentResource.json @@ -1,109 +1,109 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset481497e9535120bc64cc')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset602247fdc3bafda7e48e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e29bfd40-29d9-4d69-9098-c47ce65002ff", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "dfdf8c26-6972-4e2b-9903-bfb4ae4fe332", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "754", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e29bfd40-29d9-4d69-9098-c47ce65002ff", + "request-id" : "dfdf8c26-6972-4e2b-9903-bfb4ae4fe332", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:40 GMT", + "Date" : "Thu, 27 May 2021 21:18:16 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62834639518\"", - "client-request-id" : "e29bfd40-29d9-4d69-9098-c47ce65002ff", - "elapsed-time" : "70", + "ETag" : "W/\"0x8D92154F1BB10FC\"", + "client-request-id" : "dfdf8c26-6972-4e2b-9903-bfb4ae4fe332", + "elapsed-time" : "29", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "754", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62834639518\\\"\",\"name\":\"ocr-skillset481497e9535120bc64cc\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "e29bfd40-29d9-4d69-9098-c47ce65002ff", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F1BB10FC\\\"\",\"name\":\"ocr-skillset602247fdc3bafda7e48e\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "dfdf8c26-6972-4e2b-9903-bfb4ae4fe332", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset481497e9535120bc64cc')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset602247fdc3bafda7e48e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset481497e9535120bc64cc')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset602247fdc3bafda7e48e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f2ac7f41-7512-40ee-bab7-39cba0460e4f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6f368d1a-aa75-43d9-bec8-122d6d71c5e1", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "754", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f2ac7f41-7512-40ee-bab7-39cba0460e4f", + "request-id" : "6f368d1a-aa75-43d9-bec8-122d6d71c5e1", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:40 GMT", + "Date" : "Thu, 27 May 2021 21:18:16 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62834732834\"", - "client-request-id" : "f2ac7f41-7512-40ee-bab7-39cba0460e4f", - "elapsed-time" : "66", + "ETag" : "W/\"0x8D92154F1C39E0F\"", + "client-request-id" : "6f368d1a-aa75-43d9-bec8-122d6d71c5e1", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "754", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F62834732834\\\"\",\"name\":\"ocr-skillset481497e9535120bc64cc\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "f2ac7f41-7512-40ee-bab7-39cba0460e4f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F1C39E0F\\\"\",\"name\":\"ocr-skillset602247fdc3bafda7e48e\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "6f368d1a-aa75-43d9-bec8-122d6d71c5e1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset481497e9535120bc64cc')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset602247fdc3bafda7e48e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "92c030c2-d00d-4ba1-987d-210537590b44" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d655f52b-cd9a-48c2-9f92-335f805acdff" }, "Response" : { + "content-length" : "160", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "92c030c2-d00d-4ba1-987d-210537590b44", + "request-id" : "d655f52b-cd9a-48c2-9f92-335f805acdff", "StatusCode" : "412", - "Date" : "Fri, 02 Apr 2021 22:39:40 GMT", + "Date" : "Thu, 27 May 2021 21:18:16 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "92c030c2-d00d-4ba1-987d-210537590b44", - "elapsed-time" : "36", + "client-request-id" : "d655f52b-cd9a-48c2-9f92-335f805acdff", + "elapsed-time" : "7", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "92c030c2-d00d-4ba1-987d-210537590b44", + "x-ms-client-request-id" : "d655f52b-cd9a-48c2-9f92-335f805acdff", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset481497e9535120bc64cc')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset602247fdc3bafda7e48e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3c515740-e688-48a0-adfb-ad8e0ed6d03b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "07d1ec0b-2099-4b8b-bdd7-4f415c371581" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3c515740-e688-48a0-adfb-ad8e0ed6d03b", - "elapsed-time" : "53", + "client-request-id" : "07d1ec0b-2099-4b8b-bdd7-4f415c371581", + "elapsed-time" : "20", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "3c515740-e688-48a0-adfb-ad8e0ed6d03b", + "request-id" : "07d1ec0b-2099-4b8b-bdd7-4f415c371581", "StatusCode" : "204", - "x-ms-client-request-id" : "3c515740-e688-48a0-adfb-ad8e0ed6d03b", - "Date" : "Fri, 02 Apr 2021 22:39:40 GMT" + "x-ms-client-request-id" : "07d1ec0b-2099-4b8b-bdd7-4f415c371581", + "Date" : "Thu, 27 May 2021 21:18:16 GMT" }, "Exception" : null } ], - "variables" : [ "ocr-skillset481497e9535120bc64cc" ] + "variables" : [ "ocr-skillset602247fdc3bafda7e48e" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.deleteSkillsetIsIdempotent.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.deleteSkillsetIsIdempotent.json index 272e5f197579..755978e2379c 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.deleteSkillsetIsIdempotent.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.deleteSkillsetIsIdempotent.json @@ -1,108 +1,108 @@ { "networkCallRecords" : [ { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillsetdeleteskillsetisidempotent295217931')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillsetdeleteskillsetisidempotent81732885a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8088e57c-15d8-4c56-b87a-5fc9165bd4f1" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "696a9b8d-fa0b-4e3d-b438-8cb231205360" }, "Response" : { + "content-length" : "155", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "8088e57c-15d8-4c56-b87a-5fc9165bd4f1", + "request-id" : "696a9b8d-fa0b-4e3d-b438-8cb231205360", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:39:42 GMT", + "Date" : "Thu, 27 May 2021 21:18:17 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8088e57c-15d8-4c56-b87a-5fc9165bd4f1", - "elapsed-time" : "42", + "client-request-id" : "696a9b8d-fa0b-4e3d-b438-8cb231205360", + "elapsed-time" : "4", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "155", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No skillset with the name 'ocr-skillsetdeleteskillsetisidempotent295217931' was found in a service named 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No skillset with the name 'ocr-skillsetdeleteskillsetisidempotent81732885a' was found in a service named 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "8088e57c-15d8-4c56-b87a-5fc9165bd4f1", + "x-ms-client-request-id" : "696a9b8d-fa0b-4e3d-b438-8cb231205360", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8337437-0a93-451c-96d1-a178d01e6357", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2debd82b-e875-4f51-90be-8f3142661da3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "769", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f8337437-0a93-451c-96d1-a178d01e6357", + "request-id" : "2debd82b-e875-4f51-90be-8f3142661da3", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:42 GMT", + "Date" : "Thu, 27 May 2021 21:18:17 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628359F3257\"", - "client-request-id" : "f8337437-0a93-451c-96d1-a178d01e6357", - "elapsed-time" : "68", + "ETag" : "W/\"0x8D92154F27BC506\"", + "client-request-id" : "2debd82b-e875-4f51-90be-8f3142661da3", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "769", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F628359F3257\\\"\",\"name\":\"ocr-skillsetdeleteskillsetisidempotent295217931\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "f8337437-0a93-451c-96d1-a178d01e6357", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F27BC506\\\"\",\"name\":\"ocr-skillsetdeleteskillsetisidempotent81732885a\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "2debd82b-e875-4f51-90be-8f3142661da3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillsetdeleteskillsetisidempotent295217931')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillsetdeleteskillsetisidempotent81732885a')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillsetdeleteskillsetisidempotent295217931')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillsetdeleteskillsetisidempotent81732885a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b296eaee-1a58-4123-a426-0ebeb45279b6" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d2ba5cae-3489-41a1-b7f2-74d258af2cfc" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b296eaee-1a58-4123-a426-0ebeb45279b6", - "elapsed-time" : "60", + "client-request-id" : "d2ba5cae-3489-41a1-b7f2-74d258af2cfc", + "elapsed-time" : "21", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "b296eaee-1a58-4123-a426-0ebeb45279b6", + "request-id" : "d2ba5cae-3489-41a1-b7f2-74d258af2cfc", "StatusCode" : "204", - "x-ms-client-request-id" : "b296eaee-1a58-4123-a426-0ebeb45279b6", - "Date" : "Fri, 02 Apr 2021 22:39:42 GMT" + "x-ms-client-request-id" : "d2ba5cae-3489-41a1-b7f2-74d258af2cfc", + "Date" : "Thu, 27 May 2021 21:18:17 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillsetdeleteskillsetisidempotent295217931')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillsetdeleteskillsetisidempotent81732885a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "abc36b3a-5c09-4de0-8f6f-191b3c9c4cc9" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2c46815c-e25e-4dab-9d2b-0edbdb4ea853" }, "Response" : { + "content-length" : "155", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "abc36b3a-5c09-4de0-8f6f-191b3c9c4cc9", + "request-id" : "2c46815c-e25e-4dab-9d2b-0edbdb4ea853", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:39:42 GMT", + "Date" : "Thu, 27 May 2021 21:18:17 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "abc36b3a-5c09-4de0-8f6f-191b3c9c4cc9", - "elapsed-time" : "25", + "client-request-id" : "2c46815c-e25e-4dab-9d2b-0edbdb4ea853", + "elapsed-time" : "4", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "155", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No skillset with the name 'ocr-skillsetdeleteskillsetisidempotent295217931' was found in a service named 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No skillset with the name 'ocr-skillsetdeleteskillsetisidempotent81732885a' was found in a service named 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "abc36b3a-5c09-4de0-8f6f-191b3c9c4cc9", + "x-ms-client-request-id" : "2c46815c-e25e-4dab-9d2b-0edbdb4ea853", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "ocr-skillsetdeleteskillsetisidempotent295217931" ] + "variables" : [ "ocr-skillsetdeleteskillsetisidempotent81732885a" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.getOcrSkillsetReturnsCorrectDefinition.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.getOcrSkillsetReturnsCorrectDefinition.json index 0c5194f96255..922ea8a0f158 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.getOcrSkillsetReturnsCorrectDefinition.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.getOcrSkillsetReturnsCorrectDefinition.json @@ -1,81 +1,81 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a6afc715-bd3f-4154-8f74-3e253573e1c6", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0a1ca928-c299-41f1-8f75-e2fe17a5e7c5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "754", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a6afc715-bd3f-4154-8f74-3e253573e1c6", + "request-id" : "0a1ca928-c299-41f1-8f75-e2fe17a5e7c5", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:50 GMT", + "Date" : "Thu, 27 May 2021 21:18:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283A6A132A\"", - "client-request-id" : "a6afc715-bd3f-4154-8f74-3e253573e1c6", - "elapsed-time" : "74", + "ETag" : "W/\"0x8D92154F553FAAC\"", + "client-request-id" : "0a1ca928-c299-41f1-8f75-e2fe17a5e7c5", + "elapsed-time" : "46", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "754", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283A6A132A\\\"\",\"name\":\"ocr-skillset7642014bad3d448ae489\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "a6afc715-bd3f-4154-8f74-3e253573e1c6", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F553FAAC\\\"\",\"name\":\"ocr-skillset70908283f482f79b44f6\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "0a1ca928-c299-41f1-8f75-e2fe17a5e7c5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset7642014bad3d448ae489')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset70908283f482f79b44f6')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset7642014bad3d448ae489')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset70908283f482f79b44f6')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0700c28a-e947-491e-8ae0-c2a66d021977" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d1fc6e73-1db5-454b-93a0-3f7f60220718" }, "Response" : { + "content-length" : "757", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0700c28a-e947-491e-8ae0-c2a66d021977", + "request-id" : "d1fc6e73-1db5-454b-93a0-3f7f60220718", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:50 GMT", + "Date" : "Thu, 27 May 2021 21:18:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283A6A132A\"", - "client-request-id" : "0700c28a-e947-491e-8ae0-c2a66d021977", - "elapsed-time" : "44", + "ETag" : "W/\"0x8D92154F553FAAC\"", + "client-request-id" : "d1fc6e73-1db5-454b-93a0-3f7f60220718", + "elapsed-time" : "17", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "757", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283A6A132A\\\"\",\"name\":\"ocr-skillset7642014bad3d448ae489\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":\"Space\",\"defaultLanguageCode\":\"en\",\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "0700c28a-e947-491e-8ae0-c2a66d021977", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F553FAAC\\\"\",\"name\":\"ocr-skillset70908283f482f79b44f6\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":\"Space\",\"defaultLanguageCode\":\"en\",\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "d1fc6e73-1db5-454b-93a0-3f7f60220718", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset7642014bad3d448ae489')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset70908283f482f79b44f6')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "397358c8-b825-42bd-a146-5ef5d249878f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "24bc5994-57e7-41a0-ab9d-f2a3d668ee6e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "397358c8-b825-42bd-a146-5ef5d249878f", - "elapsed-time" : "63", + "client-request-id" : "24bc5994-57e7-41a0-ab9d-f2a3d668ee6e", + "elapsed-time" : "21", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "397358c8-b825-42bd-a146-5ef5d249878f", + "request-id" : "24bc5994-57e7-41a0-ab9d-f2a3d668ee6e", "StatusCode" : "204", - "x-ms-client-request-id" : "397358c8-b825-42bd-a146-5ef5d249878f", - "Date" : "Fri, 02 Apr 2021 22:39:50 GMT" + "x-ms-client-request-id" : "24bc5994-57e7-41a0-ab9d-f2a3d668ee6e", + "Date" : "Thu, 27 May 2021 21:18:22 GMT" }, "Exception" : null } ], - "variables" : [ "ocr-skillset7642014bad3d448ae489" ] + "variables" : [ "ocr-skillset70908283f482f79b44f6" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.getOcrSkillsetReturnsCorrectDefinitionWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.getOcrSkillsetReturnsCorrectDefinitionWithResponse.json index 68d9bcc7a25c..04052aebae03 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.getOcrSkillsetReturnsCorrectDefinitionWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.getOcrSkillsetReturnsCorrectDefinitionWithResponse.json @@ -1,81 +1,81 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3c23c475-914e-4c8e-8585-b47cfe6d759f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2a33f84d-2f71-463b-b224-becbe599422f", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "754", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3c23c475-914e-4c8e-8585-b47cfe6d759f", + "request-id" : "2a33f84d-2f71-463b-b224-becbe599422f", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:51 GMT", + "Date" : "Thu, 27 May 2021 21:18:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283AE992A0\"", - "client-request-id" : "3c23c475-914e-4c8e-8585-b47cfe6d759f", - "elapsed-time" : "80", + "ETag" : "W/\"0x8D92154F5A97D43\"", + "client-request-id" : "2a33f84d-2f71-463b-b224-becbe599422f", + "elapsed-time" : "33", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "754", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283AE992A0\\\"\",\"name\":\"ocr-skillset620729c1373ddab5a4fe\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "3c23c475-914e-4c8e-8585-b47cfe6d759f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F5A97D43\\\"\",\"name\":\"ocr-skillset542073d75dbb963ab40e\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "2a33f84d-2f71-463b-b224-becbe599422f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset620729c1373ddab5a4fe')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset542073d75dbb963ab40e')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset620729c1373ddab5a4fe')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset542073d75dbb963ab40e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e07f9d13-249a-42cf-a945-7ba5062e8755" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9d2e26cf-6657-4797-8fc4-ecca4f74623f" }, "Response" : { + "content-length" : "757", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e07f9d13-249a-42cf-a945-7ba5062e8755", + "request-id" : "9d2e26cf-6657-4797-8fc4-ecca4f74623f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:51 GMT", + "Date" : "Thu, 27 May 2021 21:18:22 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283AE992A0\"", - "client-request-id" : "e07f9d13-249a-42cf-a945-7ba5062e8755", - "elapsed-time" : "33", + "ETag" : "W/\"0x8D92154F5A97D43\"", + "client-request-id" : "9d2e26cf-6657-4797-8fc4-ecca4f74623f", + "elapsed-time" : "22", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "757", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283AE992A0\\\"\",\"name\":\"ocr-skillset620729c1373ddab5a4fe\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":\"Space\",\"defaultLanguageCode\":\"en\",\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "e07f9d13-249a-42cf-a945-7ba5062e8755", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F5A97D43\\\"\",\"name\":\"ocr-skillset542073d75dbb963ab40e\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":\"Space\",\"defaultLanguageCode\":\"en\",\"detectOrientation\":false,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "9d2e26cf-6657-4797-8fc4-ecca4f74623f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset620729c1373ddab5a4fe')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset542073d75dbb963ab40e')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0ef2f9d4-f85a-4eb8-ba64-9ccb930203c6" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "299b8d98-451b-4aa3-bb96-088fdd37aa69" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0ef2f9d4-f85a-4eb8-ba64-9ccb930203c6", - "elapsed-time" : "74", + "client-request-id" : "299b8d98-451b-4aa3-bb96-088fdd37aa69", + "elapsed-time" : "20", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "0ef2f9d4-f85a-4eb8-ba64-9ccb930203c6", + "request-id" : "299b8d98-451b-4aa3-bb96-088fdd37aa69", "StatusCode" : "204", - "x-ms-client-request-id" : "0ef2f9d4-f85a-4eb8-ba64-9ccb930203c6", - "Date" : "Fri, 02 Apr 2021 22:39:51 GMT" + "x-ms-client-request-id" : "299b8d98-451b-4aa3-bb96-088fdd37aa69", + "Date" : "Thu, 27 May 2021 21:18:23 GMT" }, "Exception" : null } ], - "variables" : [ "ocr-skillset620729c1373ddab5a4fe" ] + "variables" : [ "ocr-skillset542073d75dbb963ab40e" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.getOcrSkillsetWithShouldDetectOrientationReturnsCorrectDefinition.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.getOcrSkillsetWithShouldDetectOrientationReturnsCorrectDefinition.json index 0cef7eeae8c4..0c05ead9e680 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.getOcrSkillsetWithShouldDetectOrientationReturnsCorrectDefinition.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.getOcrSkillsetWithShouldDetectOrientationReturnsCorrectDefinition.json @@ -1,81 +1,81 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "c1de828e-112c-4b0d-93f4-f9c043faf5e1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "743088a9-5b4a-47ce-90a2-52036d0417f2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "753", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "c1de828e-112c-4b0d-93f4-f9c043faf5e1", + "request-id" : "743088a9-5b4a-47ce-90a2-52036d0417f2", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:48 GMT", + "Date" : "Thu, 27 May 2021 21:18:21 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628392D8B73\"", - "client-request-id" : "c1de828e-112c-4b0d-93f4-f9c043faf5e1", - "elapsed-time" : "85", + "ETag" : "W/\"0x8D92154F49C490C\"", + "client-request-id" : "743088a9-5b4a-47ce-90a2-52036d0417f2", + "elapsed-time" : "32", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "753", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F628392D8B73\\\"\",\"name\":\"ocr-skillset938339efc87dfed3b462\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":true,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "c1de828e-112c-4b0d-93f4-f9c043faf5e1", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F49C490C\\\"\",\"name\":\"ocr-skillset65803644da8c2e0174dd\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":null,\"defaultLanguageCode\":null,\"detectOrientation\":true,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "743088a9-5b4a-47ce-90a2-52036d0417f2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset938339efc87dfed3b462')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/skillsets('ocr-skillset65803644da8c2e0174dd')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset938339efc87dfed3b462')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset65803644da8c2e0174dd')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "94399deb-7010-49d2-8aea-46d8f07b5c18" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "00a64334-d966-4b9c-a82e-ca6b135abf00" }, "Response" : { + "content-length" : "756", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "94399deb-7010-49d2-8aea-46d8f07b5c18", + "request-id" : "00a64334-d966-4b9c-a82e-ca6b135abf00", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:49 GMT", + "Date" : "Thu, 27 May 2021 21:18:20 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628392D8B73\"", - "client-request-id" : "94399deb-7010-49d2-8aea-46d8f07b5c18", - "elapsed-time" : "32", + "ETag" : "W/\"0x8D92154F49C490C\"", + "client-request-id" : "00a64334-d966-4b9c-a82e-ca6b135abf00", + "elapsed-time" : "10", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "756", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D8F628392D8B73\\\"\",\"name\":\"ocr-skillset938339efc87dfed3b462\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":\"Space\",\"defaultLanguageCode\":\"en\",\"detectOrientation\":true,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", - "x-ms-client-request-id" : "94399deb-7010-49d2-8aea-46d8f07b5c18", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#skillsets/$entity\",\"@odata.etag\":\"\\\"0x8D92154F49C490C\\\"\",\"name\":\"ocr-skillset65803644da8c2e0174dd\",\"description\":\"Skillset for testing default configuration\",\"skills\":[{\"@odata.type\":\"#Microsoft.Skills.Vision.OcrSkill\",\"name\":\"myocr\",\"description\":\"Tested OCR skill\",\"context\":\"/document\",\"textExtractionAlgorithm\":null,\"lineEnding\":\"Space\",\"defaultLanguageCode\":\"en\",\"detectOrientation\":true,\"inputs\":[{\"name\":\"url\",\"source\":\"/document/url\",\"sourceContext\":null,\"inputs\":[]},{\"name\":\"queryString\",\"source\":\"/document/queryString\",\"sourceContext\":null,\"inputs\":[]}],\"outputs\":[{\"name\":\"text\",\"targetName\":\"mytext\"}]}],\"cognitiveServices\":null,\"knowledgeStore\":null,\"encryptionKey\":null}", + "x-ms-client-request-id" : "00a64334-d966-4b9c-a82e-ca6b135abf00", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset938339efc87dfed3b462')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('ocr-skillset65803644da8c2e0174dd')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f09cda46-3b75-42b8-9f19-db28ac900cba" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f210fa19-15e3-4740-850a-98d1fe3083a0" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f09cda46-3b75-42b8-9f19-db28ac900cba", - "elapsed-time" : "69", + "client-request-id" : "f210fa19-15e3-4740-850a-98d1fe3083a0", + "elapsed-time" : "22", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "f09cda46-3b75-42b8-9f19-db28ac900cba", + "request-id" : "f210fa19-15e3-4740-850a-98d1fe3083a0", "StatusCode" : "204", - "x-ms-client-request-id" : "f09cda46-3b75-42b8-9f19-db28ac900cba", - "Date" : "Fri, 02 Apr 2021 22:39:49 GMT" + "x-ms-client-request-id" : "f210fa19-15e3-4740-850a-98d1fe3083a0", + "Date" : "Thu, 27 May 2021 21:18:21 GMT" }, "Exception" : null } ], - "variables" : [ "ocr-skillset938339efc87dfed3b462" ] + "variables" : [ "ocr-skillset65803644da8c2e0174dd" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.getSkillsetThrowsOnNotFound.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.getSkillsetThrowsOnNotFound.json index 2b72bf39f74b..fbe8903df388 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.getSkillsetThrowsOnNotFound.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SkillsetManagementSyncTests.getSkillsetThrowsOnNotFound.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/skillsets('thisdoesnotexist')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/skillsets('thisdoesnotexist')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b337913e-2fcf-4aeb-99be-06c66b5a4482" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fc2cbdab-dd19-474a-be21-6f4d71da556c" }, "Response" : { + "content-length" : "158", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b337913e-2fcf-4aeb-99be-06c66b5a4482", + "request-id" : "fc2cbdab-dd19-474a-be21-6f4d71da556c", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:39:41 GMT", + "Date" : "Thu, 27 May 2021 21:18:16 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b337913e-2fcf-4aeb-99be-06c66b5a4482", - "elapsed-time" : "76", + "client-request-id" : "fc2cbdab-dd19-474a-be21-6f4d71da556c", + "elapsed-time" : "10", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "158", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No skillset with the name 'thisdoesnotexist' was found in service 'Microsoft.WindowsAzure.Search.Core.Models.SearchService'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "b337913e-2fcf-4aeb-99be-06c66b5a4482", + "x-ms-client-request-id" : "fc2cbdab-dd19-474a-be21-6f4d71da556c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canGetFuzzySuggestions.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canGetFuzzySuggestions.json index 37344f897ebf..b7e6eb1b7338 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canGetFuzzySuggestions.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canGetFuzzySuggestions.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')//docs/search.post.suggest?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')/docs/search.post.suggest?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6cf0c7e6-9e45-4889-87a0-f9b40f4c8055", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4dc5f239-997f-44d4-849b-cb25fb335348", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "4024", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6cf0c7e6-9e45-4889-87a0-f9b40f4c8055", + "request-id" : "4dc5f239-997f-44d4-849b-cb25fb335348", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:15 GMT", + "Date" : "Thu, 27 May 2021 21:13:46 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6cf0c7e6-9e45-4889-87a0-f9b40f4c8055", - "elapsed-time" : "39", + "client-request-id" : "4dc5f239-997f-44d4-849b-cb25fb335348", + "elapsed-time" : "24", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "4024", "Body" : "{\"value\":[{\"@search.text\":\"Countryside Hotel\",\"HotelId\":\"10\",\"HotelName\":\"Countryside Hotel\",\"Description\":\"Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer & dryer, 24/7 support, bowling alley, fitness center and more.\",\"Description_fr\":\"\\u00c9conomisez jusqu'\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse & 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\":{\"type\":\"Point\",\"coordinates\":[-78.940483,35.90416],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"6910 Fayetteville Rd\",\"City\":\"Durham\",\"StateProvince\":\"NC\",\"PostalCode\":\"27713\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Suite, 1 King Bed (Amenities)\",\"Description_fr\":\"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)\",\"Description_fr\":\"Chambre \\u00c9conomique, 1 grand lit (Services)\",\"Type\":\"Budget Room\",\"BaseRate\":7.69,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":false,\"Tags\":[\"coffee maker\"]}]},{\"@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\",\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.text\":\"Pretty good hotel\",\"HotelId\":\"4\",\"HotelName\":\"Express Rooms\",\"Description\":\"Pretty good hotel\",\"Description_fr\":\"Assez bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"1995-07-01T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.text\":\"Another good hotel\",\"HotelId\":\"5\",\"HotelName\":\"Comfy Place\",\"Description\":\"Another good hotel\",\"Description_fr\":\"Un autre bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"2012-08-12T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.text\":\"Very popular hotel in town\",\"HotelId\":\"3\",\"HotelName\":\"EconoStay\",\"Description\":\"Very popular hotel in town\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "6cf0c7e6-9e45-4889-87a0-f9b40f4c8055", + "x-ms-client-request-id" : "4dc5f239-997f-44d4-849b-cb25fb335348", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canSuggestDynamicDocuments.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canSuggestDynamicDocuments.json index 20a9b5b806ea..4adae749f698 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canSuggestDynamicDocuments.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canSuggestDynamicDocuments.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')//docs/search.post.suggest?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')/docs/search.post.suggest?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "35d369cd-6edf-4d06-b9c6-a8a56686243e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e2cce714-d7a3-48b1-a470-693de334c8ff", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "2172", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "35d369cd-6edf-4d06-b9c6-a8a56686243e", + "request-id" : "e2cce714-d7a3-48b1-a470-693de334c8ff", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:15 GMT", + "Date" : "Thu, 27 May 2021 21:13:46 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "35d369cd-6edf-4d06-b9c6-a8a56686243e", + "client-request-id" : "e2cce714-d7a3-48b1-a470-693de334c8ff", "elapsed-time" : "9", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "2172", "Body" : "{\"value\":[{\"@search.text\":\"Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer & dryer, 24/7 support, bowling alley, fitness center and more.\",\"HotelId\":\"10\",\"HotelName\":\"Countryside Hotel\",\"Description\":\"Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer & dryer, 24/7 support, bowling alley, fitness center and more.\",\"Description_fr\":\"\\u00c9conomisez jusqu'\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse & 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\":{\"type\":\"Point\",\"coordinates\":[-78.940483,35.90416],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"6910 Fayetteville Rd\",\"City\":\"Durham\",\"StateProvince\":\"NC\",\"PostalCode\":\"27713\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Suite, 1 King Bed (Amenities)\",\"Description_fr\":\"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)\",\"Description_fr\":\"Chambre \\u00c9conomique, 1 grand lit (Services)\",\"Type\":\"Budget Room\",\"BaseRate\":7.69,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":false,\"Tags\":[\"coffee maker\"]}]},{\"@search.text\":\"Has some road noise and is next to the very police station. Bathrooms had morel coverings.\",\"HotelId\":\"8\",\"HotelName\":null,\"Description\":\"Has some road noise and is next to the very police station. Bathrooms had morel coverings.\",\"Description_fr\":\"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\":[]}]}", - "x-ms-client-request-id" : "35d369cd-6edf-4d06-b9c6-a8a56686243e", + "x-ms-client-request-id" : "e2cce714-d7a3-48b1-a470-693de334c8ff", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canSuggestStaticallyTypedDocuments.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canSuggestStaticallyTypedDocuments.json index fb3ae29b1d67..bc46f1b3bdc1 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canSuggestStaticallyTypedDocuments.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canSuggestStaticallyTypedDocuments.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')//docs/search.post.suggest?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')/docs/search.post.suggest?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "06d344b8-7cf7-4710-acfa-6114c01f3bf9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bc9b8dab-7fb5-47b8-b3c3-3e38fdc3678d", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "2172", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "06d344b8-7cf7-4710-acfa-6114c01f3bf9", + "request-id" : "bc9b8dab-7fb5-47b8-b3c3-3e38fdc3678d", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:10 GMT", + "Date" : "Thu, 27 May 2021 21:13:41 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "06d344b8-7cf7-4710-acfa-6114c01f3bf9", - "elapsed-time" : "118", + "client-request-id" : "bc9b8dab-7fb5-47b8-b3c3-3e38fdc3678d", + "elapsed-time" : "117", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "2172", "Body" : "{\"value\":[{\"@search.text\":\"Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer & dryer, 24/7 support, bowling alley, fitness center and more.\",\"HotelId\":\"10\",\"HotelName\":\"Countryside Hotel\",\"Description\":\"Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer & dryer, 24/7 support, bowling alley, fitness center and more.\",\"Description_fr\":\"\\u00c9conomisez jusqu'\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse & 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\":{\"type\":\"Point\",\"coordinates\":[-78.940483,35.90416],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"6910 Fayetteville Rd\",\"City\":\"Durham\",\"StateProvince\":\"NC\",\"PostalCode\":\"27713\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Suite, 1 King Bed (Amenities)\",\"Description_fr\":\"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)\",\"Description_fr\":\"Chambre \\u00c9conomique, 1 grand lit (Services)\",\"Type\":\"Budget Room\",\"BaseRate\":7.69,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":false,\"Tags\":[\"coffee maker\"]}]},{\"@search.text\":\"Has some road noise and is next to the very police station. Bathrooms had morel coverings.\",\"HotelId\":\"8\",\"HotelName\":null,\"Description\":\"Has some road noise and is next to the very police station. Bathrooms had morel coverings.\",\"Description_fr\":\"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\":[]}]}", - "x-ms-client-request-id" : "06d344b8-7cf7-4710-acfa-6114c01f3bf9", + "x-ms-client-request-id" : "bc9b8dab-7fb5-47b8-b3c3-3e38fdc3678d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canSuggestWithDateTimeInStaticModel.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canSuggestWithDateTimeInStaticModel.json index fd14aa6a6b58..feb3c81f14cd 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canSuggestWithDateTimeInStaticModel.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canSuggestWithDateTimeInStaticModel.json @@ -1,108 +1,108 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/indexes('bookscansuggestwithdatetimeinstaticmodeld169114196ee0619')?allowIndexDowntime=false&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('bookscansuggestwithdatetimeinstaticmodele0155029eb01bc0f')?allowIndexDowntime=false&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cc334bff-d30a-4ee0-80dc-143ec71f17c4", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "53b62766-fc7f-46ed-8045-b2a66b8c081b", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1678", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "cc334bff-d30a-4ee0-80dc-143ec71f17c4", + "request-id" : "53b62766-fc7f-46ed-8045-b2a66b8c081b", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:35:11 GMT", + "Date" : "Thu, 27 May 2021 21:13:42 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62793C6BE78\"", - "client-request-id" : "cc334bff-d30a-4ee0-80dc-143ec71f17c4", - "elapsed-time" : "1053", + "ETag" : "W/\"0x8D921544EE38C56\"", + "client-request-id" : "53b62766-fc7f-46ed-8045-b2a66b8c081b", + "elapsed-time" : "1482", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1785", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D8F62793C6BE78\\\"\",\"name\":\"bookscansuggestwithdatetimeinstaticmodeld169114196ee0619\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"ISBN\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Title\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"Author\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"FirstName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]},{\"name\":\"LastName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}]},{\"name\":\"PublishDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"normalizer\":null,\"synonymMaps\":[]}],\"scoringProfiles\":[],\"corsOptions\":null,\"suggesters\":[{\"name\":\"sg\",\"searchMode\":\"analyzingInfixMatching\",\"sourceFields\":[\"Title\"]}],\"analyzers\":[],\"normalizers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", - "x-ms-client-request-id" : "cc334bff-d30a-4ee0-80dc-143ec71f17c4", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#indexes/$entity\",\"@odata.etag\":\"\\\"0x8D921544EE38C56\\\"\",\"name\":\"bookscansuggestwithdatetimeinstaticmodele0155029eb01bc0f\",\"defaultScoringProfile\":null,\"fields\":[{\"name\":\"ISBN\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":true,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Title\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"Author\",\"type\":\"Edm.ComplexType\",\"fields\":[{\"name\":\"FirstName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]},{\"name\":\"LastName\",\"type\":\"Edm.String\",\"searchable\":true,\"filterable\":true,\"retrievable\":true,\"sortable\":true,\"facetable\":true,\"key\":false,\"indexAnalyzer\":null,\"searchAnalyzer\":null,\"analyzer\":null,\"synonymMaps\":[]}]},{\"name\":\"PublishDate\",\"type\":\"Edm.DateTimeOffset\",\"searchable\":false,\"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\":[\"Title\"]}],\"analyzers\":[],\"tokenizers\":[],\"tokenFilters\":[],\"charFilters\":[],\"encryptionKey\":null,\"similarity\":{\"@odata.type\":\"#Microsoft.Azure.Search.BM25Similarity\",\"k1\":null,\"b\":null}}", + "x-ms-client-request-id" : "53b62766-fc7f-46ed-8045-b2a66b8c081b", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/indexes('bookscansuggestwithdatetimeinstaticmodeld169114196ee0619')?allowIndexDowntime=false&api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/indexes('bookscansuggestwithdatetimeinstaticmodele0155029eb01bc0f')?allowIndexDowntime=false&api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('bookscansuggestwithdatetimeinstaticmodeld169114196ee0619')//docs/search.index?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('bookscansuggestwithdatetimeinstaticmodele0155029eb01bc0f')/docs/search.index?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f8fcaf87-7229-4849-b50f-383a3ba61759", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "cec3365d-bfcc-4ea0-82f4-f56141974b72", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "141", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f8fcaf87-7229-4849-b50f-383a3ba61759", + "request-id" : "cec3365d-bfcc-4ea0-82f4-f56141974b72", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:11 GMT", + "Date" : "Thu, 27 May 2021 21:13:43 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f8fcaf87-7229-4849-b50f-383a3ba61759", - "elapsed-time" : "83", + "client-request-id" : "cec3365d-bfcc-4ea0-82f4-f56141974b72", + "elapsed-time" : "97", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "141", "Body" : "{\"value\":[{\"key\":\"123\",\"status\":true,\"errorMessage\":null,\"statusCode\":201},{\"key\":\"456\",\"status\":true,\"errorMessage\":null,\"statusCode\":201}]}", - "x-ms-client-request-id" : "f8fcaf87-7229-4849-b50f-383a3ba61759", + "x-ms-client-request-id" : "cec3365d-bfcc-4ea0-82f4-f56141974b72", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('bookscansuggestwithdatetimeinstaticmodeld169114196ee0619')//docs/search.post.suggest?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('bookscansuggestwithdatetimeinstaticmodele0155029eb01bc0f')/docs/search.post.suggest?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca700ba3-0ca6-4249-b6e4-d1716bb057e6", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "33bc709a-7839-4438-abd6-2562a4e2d342", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "118", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ca700ba3-0ca6-4249-b6e4-d1716bb057e6", + "request-id" : "33bc709a-7839-4438-abd6-2562a4e2d342", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:14 GMT", + "Date" : "Thu, 27 May 2021 21:13:46 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ca700ba3-0ca6-4249-b6e4-d1716bb057e6", - "elapsed-time" : "83", + "client-request-id" : "33bc709a-7839-4438-abd6-2562a4e2d342", + "elapsed-time" : "75", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "118", "Body" : "{\"value\":[{\"@search.text\":\"War and Peace\",\"ISBN\":\"456\",\"Title\":\"War and Peace\",\"PublishDate\":\"2015-08-18T00:00:00Z\"}]}", - "x-ms-client-request-id" : "ca700ba3-0ca6-4249-b6e4-d1716bb057e6", + "x-ms-client-request-id" : "33bc709a-7839-4438-abd6-2562a4e2d342", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/indexes('bookscansuggestwithdatetimeinstaticmodeld169114196ee0619')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('bookscansuggestwithdatetimeinstaticmodele0155029eb01bc0f')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2451306c-4ebf-4199-925b-4bf69402fc17" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2e8306fa-4112-4ecc-aa1c-6ad5db9558b8" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2451306c-4ebf-4199-925b-4bf69402fc17", - "elapsed-time" : "519", + "client-request-id" : "2e8306fa-4112-4ecc-aa1c-6ad5db9558b8", + "elapsed-time" : "621", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "2451306c-4ebf-4199-925b-4bf69402fc17", + "request-id" : "2e8306fa-4112-4ecc-aa1c-6ad5db9558b8", "StatusCode" : "204", - "x-ms-client-request-id" : "2451306c-4ebf-4199-925b-4bf69402fc17", - "Date" : "Fri, 02 Apr 2021 22:35:15 GMT" + "x-ms-client-request-id" : "2e8306fa-4112-4ecc-aa1c-6ad5db9558b8", + "Date" : "Thu, 27 May 2021 21:13:46 GMT" }, "Exception" : null } ], - "variables" : [ "bookscansuggestwithdatetimeinstaticmodeld169114196ee0619" ] + "variables" : [ "bookscansuggestwithdatetimeinstaticmodele0155029eb01bc0f" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canUseSuggestHitHighlighting.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canUseSuggestHitHighlighting.json index 03ea843708d1..baf5ea03713d 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canUseSuggestHitHighlighting.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.canUseSuggestHitHighlighting.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')//docs/search.post.suggest?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')/docs/search.post.suggest?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "338b5428-56f5-4d04-a313-a61ad13b9c49", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1af4f8ff-f8cd-4b9e-bcf0-81f5bfe146ac", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "338b5428-56f5-4d04-a313-a61ad13b9c49", + "request-id" : "1af4f8ff-f8cd-4b9e-bcf0-81f5bfe146ac", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:15 GMT", + "Date" : "Thu, 27 May 2021 21:13:46 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "338b5428-56f5-4d04-a313-a61ad13b9c49", - "elapsed-time" : "13", + "client-request-id" : "1af4f8ff-f8cd-4b9e-bcf0-81f5bfe146ac", + "elapsed-time" : "10", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1225", "Body" : "{\"value\":[{\"@search.text\":\"Best hotel in town if you like luxury hotels. They have an amazing infinity pool, a spa, and a really helpful concierge. The location is perfect -- right downtown, close to all the tourist attractions. We highly recommend this hotel.\",\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "338b5428-56f5-4d04-a313-a61ad13b9c49", + "x-ms-client-request-id" : "1af4f8ff-f8cd-4b9e-bcf0-81f5bfe146ac", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.fuzzyIsOffByDefault.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.fuzzyIsOffByDefault.json index b98187a89925..a6cd96973732 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.fuzzyIsOffByDefault.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.fuzzyIsOffByDefault.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')//docs/search.post.suggest?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')/docs/search.post.suggest?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "39619213-c67e-4382-bfd3-3ce8978d03a4", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fbf18e69-7127-44b3-9ada-45aa15b88718", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "39619213-c67e-4382-bfd3-3ce8978d03a4", + "request-id" : "fbf18e69-7127-44b3-9ada-45aa15b88718", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:10 GMT", + "Date" : "Thu, 27 May 2021 21:13:41 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "39619213-c67e-4382-bfd3-3ce8978d03a4", - "elapsed-time" : "6", + "client-request-id" : "fbf18e69-7127-44b3-9ada-45aa15b88718", + "elapsed-time" : "9", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12", "Body" : "{\"value\":[]}", - "x-ms-client-request-id" : "39619213-c67e-4382-bfd3-3ce8978d03a4", + "x-ms-client-request-id" : "fbf18e69-7127-44b3-9ada-45aa15b88718", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')//docs/search.post.suggest?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')/docs/search.post.suggest?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e9ffdc1f-497b-4edf-b76f-d7d5f01fb7e7", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "88cc579d-66b3-4b2e-a03a-8f5f14cb7ad2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e9ffdc1f-497b-4edf-b76f-d7d5f01fb7e7", + "request-id" : "88cc579d-66b3-4b2e-a03a-8f5f14cb7ad2", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:09 GMT", + "Date" : "Thu, 27 May 2021 21:13:41 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e9ffdc1f-497b-4edf-b76f-d7d5f01fb7e7", - "elapsed-time" : "40", + "client-request-id" : "88cc579d-66b3-4b2e-a03a-8f5f14cb7ad2", + "elapsed-time" : "37", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12", "Body" : "{\"value\":[]}", - "x-ms-client-request-id" : "e9ffdc1f-497b-4edf-b76f-d7d5f01fb7e7", + "x-ms-client-request-id" : "88cc579d-66b3-4b2e-a03a-8f5f14cb7ad2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.searchFieldsExcludesFieldsFromSuggest.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.searchFieldsExcludesFieldsFromSuggest.json index 8288e29db4c0..c5423a92301d 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.searchFieldsExcludesFieldsFromSuggest.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.searchFieldsExcludesFieldsFromSuggest.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')//docs/search.post.suggest?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')/docs/search.post.suggest?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a2629f16-5dcc-41a1-921e-137d0c18f401", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "12d341b6-80a2-486c-9b8c-a3e84d7eae15", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "12", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "a2629f16-5dcc-41a1-921e-137d0c18f401", + "request-id" : "12d341b6-80a2-486c-9b8c-a3e84d7eae15", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:10 GMT", + "Date" : "Thu, 27 May 2021 21:13:41 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a2629f16-5dcc-41a1-921e-137d0c18f401", - "elapsed-time" : "7", + "client-request-id" : "12d341b6-80a2-486c-9b8c-a3e84d7eae15", + "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "12", "Body" : "{\"value\":[]}", - "x-ms-client-request-id" : "a2629f16-5dcc-41a1-921e-137d0c18f401", + "x-ms-client-request-id" : "12d341b6-80a2-486c-9b8c-a3e84d7eae15", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.suggestThrowsWhenGivenBadSuggesterName.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.suggestThrowsWhenGivenBadSuggesterName.json index 1c9feba77dc5..5f37b123853b 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.suggestThrowsWhenGivenBadSuggesterName.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.suggestThrowsWhenGivenBadSuggesterName.json @@ -1,28 +1,28 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')//docs/search.post.suggest?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')/docs/search.post.suggest?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0454e739-1c8a-41d8-a33a-984440e9e2d9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ff3c6f13-625c-4286-ae04-6fce5851c35a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "331", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0454e739-1c8a-41d8-a33a-984440e9e2d9", + "request-id" : "ff3c6f13-625c-4286-ae04-6fce5851c35a", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:35:09 GMT", + "Date" : "Thu, 27 May 2021 21:13:41 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0454e739-1c8a-41d8-a33a-984440e9e2d9", - "elapsed-time" : "22", + "client-request-id" : "ff3c6f13-625c-4286-ae04-6fce5851c35a", + "elapsed-time" : "3", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "331", "Body" : "{\"error\":{\"code\":\"MissingRequiredParameter\",\"message\":\"The specified suggester name 'Suggester does not exist' does not exist in this index definition.\\r\\nParameter name: name\",\"details\":[{\"code\":\"MissingSuggesterName\",\"message\":\"The specified suggester name 'Suggester does not exist' does not exist in this index definition.\"}]}}", "Content-Language" : "en", - "x-ms-client-request-id" : "0454e739-1c8a-41d8-a33a-984440e9e2d9", + "x-ms-client-request-id" : "ff3c6f13-625c-4286-ae04-6fce5851c35a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.suggestThrowsWhenRequestIsMalformed.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.suggestThrowsWhenRequestIsMalformed.json index 20a707e5e916..8faae2946f09 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.suggestThrowsWhenRequestIsMalformed.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.suggestThrowsWhenRequestIsMalformed.json @@ -1,28 +1,28 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')//docs/search.post.suggest?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')/docs/search.post.suggest?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3aa5a9e9-e1ef-4c78-838c-0255ae8ea070", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "9724888a-3b01-40ee-9d85-b71295e8e5fe", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "143", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3aa5a9e9-e1ef-4c78-838c-0255ae8ea070", + "request-id" : "9724888a-3b01-40ee-9d85-b71295e8e5fe", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:35:09 GMT", + "Date" : "Thu, 27 May 2021 21:13:41 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "3aa5a9e9-e1ef-4c78-838c-0255ae8ea070", - "elapsed-time" : "25", + "client-request-id" : "9724888a-3b01-40ee-9d85-b71295e8e5fe", + "elapsed-time" : "24", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "143", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"Invalid expression: Syntax error at position 7 in 'This is not a valid orderby.'.\\r\\nParameter name: $orderby\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "3aa5a9e9-e1ef-4c78-838c-0255ae8ea070", + "x-ms-client-request-id" : "9724888a-3b01-40ee-9d85-b71295e8e5fe", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testCanFilter.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testCanFilter.json index 3e439bb79f11..bb15374f9193 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testCanFilter.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testCanFilter.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')//docs/search.post.suggest?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')/docs/search.post.suggest?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "998cee71-b51c-4052-9b46-60c254de36d9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d96341cd-f06b-491d-9798-b35cf114dc7c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1654", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "998cee71-b51c-4052-9b46-60c254de36d9", + "request-id" : "d96341cd-f06b-491d-9798-b35cf114dc7c", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:15 GMT", + "Date" : "Thu, 27 May 2021 21:13:46 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "998cee71-b51c-4052-9b46-60c254de36d9", - "elapsed-time" : "40", + "client-request-id" : "d96341cd-f06b-491d-9798-b35cf114dc7c", + "elapsed-time" : "14", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1654", "Body" : "{\"value\":[{\"@search.text\":\"Best hotel in town if you like luxury hotels. They have an amazing infinity pool, a spa, and a really helpful concierge. The location is perfect -- right downtown, close to all the tourist attractions. We highly recommend this hotel.\",\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.text\":\"Another good hotel\",\"HotelId\":\"5\",\"HotelName\":\"Comfy Place\",\"Description\":\"Another good hotel\",\"Description_fr\":\"Un autre bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"2012-08-12T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "998cee71-b51c-4052-9b46-60c254de36d9", + "x-ms-client-request-id" : "d96341cd-f06b-491d-9798-b35cf114dc7c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testCanSuggestWithMinimumCoverage.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testCanSuggestWithMinimumCoverage.json index a14b298f91df..d198c0955456 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testCanSuggestWithMinimumCoverage.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testCanSuggestWithMinimumCoverage.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')//docs/search.post.suggest?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')/docs/search.post.suggest?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9b327cf6-35ce-4f4a-9f31-d497c4d8958f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6e869c4b-7c4b-43d9-bb36-d79700a44ec0", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "1229", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "9b327cf6-35ce-4f4a-9f31-d497c4d8958f", + "request-id" : "6e869c4b-7c4b-43d9-bb36-d79700a44ec0", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:15 GMT", + "Date" : "Thu, 27 May 2021 21:13:46 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9b327cf6-35ce-4f4a-9f31-d497c4d8958f", - "elapsed-time" : "11", + "client-request-id" : "6e869c4b-7c4b-43d9-bb36-d79700a44ec0", + "elapsed-time" : "8", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "1229", "Body" : "{\"@search.coverage\":100.0,\"value\":[{\"@search.text\":\"Best hotel in town if you like luxury hotels. They have an amazing infinity pool, a spa, and a really helpful concierge. The location is perfect -- right downtown, close to all the tourist attractions. We highly recommend this hotel.\",\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "9b327cf6-35ce-4f4a-9f31-d497c4d8958f", + "x-ms-client-request-id" : "6e869c4b-7c4b-43d9-bb36-d79700a44ec0", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testCanSuggestWithSelectedFields.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testCanSuggestWithSelectedFields.json index 3706f1bd7a77..bbe35f1222e7 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testCanSuggestWithSelectedFields.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testCanSuggestWithSelectedFields.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')//docs/search.post.suggest?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')/docs/search.post.suggest?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6b413515-b0d9-4d4b-a695-74acc3ce130e", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "de5ec722-a050-40a8-80c1-f77b7c8d5100", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "179", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6b413515-b0d9-4d4b-a695-74acc3ce130e", + "request-id" : "de5ec722-a050-40a8-80c1-f77b7c8d5100", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:15 GMT", + "Date" : "Thu, 27 May 2021 21:13:46 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "6b413515-b0d9-4d4b-a695-74acc3ce130e", - "elapsed-time" : "8", + "client-request-id" : "de5ec722-a050-40a8-80c1-f77b7c8d5100", + "elapsed-time" : "7", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "179", "Body" : "{\"value\":[{\"@search.text\":\"Secret Point Motel\",\"HotelName\":\"Secret Point Motel\",\"Rating\":4,\"Address\":{\"City\":\"New York\"},\"Rooms\":[{\"Type\":\"Budget Room\"},{\"Type\":\"Budget Room\"}]}]}", - "x-ms-client-request-id" : "6b413515-b0d9-4d4b-a695-74acc3ce130e", + "x-ms-client-request-id" : "de5ec722-a050-40a8-80c1-f77b7c8d5100", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testOrderByProgressivelyBreaksTies.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testOrderByProgressivelyBreaksTies.json index 4303d03b1b47..995a4c91d03b 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testOrderByProgressivelyBreaksTies.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testOrderByProgressivelyBreaksTies.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')//docs/search.post.suggest?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')/docs/search.post.suggest?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "54ae9341-073b-4d52-b9ff-2657d628dcba", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d0fca30d-ba02-4e1b-a019-9d3d99f95dbe", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "4547", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "54ae9341-073b-4d52-b9ff-2657d628dcba", + "request-id" : "d0fca30d-ba02-4e1b-a019-9d3d99f95dbe", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:15 GMT", + "Date" : "Thu, 27 May 2021 21:13:46 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "54ae9341-073b-4d52-b9ff-2657d628dcba", - "elapsed-time" : "46", + "client-request-id" : "d0fca30d-ba02-4e1b-a019-9d3d99f95dbe", + "elapsed-time" : "47", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "4547", "Body" : "{\"value\":[{\"@search.text\":\"Best hotel in town if you like luxury hotels. They have an amazing infinity pool, a spa, and a really helpful concierge. The location is perfect -- right downtown, close to all the tourist attractions. We highly recommend this hotel.\",\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.text\":\"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's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.\",\"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's Square and the historic centre of the city, as well as other places of interest that make New York one of America's most attractive and cosmopolitan cities.\",\"Description_fr\":\"L'h\\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'autres lieux d'int\\u00e9r\\u00eat qui font de New York l'une des villes les plus attractives et cosmopolites de l'Am\\u00e9rique.\",\"Category\":\"Boutique\",\"Tags\":[\"pool\",\"air conditioning\",\"concierge\"],\"ParkingIncluded\":false,\"SmokingAllowed\":null,\"LastRenovationDate\":\"1970-01-18T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-73.975403,40.760586],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"677 5th Ave\",\"City\":\"New York\",\"StateProvince\":\"NY\",\"PostalCode\":\"10022\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Budget Room, 1 Queen Bed (Cityside)\",\"Description_fr\":\"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)\",\"Description_fr\":\"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.text\":\"Pretty good hotel\",\"HotelId\":\"4\",\"HotelName\":\"Express Rooms\",\"Description\":\"Pretty good hotel\",\"Description_fr\":\"Assez bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"1995-07-01T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.text\":\"Very popular hotel in town\",\"HotelId\":\"3\",\"HotelName\":\"EconoStay\",\"Description\":\"Very popular hotel in town\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.text\":\"Another good hotel\",\"HotelId\":\"5\",\"HotelName\":\"Comfy Place\",\"Description\":\"Another good hotel\",\"Description_fr\":\"Un autre bon h\\u00f4tel\",\"Category\":\"Budget\",\"Tags\":[\"wifi\",\"budget\"],\"ParkingIncluded\":true,\"SmokingAllowed\":false,\"LastRenovationDate\":\"2012-08-12T00:00:00Z\",\"Rating\":4,\"Location\":{\"type\":\"Point\",\"coordinates\":[-122.131577,48.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "54ae9341-073b-4d52-b9ff-2657d628dcba", + "x-ms-client-request-id" : "d0fca30d-ba02-4e1b-a019-9d3d99f95dbe", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testTopTrimsResults.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testTopTrimsResults.json index 23f6409c0d6d..1cb02856ec5a 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testTopTrimsResults.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SuggestSyncTests.testTopTrimsResults.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')//docs/search.post.suggest?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/indexes('azsearch-suggest-shared-instance')/docs/search.post.suggest?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "262aa1e1-45e7-4d62-aa15-9a46f061789b", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e5d961e3-b258-4a23-9db7-803f204692de", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "3319", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "262aa1e1-45e7-4d62-aa15-9a46f061789b", + "request-id" : "e5d961e3-b258-4a23-9db7-803f204692de", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:35:15 GMT", + "Date" : "Thu, 27 May 2021 21:13:47 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "262aa1e1-45e7-4d62-aa15-9a46f061789b", - "elapsed-time" : "9", + "client-request-id" : "e5d961e3-b258-4a23-9db7-803f204692de", + "elapsed-time" : "10", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "3319", "Body" : "{\"value\":[{\"@search.text\":\"Best hotel in town if you like luxury hotels. They have an amazing infinity pool, a spa, and a really helpful concierge. The location is perfect -- right downtown, close to all the tourist attractions. We highly recommend this hotel.\",\"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.\",\"Description_fr\":\"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'emplacement 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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,47.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]},{\"@search.text\":\"Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer & dryer, 24/7 support, bowling alley, fitness center and more.\",\"HotelId\":\"10\",\"HotelName\":\"Countryside Hotel\",\"Description\":\"Save up to 50% off traditional hotels. Free WiFi, great location near downtown, full kitchen, washer & dryer, 24/7 support, bowling alley, fitness center and more.\",\"Description_fr\":\"\\u00c9conomisez jusqu'\\u00e0 50% sur les h\\u00f4tels traditionnels. WiFi gratuit, tr\\u00e8s bien situ\\u00e9 pr\\u00e8s du centre-ville, cuisine compl\\u00e8te, laveuse & 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\":{\"type\":\"Point\",\"coordinates\":[-78.940483,35.90416],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":{\"StreetAddress\":\"6910 Fayetteville Rd\",\"City\":\"Durham\",\"StateProvince\":\"NC\",\"PostalCode\":\"27713\",\"Country\":\"USA\"},\"Rooms\":[{\"Description\":\"Suite, 1 King Bed (Amenities)\",\"Description_fr\":\"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)\",\"Description_fr\":\"Chambre \\u00c9conomique, 1 grand lit (Services)\",\"Type\":\"Budget Room\",\"BaseRate\":7.69,\"BedOptions\":\"1 Queen Bed\",\"SleepsCount\":2,\"SmokingAllowed\":false,\"Tags\":[\"coffee maker\"]}]},{\"@search.text\":\"Cheapest hotel in town. Infact, a motel.\",\"HotelId\":\"2\",\"HotelName\":\"Roach Motel\",\"Description\":\"Cheapest hotel in town. Infact, a motel.\",\"Description_fr\":\"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\":{\"type\":\"Point\",\"coordinates\":[-122.131577,49.678581],\"crs\":{\"type\":\"name\",\"properties\":{\"name\":\"EPSG:4326\"}}},\"Address\":null,\"Rooms\":[]}]}", - "x-ms-client-request-id" : "262aa1e1-45e7-4d62-aa15-9a46f061789b", + "x-ms-client-request-id" : "e5d961e3-b258-4a23-9db7-803f204692de", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=none" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canCreateAndDeleteSynonymMap.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canCreateAndDeleteSynonymMap.json index f88c4e4001e1..ef6d3760de50 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canCreateAndDeleteSynonymMap.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canCreateAndDeleteSynonymMap.json @@ -1,81 +1,81 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "cabda77e-b800-413b-82c6-687006150fd2", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ccef10d8-a3fd-4968-93f4-2c6b6901ffe9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "cabda77e-b800-413b-82c6-687006150fd2", + "request-id" : "ccef10d8-a3fd-4968-93f4-2c6b6901ffe9", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:40:02 GMT", + "Date" : "Thu, 27 May 2021 21:18:33 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6284152181A\"", - "client-request-id" : "cabda77e-b800-413b-82c6-687006150fd2", - "elapsed-time" : "34", + "ETag" : "W/\"0x8D92154FBEFB423\"", + "client-request-id" : "ccef10d8-a3fd-4968-93f4-2c6b6901ffe9", + "elapsed-time" : "19", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F6284152181A\\\"\",\"name\":\"test-synonym806921265c87\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "cabda77e-b800-413b-82c6-687006150fd2", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D92154FBEFB423\\\"\",\"name\":\"test-synonym91600e7a965a\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "ccef10d8-a3fd-4968-93f4-2c6b6901ffe9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym806921265c87')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym91600e7a965a')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym806921265c87')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym91600e7a965a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "aa885c32-7fa7-45d1-9953-9369a7dad972" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e98e8a76-97fd-4503-8fcb-7aa246db6924" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "aa885c32-7fa7-45d1-9953-9369a7dad972", - "elapsed-time" : "50", + "client-request-id" : "e98e8a76-97fd-4503-8fcb-7aa246db6924", + "elapsed-time" : "12", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "aa885c32-7fa7-45d1-9953-9369a7dad972", + "request-id" : "e98e8a76-97fd-4503-8fcb-7aa246db6924", "StatusCode" : "204", - "x-ms-client-request-id" : "aa885c32-7fa7-45d1-9953-9369a7dad972", - "Date" : "Fri, 02 Apr 2021 22:40:02 GMT" + "x-ms-client-request-id" : "e98e8a76-97fd-4503-8fcb-7aa246db6924", + "Date" : "Thu, 27 May 2021 21:18:33 GMT" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym806921265c87')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym91600e7a965a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b544d3b0-3d3d-445f-a0e2-60eb7a597127" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "33755612-ac77-45d8-9d1b-8af6df866725" }, "Response" : { + "content-length" : "127", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b544d3b0-3d3d-445f-a0e2-60eb7a597127", + "request-id" : "33755612-ac77-45d8-9d1b-8af6df866725", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:40:02 GMT", + "Date" : "Thu, 27 May 2021 21:18:33 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "b544d3b0-3d3d-445f-a0e2-60eb7a597127", - "elapsed-time" : "6", + "client-request-id" : "33755612-ac77-45d8-9d1b-8af6df866725", + "elapsed-time" : "8", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "127", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No synonym map with the name 'test-synonym806921265c87' was found in service 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No synonym map with the name 'test-synonym91600e7a965a' was found in service 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "b544d3b0-3d3d-445f-a0e2-60eb7a597127", + "x-ms-client-request-id" : "33755612-ac77-45d8-9d1b-8af6df866725", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "test-synonym806921265c87" ] + "variables" : [ "test-synonym91600e7a965a" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canCreateAndListSynonymMaps.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canCreateAndListSynonymMaps.json index 653b8609b947..09d069fec89a 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canCreateAndListSynonymMaps.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canCreateAndListSynonymMaps.json @@ -1,130 +1,130 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ca6db13a-b6b3-4301-a5fc-aa43bbf1d4b1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bc07d244-d6cc-4d1e-9a04-de81c1f42803", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ca6db13a-b6b3-4301-a5fc-aa43bbf1d4b1", + "request-id" : "bc07d244-d6cc-4d1e-9a04-de81c1f42803", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:40:50 GMT", + "Date" : "Thu, 27 May 2021 21:19:19 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6285DC9EB35\"", - "client-request-id" : "ca6db13a-b6b3-4301-a5fc-aa43bbf1d4b1", - "elapsed-time" : "34", + "ETag" : "W/\"0x8D9215517D1CED1\"", + "client-request-id" : "bc07d244-d6cc-4d1e-9a04-de81c1f42803", + "elapsed-time" : "18", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F6285DC9EB35\\\"\",\"name\":\"test-synonym84782e36ad5f\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "ca6db13a-b6b3-4301-a5fc-aa43bbf1d4b1", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D9215517D1CED1\\\"\",\"name\":\"test-synonym62608ce80ad2\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "bc07d244-d6cc-4d1e-9a04-de81c1f42803", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym84782e36ad5f')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym62608ce80ad2')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6d60e191-e6c0-4ea0-b9ab-f5dcd6453fb7", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6fc86f9f-7095-4b1a-8e63-f2b1122411b9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6d60e191-e6c0-4ea0-b9ab-f5dcd6453fb7", + "request-id" : "6fc86f9f-7095-4b1a-8e63-f2b1122411b9", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:40:50 GMT", + "Date" : "Thu, 27 May 2021 21:19:20 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6285DD42626\"", - "client-request-id" : "6d60e191-e6c0-4ea0-b9ab-f5dcd6453fb7", - "elapsed-time" : "48", + "ETag" : "W/\"0x8D9215517D9232B\"", + "client-request-id" : "6fc86f9f-7095-4b1a-8e63-f2b1122411b9", + "elapsed-time" : "25", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F6285DD42626\\\"\",\"name\":\"test-synonym19810d36963a\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "6d60e191-e6c0-4ea0-b9ab-f5dcd6453fb7", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D9215517D9232B\\\"\",\"name\":\"test-synonym366511854df6\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "6fc86f9f-7095-4b1a-8e63-f2b1122411b9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym19810d36963a')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym366511854df6')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2734bb72-6341-470c-a5ab-81f6aa7370cd" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7880f450-54da-4ac2-951a-b423e68e85e5" }, "Response" : { + "content-length" : "365", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2734bb72-6341-470c-a5ab-81f6aa7370cd", + "request-id" : "7880f450-54da-4ac2-951a-b423e68e85e5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:40:50 GMT", + "Date" : "Thu, 27 May 2021 21:19:19 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2734bb72-6341-470c-a5ab-81f6aa7370cd", - "elapsed-time" : "15", + "client-request-id" : "7880f450-54da-4ac2-951a-b423e68e85e5", + "elapsed-time" : "23", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "365", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps\",\"value\":[{\"@odata.etag\":\"\\\"0x8D8F6285DD42626\\\"\",\"name\":\"test-synonym19810d36963a\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null},{\"@odata.etag\":\"\\\"0x8D8F6285DC9EB35\\\"\",\"name\":\"test-synonym84782e36ad5f\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}]}", - "x-ms-client-request-id" : "2734bb72-6341-470c-a5ab-81f6aa7370cd", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps\",\"value\":[{\"@odata.etag\":\"\\\"0x8D9215517D9232B\\\"\",\"name\":\"test-synonym366511854df6\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null},{\"@odata.etag\":\"\\\"0x8D9215517D1CED1\\\"\",\"name\":\"test-synonym62608ce80ad2\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}]}", + "x-ms-client-request-id" : "7880f450-54da-4ac2-951a-b423e68e85e5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym84782e36ad5f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym62608ce80ad2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ae766032-3f93-4a00-ae04-e2a377dcba2f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5085611e-e6ae-4609-983d-d9fc929f0b9e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ae766032-3f93-4a00-ae04-e2a377dcba2f", - "elapsed-time" : "53", + "client-request-id" : "5085611e-e6ae-4609-983d-d9fc929f0b9e", + "elapsed-time" : "9", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "ae766032-3f93-4a00-ae04-e2a377dcba2f", + "request-id" : "5085611e-e6ae-4609-983d-d9fc929f0b9e", "StatusCode" : "204", - "x-ms-client-request-id" : "ae766032-3f93-4a00-ae04-e2a377dcba2f", - "Date" : "Fri, 02 Apr 2021 22:40:50 GMT" + "x-ms-client-request-id" : "5085611e-e6ae-4609-983d-d9fc929f0b9e", + "Date" : "Thu, 27 May 2021 21:19:20 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym19810d36963a')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym366511854df6')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "936813fe-ec19-4f62-861b-1c1a9fa8dee8" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6038d8f0-2337-4054-bfac-97f72712af0e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "936813fe-ec19-4f62-861b-1c1a9fa8dee8", - "elapsed-time" : "54", + "client-request-id" : "6038d8f0-2337-4054-bfac-97f72712af0e", + "elapsed-time" : "10", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "936813fe-ec19-4f62-861b-1c1a9fa8dee8", + "request-id" : "6038d8f0-2337-4054-bfac-97f72712af0e", "StatusCode" : "204", - "x-ms-client-request-id" : "936813fe-ec19-4f62-861b-1c1a9fa8dee8", - "Date" : "Fri, 02 Apr 2021 22:40:50 GMT" + "x-ms-client-request-id" : "6038d8f0-2337-4054-bfac-97f72712af0e", + "Date" : "Thu, 27 May 2021 21:19:20 GMT" }, "Exception" : null } ], - "variables" : [ "test-synonym84782e36ad5f", "test-synonym19810d36963a" ] + "variables" : [ "test-synonym62608ce80ad2", "test-synonym366511854df6" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canListSynonymMapsWithSelectedField.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canListSynonymMapsWithSelectedField.json index 9d8fae693acd..bace2254018d 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canListSynonymMapsWithSelectedField.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canListSynonymMapsWithSelectedField.json @@ -1,130 +1,130 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6a609910-7432-433b-9767-8cbd6bd85db9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "27ec6f3d-49d6-46a8-aaf2-abbd5d814b7c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6a609910-7432-433b-9767-8cbd6bd85db9", + "request-id" : "27ec6f3d-49d6-46a8-aaf2-abbd5d814b7c", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:40:07 GMT", + "Date" : "Thu, 27 May 2021 21:18:38 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6284482FEC0\"", - "client-request-id" : "6a609910-7432-433b-9767-8cbd6bd85db9", - "elapsed-time" : "40", + "ETag" : "W/\"0x8D92154FF0FD55C\"", + "client-request-id" : "27ec6f3d-49d6-46a8-aaf2-abbd5d814b7c", + "elapsed-time" : "19", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F6284482FEC0\\\"\",\"name\":\"test-synonym13741a6d1f50\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "6a609910-7432-433b-9767-8cbd6bd85db9", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D92154FF0FD55C\\\"\",\"name\":\"test-synonym01121d929b87\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "27ec6f3d-49d6-46a8-aaf2-abbd5d814b7c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym13741a6d1f50')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym01121d929b87')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0d57e256-ecd4-4c51-845b-62e84d2ce3aa", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d5ab26e7-4de8-49ae-a93e-bfc755c1f63a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "0d57e256-ecd4-4c51-845b-62e84d2ce3aa", + "request-id" : "d5ab26e7-4de8-49ae-a93e-bfc755c1f63a", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:40:07 GMT", + "Date" : "Thu, 27 May 2021 21:18:38 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628448F0EC7\"", - "client-request-id" : "0d57e256-ecd4-4c51-845b-62e84d2ce3aa", - "elapsed-time" : "55", + "ETag" : "W/\"0x8D92154FF168D51\"", + "client-request-id" : "d5ab26e7-4de8-49ae-a93e-bfc755c1f63a", + "elapsed-time" : "18", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F628448F0EC7\\\"\",\"name\":\"test-synonym236507a72e84\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "0d57e256-ecd4-4c51-845b-62e84d2ce3aa", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D92154FF168D51\\\"\",\"name\":\"test-synonym16079a1c9b88\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "d5ab26e7-4de8-49ae-a93e-bfc755c1f63a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym236507a72e84')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym16079a1c9b88')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?$select=name&api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?$select=name&api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d839d776-3ed9-4cd2-9093-1765200cffb3" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "46f6add6-6fbe-4173-bd37-084f88186f89" }, "Response" : { + "content-length" : "171", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d839d776-3ed9-4cd2-9093-1765200cffb3", + "request-id" : "46f6add6-6fbe-4173-bd37-084f88186f89", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:40:07 GMT", + "Date" : "Thu, 27 May 2021 21:18:38 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "d839d776-3ed9-4cd2-9093-1765200cffb3", - "elapsed-time" : "7", + "client-request-id" : "46f6add6-6fbe-4173-bd37-084f88186f89", + "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "171", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps(name)\",\"value\":[{\"name\":\"test-synonym13741a6d1f50\"},{\"name\":\"test-synonym236507a72e84\"}]}", - "x-ms-client-request-id" : "d839d776-3ed9-4cd2-9093-1765200cffb3", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps(name)\",\"value\":[{\"name\":\"test-synonym01121d929b87\"},{\"name\":\"test-synonym16079a1c9b88\"}]}", + "x-ms-client-request-id" : "46f6add6-6fbe-4173-bd37-084f88186f89", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym13741a6d1f50')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym01121d929b87')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0e3d64bf-3db5-4613-90f1-3c422aa5be58" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "08a94179-2d7e-4cae-a684-f2e484c395fa" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0e3d64bf-3db5-4613-90f1-3c422aa5be58", - "elapsed-time" : "48", + "client-request-id" : "08a94179-2d7e-4cae-a684-f2e484c395fa", + "elapsed-time" : "10", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "0e3d64bf-3db5-4613-90f1-3c422aa5be58", + "request-id" : "08a94179-2d7e-4cae-a684-f2e484c395fa", "StatusCode" : "204", - "x-ms-client-request-id" : "0e3d64bf-3db5-4613-90f1-3c422aa5be58", - "Date" : "Fri, 02 Apr 2021 22:40:07 GMT" + "x-ms-client-request-id" : "08a94179-2d7e-4cae-a684-f2e484c395fa", + "Date" : "Thu, 27 May 2021 21:18:38 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym236507a72e84')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym16079a1c9b88')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "0febcb1a-a63f-4b98-8947-57b0dfc203f4" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b7689e64-d6cd-4210-92ba-7c433d19efde" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "0febcb1a-a63f-4b98-8947-57b0dfc203f4", - "elapsed-time" : "55", + "client-request-id" : "b7689e64-d6cd-4210-92ba-7c433d19efde", + "elapsed-time" : "9", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "0febcb1a-a63f-4b98-8947-57b0dfc203f4", + "request-id" : "b7689e64-d6cd-4210-92ba-7c433d19efde", "StatusCode" : "204", - "x-ms-client-request-id" : "0febcb1a-a63f-4b98-8947-57b0dfc203f4", - "Date" : "Fri, 02 Apr 2021 22:40:07 GMT" + "x-ms-client-request-id" : "b7689e64-d6cd-4210-92ba-7c433d19efde", + "Date" : "Thu, 27 May 2021 21:18:39 GMT" }, "Exception" : null } ], - "variables" : [ "test-synonym13741a6d1f50", "test-synonym236507a72e84" ] + "variables" : [ "test-synonym01121d929b87", "test-synonym16079a1c9b88" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canUpdateSynonymMap.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canUpdateSynonymMap.json index c7ec02fc42c0..7b3abe8acd05 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canUpdateSynonymMap.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canUpdateSynonymMap.json @@ -1,108 +1,108 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6cff7c07-e5fc-4cb5-a035-c81e49f5a4a1", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "815c8b86-b1fd-4133-a49b-56d6ba5b9ca6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6cff7c07-e5fc-4cb5-a035-c81e49f5a4a1", + "request-id" : "815c8b86-b1fd-4133-a49b-56d6ba5b9ca6", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:40:55 GMT", + "Date" : "Thu, 27 May 2021 21:19:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62861011480\"", - "client-request-id" : "6cff7c07-e5fc-4cb5-a035-c81e49f5a4a1", - "elapsed-time" : "56", + "ETag" : "W/\"0x8D921551AF46173\"", + "client-request-id" : "815c8b86-b1fd-4133-a49b-56d6ba5b9ca6", + "elapsed-time" : "19", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F62861011480\\\"\",\"name\":\"test-synonym924390cb46dd\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "6cff7c07-e5fc-4cb5-a035-c81e49f5a4a1", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D921551AF46173\\\"\",\"name\":\"test-synonym736886831cce\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "815c8b86-b1fd-4133-a49b-56d6ba5b9ca6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym924390cb46dd')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym736886831cce')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym924390cb46dd')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym736886831cce')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3f57c08b-60d6-4c43-8779-510552b50edc", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "6fefd4ac-fc5c-404a-b251-c0964d8133c6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "231", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3f57c08b-60d6-4c43-8779-510552b50edc", + "request-id" : "6fefd4ac-fc5c-404a-b251-c0964d8133c6", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:40:55 GMT", + "Date" : "Thu, 27 May 2021 21:19:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628610A3DD8\"", - "client-request-id" : "3f57c08b-60d6-4c43-8779-510552b50edc", - "elapsed-time" : "23", + "ETag" : "W/\"0x8D921551AFAA429\"", + "client-request-id" : "6fefd4ac-fc5c-404a-b251-c0964d8133c6", + "elapsed-time" : "15", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "231", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F628610A3DD8\\\"\",\"name\":\"test-synonym924390cb46dd\",\"format\":\"solr\",\"synonyms\":\"newword1,newword2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "3f57c08b-60d6-4c43-8779-510552b50edc", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D921551AFAA429\\\"\",\"name\":\"test-synonym736886831cce\",\"format\":\"solr\",\"synonyms\":\"newword1,newword2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "6fefd4ac-fc5c-404a-b251-c0964d8133c6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "5984e033-f422-4532-8853-551912c4fab7" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d53f5d38-4df9-4fde-9154-9dde7f9fd8d1" }, "Response" : { + "content-length" : "235", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "5984e033-f422-4532-8853-551912c4fab7", + "request-id" : "d53f5d38-4df9-4fde-9154-9dde7f9fd8d1", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:40:55 GMT", + "Date" : "Thu, 27 May 2021 21:19:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "5984e033-f422-4532-8853-551912c4fab7", - "elapsed-time" : "24", + "client-request-id" : "d53f5d38-4df9-4fde-9154-9dde7f9fd8d1", + "elapsed-time" : "9", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "235", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps\",\"value\":[{\"@odata.etag\":\"\\\"0x8D8F628610A3DD8\\\"\",\"name\":\"test-synonym924390cb46dd\",\"format\":\"solr\",\"synonyms\":\"newword1,newword2\",\"encryptionKey\":null}]}", - "x-ms-client-request-id" : "5984e033-f422-4532-8853-551912c4fab7", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps\",\"value\":[{\"@odata.etag\":\"\\\"0x8D921551AFAA429\\\"\",\"name\":\"test-synonym736886831cce\",\"format\":\"solr\",\"synonyms\":\"newword1,newword2\",\"encryptionKey\":null}]}", + "x-ms-client-request-id" : "d53f5d38-4df9-4fde-9154-9dde7f9fd8d1", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym924390cb46dd')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym736886831cce')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2479d569-20d5-4b4f-a2e9-8d1e531a6542" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "cf7a8af7-7a4f-4891-86a9-625ce4289950" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2479d569-20d5-4b4f-a2e9-8d1e531a6542", - "elapsed-time" : "42", + "client-request-id" : "cf7a8af7-7a4f-4891-86a9-625ce4289950", + "elapsed-time" : "11", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "2479d569-20d5-4b4f-a2e9-8d1e531a6542", + "request-id" : "cf7a8af7-7a4f-4891-86a9-625ce4289950", "StatusCode" : "204", - "x-ms-client-request-id" : "2479d569-20d5-4b4f-a2e9-8d1e531a6542", - "Date" : "Fri, 02 Apr 2021 22:40:55 GMT" + "x-ms-client-request-id" : "cf7a8af7-7a4f-4891-86a9-625ce4289950", + "Date" : "Thu, 27 May 2021 21:19:25 GMT" }, "Exception" : null } ], - "variables" : [ "test-synonym924390cb46dd" ] + "variables" : [ "test-synonym736886831cce" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canUpdateSynonymMapWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canUpdateSynonymMapWithResponse.json index 75ee60784e5c..cada6223860e 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canUpdateSynonymMapWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.canUpdateSynonymMapWithResponse.json @@ -1,108 +1,108 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6683ae6a-89d7-49cc-8852-26f0cac2d225", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "83be93f1-d5e8-40db-b170-0cd62c82a43c", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6683ae6a-89d7-49cc-8852-26f0cac2d225", + "request-id" : "83be93f1-d5e8-40db-b170-0cd62c82a43c", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:40:17 GMT", + "Date" : "Thu, 27 May 2021 21:18:49 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6284AC753DA\"", - "client-request-id" : "6683ae6a-89d7-49cc-8852-26f0cac2d225", - "elapsed-time" : "41", + "ETag" : "W/\"0x8D9215505329F49\"", + "client-request-id" : "83be93f1-d5e8-40db-b170-0cd62c82a43c", + "elapsed-time" : "17", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F6284AC753DA\\\"\",\"name\":\"test-synonym8464151c672c\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "6683ae6a-89d7-49cc-8852-26f0cac2d225", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D9215505329F49\\\"\",\"name\":\"test-synonym336767463744\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "83be93f1-d5e8-40db-b170-0cd62c82a43c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym8464151c672c')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym336767463744')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym8464151c672c')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym336767463744')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4aa4da18-9145-40d7-8218-802a2b6cc7c5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "063b22c5-9063-4aed-883f-c37873e69519", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "231", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4aa4da18-9145-40d7-8218-802a2b6cc7c5", + "request-id" : "063b22c5-9063-4aed-883f-c37873e69519", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:40:17 GMT", + "Date" : "Thu, 27 May 2021 21:18:49 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6284AD2C78A\"", - "client-request-id" : "4aa4da18-9145-40d7-8218-802a2b6cc7c5", - "elapsed-time" : "29", + "ETag" : "W/\"0x8D921550538E1FA\"", + "client-request-id" : "063b22c5-9063-4aed-883f-c37873e69519", + "elapsed-time" : "14", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "231", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F6284AD2C78A\\\"\",\"name\":\"test-synonym8464151c672c\",\"format\":\"solr\",\"synonyms\":\"newword1,newword2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "4aa4da18-9145-40d7-8218-802a2b6cc7c5", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D921550538E1FA\\\"\",\"name\":\"test-synonym336767463744\",\"format\":\"solr\",\"synonyms\":\"newword1,newword2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "063b22c5-9063-4aed-883f-c37873e69519", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "bcf952b0-4d17-4ff6-a188-8035dcb6cf53" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "f9c7487d-8303-4347-8141-23b7f0f5a6f6" }, "Response" : { + "content-length" : "235", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "bcf952b0-4d17-4ff6-a188-8035dcb6cf53", + "request-id" : "f9c7487d-8303-4347-8141-23b7f0f5a6f6", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:40:18 GMT", + "Date" : "Thu, 27 May 2021 21:18:49 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "bcf952b0-4d17-4ff6-a188-8035dcb6cf53", - "elapsed-time" : "61", + "client-request-id" : "f9c7487d-8303-4347-8141-23b7f0f5a6f6", + "elapsed-time" : "14", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "235", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps\",\"value\":[{\"@odata.etag\":\"\\\"0x8D8F6284AD2C78A\\\"\",\"name\":\"test-synonym8464151c672c\",\"format\":\"solr\",\"synonyms\":\"newword1,newword2\",\"encryptionKey\":null}]}", - "x-ms-client-request-id" : "bcf952b0-4d17-4ff6-a188-8035dcb6cf53", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps\",\"value\":[{\"@odata.etag\":\"\\\"0x8D921550538E1FA\\\"\",\"name\":\"test-synonym336767463744\",\"format\":\"solr\",\"synonyms\":\"newword1,newword2\",\"encryptionKey\":null}]}", + "x-ms-client-request-id" : "f9c7487d-8303-4347-8141-23b7f0f5a6f6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym8464151c672c')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym336767463744')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7eba1e12-76ff-4868-b243-d93a1772e70f" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "844e91b0-bd0a-4c21-90de-6047af8896a9" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7eba1e12-76ff-4868-b243-d93a1772e70f", - "elapsed-time" : "49", + "client-request-id" : "844e91b0-bd0a-4c21-90de-6047af8896a9", + "elapsed-time" : "10", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "7eba1e12-76ff-4868-b243-d93a1772e70f", + "request-id" : "844e91b0-bd0a-4c21-90de-6047af8896a9", "StatusCode" : "204", - "x-ms-client-request-id" : "7eba1e12-76ff-4868-b243-d93a1772e70f", - "Date" : "Fri, 02 Apr 2021 22:40:17 GMT" + "x-ms-client-request-id" : "844e91b0-bd0a-4c21-90de-6047af8896a9", + "Date" : "Thu, 27 May 2021 21:18:49 GMT" }, "Exception" : null } ], - "variables" : [ "test-synonym8464151c672c" ] + "variables" : [ "test-synonym336767463744" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapCreatesWhenSynonymMapDoesNotExist.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapCreatesWhenSynonymMapDoesNotExist.json index 09a1d21154ed..1182941620ff 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapCreatesWhenSynonymMapDoesNotExist.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapCreatesWhenSynonymMapDoesNotExist.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym599360543bbe')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym18915d6ea296')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "793b2084-94d7-43ae-a6f3-d3e5eae117fc", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "368b7011-d185-448d-bfe8-182323d397c2", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "793b2084-94d7-43ae-a6f3-d3e5eae117fc", + "request-id" : "368b7011-d185-448d-bfe8-182323d397c2", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:51 GMT", + "Date" : "Thu, 27 May 2021 21:18:23 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283B1DCB15\"", - "client-request-id" : "793b2084-94d7-43ae-a6f3-d3e5eae117fc", - "elapsed-time" : "54", + "ETag" : "W/\"0x8D92154F5D7C19D\"", + "client-request-id" : "368b7011-d185-448d-bfe8-182323d397c2", + "elapsed-time" : "22", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283B1DCB15\\\"\",\"name\":\"test-synonym599360543bbe\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "793b2084-94d7-43ae-a6f3-d3e5eae117fc", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D92154F5D7C19D\\\"\",\"name\":\"test-synonym18915d6ea296\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "368b7011-d185-448d-bfe8-182323d397c2", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym599360543bbe')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym18915d6ea296')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym599360543bbe')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym18915d6ea296')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "90c5f69a-7efc-4e9c-b776-1b1e865fdedc" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "30313e1c-f4e7-43c8-a4cb-f4415d9ba4c7" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "90c5f69a-7efc-4e9c-b776-1b1e865fdedc", - "elapsed-time" : "46", + "client-request-id" : "30313e1c-f4e7-43c8-a4cb-f4415d9ba4c7", + "elapsed-time" : "10", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "90c5f69a-7efc-4e9c-b776-1b1e865fdedc", + "request-id" : "30313e1c-f4e7-43c8-a4cb-f4415d9ba4c7", "StatusCode" : "204", - "x-ms-client-request-id" : "90c5f69a-7efc-4e9c-b776-1b1e865fdedc", - "Date" : "Fri, 02 Apr 2021 22:39:51 GMT" + "x-ms-client-request-id" : "30313e1c-f4e7-43c8-a4cb-f4415d9ba4c7", + "Date" : "Thu, 27 May 2021 21:18:22 GMT" }, "Exception" : null } ], - "variables" : [ "test-synonym599360543bbe" ] + "variables" : [ "test-synonym18915d6ea296" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapCreatesWhenSynonymMapDoesNotExistWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapCreatesWhenSynonymMapDoesNotExistWithResponse.json index 8f634af29d4e..e7f4b1dca0a3 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapCreatesWhenSynonymMapDoesNotExistWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapCreatesWhenSynonymMapDoesNotExistWithResponse.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym7876505887f2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym4922529e72db')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "986aaa4f-cee6-4015-b505-517f96c44927", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "affa9831-6cbb-44fe-a1cf-06a406bcaaaf", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "986aaa4f-cee6-4015-b505-517f96c44927", + "request-id" : "affa9831-6cbb-44fe-a1cf-06a406bcaaaf", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:40:02 GMT", + "Date" : "Thu, 27 May 2021 21:18:33 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62841749A3E\"", - "client-request-id" : "986aaa4f-cee6-4015-b505-517f96c44927", - "elapsed-time" : "43", + "ETag" : "W/\"0x8D92154FC06E9E1\"", + "client-request-id" : "affa9831-6cbb-44fe-a1cf-06a406bcaaaf", + "elapsed-time" : "22", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F62841749A3E\\\"\",\"name\":\"test-synonym7876505887f2\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "986aaa4f-cee6-4015-b505-517f96c44927", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D92154FC06E9E1\\\"\",\"name\":\"test-synonym4922529e72db\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "affa9831-6cbb-44fe-a1cf-06a406bcaaaf", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym7876505887f2')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym4922529e72db')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym7876505887f2')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym4922529e72db')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7127a24a-d00b-4a73-ac97-badab64a11f8" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "bca09920-de5b-4807-90b0-db98940ffc0a" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7127a24a-d00b-4a73-ac97-badab64a11f8", - "elapsed-time" : "39", + "client-request-id" : "bca09920-de5b-4807-90b0-db98940ffc0a", + "elapsed-time" : "10", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "7127a24a-d00b-4a73-ac97-badab64a11f8", + "request-id" : "bca09920-de5b-4807-90b0-db98940ffc0a", "StatusCode" : "204", - "x-ms-client-request-id" : "7127a24a-d00b-4a73-ac97-badab64a11f8", - "Date" : "Fri, 02 Apr 2021 22:40:02 GMT" + "x-ms-client-request-id" : "bca09920-de5b-4807-90b0-db98940ffc0a", + "Date" : "Thu, 27 May 2021 21:18:33 GMT" }, "Exception" : null } ], - "variables" : [ "test-synonym7876505887f2" ] + "variables" : [ "test-synonym4922529e72db" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapIfExistsSucceedsOnExistingResource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapIfExistsSucceedsOnExistingResource.json index e295590be1a1..6040c394fb8f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapIfExistsSucceedsOnExistingResource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapIfExistsSucceedsOnExistingResource.json @@ -1,82 +1,82 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym44287157e040')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym968735cf4441')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "6bf1539c-bd31-4c99-a86e-c0be2987b1df", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2652992f-2aba-4fcd-8fef-2b54a57a69d3", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "6bf1539c-bd31-4c99-a86e-c0be2987b1df", + "request-id" : "2652992f-2aba-4fcd-8fef-2b54a57a69d3", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:40:23 GMT", + "Date" : "Thu, 27 May 2021 21:18:53 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6284DED1502\"", - "client-request-id" : "6bf1539c-bd31-4c99-a86e-c0be2987b1df", - "elapsed-time" : "30", + "ETag" : "W/\"0x8D921550846622B\"", + "client-request-id" : "2652992f-2aba-4fcd-8fef-2b54a57a69d3", + "elapsed-time" : "19", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F6284DED1502\\\"\",\"name\":\"test-synonym44287157e040\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "6bf1539c-bd31-4c99-a86e-c0be2987b1df", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D921550846622B\\\"\",\"name\":\"test-synonym968735cf4441\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "2652992f-2aba-4fcd-8fef-2b54a57a69d3", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym44287157e040')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym968735cf4441')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym44287157e040')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym968735cf4441')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "d0fab20b-8018-4d17-b25c-892dec860582", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "5f10db31-8e67-4791-a779-7262708eb4a5", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "232", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "d0fab20b-8018-4d17-b25c-892dec860582", + "request-id" : "5f10db31-8e67-4791-a779-7262708eb4a5", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:40:23 GMT", + "Date" : "Thu, 27 May 2021 21:18:54 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6284DF68C87\"", - "client-request-id" : "d0fab20b-8018-4d17-b25c-892dec860582", - "elapsed-time" : "48", + "ETag" : "W/\"0x8D92155084CCBF6\"", + "client-request-id" : "5f10db31-8e67-4791-a779-7262708eb4a5", + "elapsed-time" : "15", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "232", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F6284DF68C87\\\"\",\"name\":\"test-synonym44287157e040\",\"format\":\"solr\",\"synonyms\":\"mutated1, mutated2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "d0fab20b-8018-4d17-b25c-892dec860582", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D92155084CCBF6\\\"\",\"name\":\"test-synonym968735cf4441\",\"format\":\"solr\",\"synonyms\":\"mutated1, mutated2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "5f10db31-8e67-4791-a779-7262708eb4a5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym44287157e040')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym968735cf4441')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "41d4df4e-5329-4b97-ab5c-c2008bb08dc3" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4059dc67-eede-4fb4-abcb-3ba014e712df" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "41d4df4e-5329-4b97-ab5c-c2008bb08dc3", - "elapsed-time" : "43", + "client-request-id" : "4059dc67-eede-4fb4-abcb-3ba014e712df", + "elapsed-time" : "14", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "41d4df4e-5329-4b97-ab5c-c2008bb08dc3", + "request-id" : "4059dc67-eede-4fb4-abcb-3ba014e712df", "StatusCode" : "204", - "x-ms-client-request-id" : "41d4df4e-5329-4b97-ab5c-c2008bb08dc3", - "Date" : "Fri, 02 Apr 2021 22:40:24 GMT" + "x-ms-client-request-id" : "4059dc67-eede-4fb4-abcb-3ba014e712df", + "Date" : "Thu, 27 May 2021 21:18:53 GMT" }, "Exception" : null } ], - "variables" : [ "test-synonym44287157e040" ] + "variables" : [ "test-synonym968735cf4441" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapIfNotChangedFailsWhenResourceChanged.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapIfNotChangedFailsWhenResourceChanged.json index 3b766c56f0b0..b3a0901ccc0d 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapIfNotChangedFailsWhenResourceChanged.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapIfNotChangedFailsWhenResourceChanged.json @@ -1,110 +1,110 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym93388c7f596f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym5091231bbb9a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "623ec376-bfee-478d-bb7d-50f9c8db3d79", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "2d8ab8ee-1b52-473e-a347-d44ff9d66dcb", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "623ec376-bfee-478d-bb7d-50f9c8db3d79", + "request-id" : "2d8ab8ee-1b52-473e-a347-d44ff9d66dcb", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:41:00 GMT", + "Date" : "Thu, 27 May 2021 21:19:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6286421CC85\"", - "client-request-id" : "623ec376-bfee-478d-bb7d-50f9c8db3d79", - "elapsed-time" : "35", + "ETag" : "W/\"0x8D921551E0712B2\"", + "client-request-id" : "2d8ab8ee-1b52-473e-a347-d44ff9d66dcb", + "elapsed-time" : "18", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F6286421CC85\\\"\",\"name\":\"test-synonym93388c7f596f\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "623ec376-bfee-478d-bb7d-50f9c8db3d79", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D921551E0712B2\\\"\",\"name\":\"test-synonym5091231bbb9a\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "2d8ab8ee-1b52-473e-a347-d44ff9d66dcb", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym93388c7f596f')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym5091231bbb9a')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym93388c7f596f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym5091231bbb9a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "fecb19aa-a156-4cf9-a66a-fa3b83fd2f0f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7caa2034-93ca-41fb-94be-60a656c6bd06", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "232", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "fecb19aa-a156-4cf9-a66a-fa3b83fd2f0f", + "request-id" : "7caa2034-93ca-41fb-94be-60a656c6bd06", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:41:00 GMT", + "Date" : "Thu, 27 May 2021 21:19:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628642B924D\"", - "client-request-id" : "fecb19aa-a156-4cf9-a66a-fa3b83fd2f0f", - "elapsed-time" : "52", + "ETag" : "W/\"0x8D921551E0E18D9\"", + "client-request-id" : "7caa2034-93ca-41fb-94be-60a656c6bd06", + "elapsed-time" : "19", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "232", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F628642B924D\\\"\",\"name\":\"test-synonym93388c7f596f\",\"format\":\"solr\",\"synonyms\":\"mutated1, mutated2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "fecb19aa-a156-4cf9-a66a-fa3b83fd2f0f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D921551E0E18D9\\\"\",\"name\":\"test-synonym5091231bbb9a\",\"format\":\"solr\",\"synonyms\":\"mutated1, mutated2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "7caa2034-93ca-41fb-94be-60a656c6bd06", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym93388c7f596f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym5091231bbb9a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "4f3898ae-4015-42d0-bcef-5dc3b00fed27", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "dafda423-a9ee-4a21-9db6-f3506ce415f0", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "160", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "4f3898ae-4015-42d0-bcef-5dc3b00fed27", + "request-id" : "dafda423-a9ee-4a21-9db6-f3506ce415f0", "StatusCode" : "412", - "Date" : "Fri, 02 Apr 2021 22:41:00 GMT", + "Date" : "Thu, 27 May 2021 21:19:30 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "4f3898ae-4015-42d0-bcef-5dc3b00fed27", + "client-request-id" : "dafda423-a9ee-4a21-9db6-f3506ce415f0", "elapsed-time" : "6", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "4f3898ae-4015-42d0-bcef-5dc3b00fed27", + "x-ms-client-request-id" : "dafda423-a9ee-4a21-9db6-f3506ce415f0", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym93388c7f596f')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym5091231bbb9a')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "12404fa8-5357-4672-89fe-a8e0ad7642a9" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "fe0e8905-642d-4f9d-8538-cf8ed8879d66" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "12404fa8-5357-4672-89fe-a8e0ad7642a9", - "elapsed-time" : "49", + "client-request-id" : "fe0e8905-642d-4f9d-8538-cf8ed8879d66", + "elapsed-time" : "10", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "12404fa8-5357-4672-89fe-a8e0ad7642a9", + "request-id" : "fe0e8905-642d-4f9d-8538-cf8ed8879d66", "StatusCode" : "204", - "x-ms-client-request-id" : "12404fa8-5357-4672-89fe-a8e0ad7642a9", - "Date" : "Fri, 02 Apr 2021 22:41:01 GMT" + "x-ms-client-request-id" : "fe0e8905-642d-4f9d-8538-cf8ed8879d66", + "Date" : "Thu, 27 May 2021 21:19:30 GMT" }, "Exception" : null } ], - "variables" : [ "test-synonym93388c7f596f" ] + "variables" : [ "test-synonym5091231bbb9a" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapIfNotChangedSucceedsWhenResourceUnchanged.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapIfNotChangedSucceedsWhenResourceUnchanged.json index fa985a0a19ea..5b80e7b31f68 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapIfNotChangedSucceedsWhenResourceUnchanged.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapIfNotChangedSucceedsWhenResourceUnchanged.json @@ -1,82 +1,82 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym41466fa4b209')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym492782d9bcd8')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f4915e47-3f1d-457a-a008-5355f69bc1c9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "720f98d6-8043-4189-ad81-a8a5fa863e8a", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f4915e47-3f1d-457a-a008-5355f69bc1c9", + "request-id" : "720f98d6-8043-4189-ad81-a8a5fa863e8a", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:40:29 GMT", + "Date" : "Thu, 27 May 2021 21:18:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628512B1D4C\"", - "client-request-id" : "f4915e47-3f1d-457a-a008-5355f69bc1c9", - "elapsed-time" : "56", + "ETag" : "W/\"0x8D921550B6B8D54\"", + "client-request-id" : "720f98d6-8043-4189-ad81-a8a5fa863e8a", + "elapsed-time" : "20", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F628512B1D4C\\\"\",\"name\":\"test-synonym41466fa4b209\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "f4915e47-3f1d-457a-a008-5355f69bc1c9", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D921550B6B8D54\\\"\",\"name\":\"test-synonym492782d9bcd8\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "720f98d6-8043-4189-ad81-a8a5fa863e8a", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym41466fa4b209')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym492782d9bcd8')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym41466fa4b209')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym492782d9bcd8')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "b3fd7a07-b629-4db3-86ba-e33a0534fc29", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "803e1b6d-e4f0-4126-80c0-b400e5831ece", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "232", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "b3fd7a07-b629-4db3-86ba-e33a0534fc29", + "request-id" : "803e1b6d-e4f0-4126-80c0-b400e5831ece", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:40:29 GMT", + "Date" : "Thu, 27 May 2021 21:18:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628513446A8\"", - "client-request-id" : "b3fd7a07-b629-4db3-86ba-e33a0534fc29", - "elapsed-time" : "29", + "ETag" : "W/\"0x8D921550B71D00A\"", + "client-request-id" : "803e1b6d-e4f0-4126-80c0-b400e5831ece", + "elapsed-time" : "17", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "232", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F628513446A8\\\"\",\"name\":\"test-synonym41466fa4b209\",\"format\":\"solr\",\"synonyms\":\"mutated1, mutated2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "b3fd7a07-b629-4db3-86ba-e33a0534fc29", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D921550B71D00A\\\"\",\"name\":\"test-synonym492782d9bcd8\",\"format\":\"solr\",\"synonyms\":\"mutated1, mutated2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "803e1b6d-e4f0-4126-80c0-b400e5831ece", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym41466fa4b209')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym492782d9bcd8')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "a5ce469b-fbb7-44ac-b2c3-6fe6c037729b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1d9ea2b6-318f-4e5a-a31d-31670d46152e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "a5ce469b-fbb7-44ac-b2c3-6fe6c037729b", - "elapsed-time" : "61", + "client-request-id" : "1d9ea2b6-318f-4e5a-a31d-31670d46152e", + "elapsed-time" : "9", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "a5ce469b-fbb7-44ac-b2c3-6fe6c037729b", + "request-id" : "1d9ea2b6-318f-4e5a-a31d-31670d46152e", "StatusCode" : "204", - "x-ms-client-request-id" : "a5ce469b-fbb7-44ac-b2c3-6fe6c037729b", - "Date" : "Fri, 02 Apr 2021 22:40:29 GMT" + "x-ms-client-request-id" : "1d9ea2b6-318f-4e5a-a31d-31670d46152e", + "Date" : "Thu, 27 May 2021 21:18:59 GMT" }, "Exception" : null } ], - "variables" : [ "test-synonym41466fa4b209" ] + "variables" : [ "test-synonym492782d9bcd8" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapIfNotExistsSucceedsOnNoResource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapIfNotExistsSucceedsOnNoResource.json index dd6643211801..1a069298d318 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapIfNotExistsSucceedsOnNoResource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createOrUpdateSynonymMapIfNotExistsSucceedsOnNoResource.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym82151ef1a99b')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym96896da567d2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f90e8520-bd8f-4af3-8c82-2b38a27ceae9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "aa79f5d8-7285-470d-97aa-f0c51ee720e6", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f90e8520-bd8f-4af3-8c82-2b38a27ceae9", + "request-id" : "aa79f5d8-7285-470d-97aa-f0c51ee720e6", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:40:12 GMT", + "Date" : "Thu, 27 May 2021 21:18:44 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F62847B59363\"", - "client-request-id" : "f90e8520-bd8f-4af3-8c82-2b38a27ceae9", - "elapsed-time" : "49", + "ETag" : "W/\"0x8D92155022A9E61\"", + "client-request-id" : "aa79f5d8-7285-470d-97aa-f0c51ee720e6", + "elapsed-time" : "18", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F62847B59363\\\"\",\"name\":\"test-synonym82151ef1a99b\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "f90e8520-bd8f-4af3-8c82-2b38a27ceae9", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D92155022A9E61\\\"\",\"name\":\"test-synonym96896da567d2\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "aa79f5d8-7285-470d-97aa-f0c51ee720e6", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym82151ef1a99b')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym96896da567d2')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym82151ef1a99b')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym96896da567d2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "7d336396-dd50-4224-905d-ad89b2421f4b" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "be62a395-aef4-4a4f-9032-a15bd05a8178" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "7d336396-dd50-4224-905d-ad89b2421f4b", - "elapsed-time" : "56", + "client-request-id" : "be62a395-aef4-4a4f-9032-a15bd05a8178", + "elapsed-time" : "9", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "7d336396-dd50-4224-905d-ad89b2421f4b", + "request-id" : "be62a395-aef4-4a4f-9032-a15bd05a8178", "StatusCode" : "204", - "x-ms-client-request-id" : "7d336396-dd50-4224-905d-ad89b2421f4b", - "Date" : "Fri, 02 Apr 2021 22:40:12 GMT" + "x-ms-client-request-id" : "be62a395-aef4-4a4f-9032-a15bd05a8178", + "Date" : "Thu, 27 May 2021 21:18:44 GMT" }, "Exception" : null } ], - "variables" : [ "test-synonym82151ef1a99b" ] + "variables" : [ "test-synonym96896da567d2" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createSynonymMapFailsWithUsefulMessageOnUserError.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createSynonymMapFailsWithUsefulMessageOnUserError.json index 77f5caaa1439..ad3bfc5f6896 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createSynonymMapFailsWithUsefulMessageOnUserError.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createSynonymMapFailsWithUsefulMessageOnUserError.json @@ -1,32 +1,32 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e50cedab-8ac2-45e6-9241-72efd72b939d", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c653de36-5b9d-4f83-b6c2-79b57d705427", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "327", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e50cedab-8ac2-45e6-9241-72efd72b939d", + "request-id" : "c653de36-5b9d-4f83-b6c2-79b57d705427", "StatusCode" : "400", - "Date" : "Fri, 02 Apr 2021 22:40:55 GMT", + "Date" : "Thu, 27 May 2021 21:19:25 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "e50cedab-8ac2-45e6-9241-72efd72b939d", - "elapsed-time" : "17", + "client-request-id" : "c653de36-5b9d-4f83-b6c2-79b57d705427", + "elapsed-time" : "7", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "327", "Body" : "{\"error\":{\"code\":\"InvalidRequestParameter\",\"message\":\"Syntax error in line 1: 'a => b => c'. Only one explicit mapping (=>) can be specified in a synonym rule.\",\"details\":[{\"code\":\"InvalidSynonymMapSyntax\",\"message\":\"Syntax error in line 1: 'a => b => c'. Only one explicit mapping (=>) can be specified in a synonym rule.\"}]}}", "Content-Language" : "en", - "x-ms-client-request-id" : "e50cedab-8ac2-45e6-9241-72efd72b939d", + "x-ms-client-request-id" : "c653de36-5b9d-4f83-b6c2-79b57d705427", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "test-synonym47234be652df" ] + "variables" : [ "test-synonym69033fa1ac0e" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createSynonymMapReturnsCorrectDefinition.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createSynonymMapReturnsCorrectDefinition.json index 461d2b5b9225..875989b8926f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createSynonymMapReturnsCorrectDefinition.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createSynonymMapReturnsCorrectDefinition.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "698de8d7-760e-4a04-9a10-fef4b7160393", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "89d52e9c-4cde-4497-afd0-1b04409237df", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "698de8d7-760e-4a04-9a10-fef4b7160393", + "request-id" : "89d52e9c-4cde-4497-afd0-1b04409237df", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:40:34 GMT", + "Date" : "Thu, 27 May 2021 21:19:04 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628544431E9\"", - "client-request-id" : "698de8d7-760e-4a04-9a10-fef4b7160393", - "elapsed-time" : "30", + "ETag" : "W/\"0x8D921550E7A4639\"", + "client-request-id" : "89d52e9c-4cde-4497-afd0-1b04409237df", + "elapsed-time" : "18", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F628544431E9\\\"\",\"name\":\"test-synonym93883a99ca66\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "698de8d7-760e-4a04-9a10-fef4b7160393", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D921550E7A4639\\\"\",\"name\":\"test-synonym355324dc1f05\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "89d52e9c-4cde-4497-afd0-1b04409237df", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym93883a99ca66')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym355324dc1f05')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym93883a99ca66')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym355324dc1f05')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2b782564-0bce-4907-abd4-1be9160a561a" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "d3faa4b6-2147-43d2-b61b-78af243bb865" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2b782564-0bce-4907-abd4-1be9160a561a", - "elapsed-time" : "54", + "client-request-id" : "d3faa4b6-2147-43d2-b61b-78af243bb865", + "elapsed-time" : "11", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "2b782564-0bce-4907-abd4-1be9160a561a", + "request-id" : "d3faa4b6-2147-43d2-b61b-78af243bb865", "StatusCode" : "204", - "x-ms-client-request-id" : "2b782564-0bce-4907-abd4-1be9160a561a", - "Date" : "Fri, 02 Apr 2021 22:40:34 GMT" + "x-ms-client-request-id" : "d3faa4b6-2147-43d2-b61b-78af243bb865", + "Date" : "Thu, 27 May 2021 21:19:04 GMT" }, "Exception" : null } ], - "variables" : [ "test-synonym93883a99ca66" ] + "variables" : [ "test-synonym355324dc1f05" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createSynonymMapReturnsCorrectDefinitionWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createSynonymMapReturnsCorrectDefinitionWithResponse.json index d59bb97c9dc4..b4d0bb2f3a7d 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createSynonymMapReturnsCorrectDefinitionWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.createSynonymMapReturnsCorrectDefinitionWithResponse.json @@ -1,54 +1,54 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ceba60b7-4ef4-4fce-a2d7-178486673660", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "a823b4d0-2e24-4559-86ca-990b23477eb9", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ceba60b7-4ef4-4fce-a2d7-178486673660", + "request-id" : "a823b4d0-2e24-4559-86ca-990b23477eb9", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:40:45 GMT", + "Date" : "Thu, 27 May 2021 21:19:14 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6285A931014\"", - "client-request-id" : "ceba60b7-4ef4-4fce-a2d7-178486673660", - "elapsed-time" : "54", + "ETag" : "W/\"0x8D9215514AD18EF\"", + "client-request-id" : "a823b4d0-2e24-4559-86ca-990b23477eb9", + "elapsed-time" : "19", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F6285A931014\\\"\",\"name\":\"test-synonym73605e725a67\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "ceba60b7-4ef4-4fce-a2d7-178486673660", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D9215514AD18EF\\\"\",\"name\":\"test-synonym57072fc91147\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "a823b4d0-2e24-4559-86ca-990b23477eb9", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym73605e725a67')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym57072fc91147')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym73605e725a67')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym57072fc91147')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9e59b58a-1481-4805-8ada-1016464e1a98" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "0b4bc748-35b7-4d0e-a7f7-0a507ffddb59" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9e59b58a-1481-4805-8ada-1016464e1a98", - "elapsed-time" : "42", + "client-request-id" : "0b4bc748-35b7-4d0e-a7f7-0a507ffddb59", + "elapsed-time" : "9", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "9e59b58a-1481-4805-8ada-1016464e1a98", + "request-id" : "0b4bc748-35b7-4d0e-a7f7-0a507ffddb59", "StatusCode" : "204", - "x-ms-client-request-id" : "9e59b58a-1481-4805-8ada-1016464e1a98", - "Date" : "Fri, 02 Apr 2021 22:40:44 GMT" + "x-ms-client-request-id" : "0b4bc748-35b7-4d0e-a7f7-0a507ffddb59", + "Date" : "Thu, 27 May 2021 21:19:15 GMT" }, "Exception" : null } ], - "variables" : [ "test-synonym73605e725a67" ] + "variables" : [ "test-synonym57072fc91147" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.deleteSynonymMapIfExistsWorksOnlyWhenResourceExists.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.deleteSynonymMapIfExistsWorksOnlyWhenResourceExists.json index bdb63495b09c..5b46549d5404 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.deleteSynonymMapIfExistsWorksOnlyWhenResourceExists.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.deleteSynonymMapIfExistsWorksOnlyWhenResourceExists.json @@ -1,81 +1,81 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym62026c659261')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym8820012a4a67')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "57c8b2e5-cb91-44b0-843f-d0bf7b562b74", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "7ae8f3ee-629a-4087-872a-599426ec1620", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "57c8b2e5-cb91-44b0-843f-d0bf7b562b74", + "request-id" : "7ae8f3ee-629a-4087-872a-599426ec1620", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:40:44 GMT", + "Date" : "Thu, 27 May 2021 21:19:15 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6285A73C2D1\"", - "client-request-id" : "57c8b2e5-cb91-44b0-843f-d0bf7b562b74", - "elapsed-time" : "32", + "ETag" : "W/\"0x8D921551498C9E6\"", + "client-request-id" : "7ae8f3ee-629a-4087-872a-599426ec1620", + "elapsed-time" : "31", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F6285A73C2D1\\\"\",\"name\":\"test-synonym62026c659261\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "57c8b2e5-cb91-44b0-843f-d0bf7b562b74", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D921551498C9E6\\\"\",\"name\":\"test-synonym8820012a4a67\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "7ae8f3ee-629a-4087-872a-599426ec1620", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym62026c659261')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym8820012a4a67')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym62026c659261')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym8820012a4a67')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f24517fd-6580-4483-b557-338720b0a2d8" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "cf160a74-2f72-45a2-b03a-fbacfca3d6f9" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f24517fd-6580-4483-b557-338720b0a2d8", - "elapsed-time" : "61", + "client-request-id" : "cf160a74-2f72-45a2-b03a-fbacfca3d6f9", + "elapsed-time" : "11", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "f24517fd-6580-4483-b557-338720b0a2d8", + "request-id" : "cf160a74-2f72-45a2-b03a-fbacfca3d6f9", "StatusCode" : "204", - "x-ms-client-request-id" : "f24517fd-6580-4483-b557-338720b0a2d8", - "Date" : "Fri, 02 Apr 2021 22:40:45 GMT" + "x-ms-client-request-id" : "cf160a74-2f72-45a2-b03a-fbacfca3d6f9", + "Date" : "Thu, 27 May 2021 21:19:14 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym62026c659261')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym8820012a4a67')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "487ce98a-6bdf-4a0b-a78f-881821ec89b4" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "e679a4a6-3f8b-4533-8178-1ea26cbd0761" }, "Response" : { + "content-length" : "160", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "487ce98a-6bdf-4a0b-a78f-881821ec89b4", + "request-id" : "e679a4a6-3f8b-4533-8178-1ea26cbd0761", "StatusCode" : "412", - "Date" : "Fri, 02 Apr 2021 22:40:44 GMT", + "Date" : "Thu, 27 May 2021 21:19:15 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "487ce98a-6bdf-4a0b-a78f-881821ec89b4", + "client-request-id" : "e679a4a6-3f8b-4533-8178-1ea26cbd0761", "elapsed-time" : "4", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "487ce98a-6bdf-4a0b-a78f-881821ec89b4", + "x-ms-client-request-id" : "e679a4a6-3f8b-4533-8178-1ea26cbd0761", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "test-synonym62026c659261" ] + "variables" : [ "test-synonym8820012a4a67" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.deleteSynonymMapIfNotChangedWorksOnlyOnCurrentResource.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.deleteSynonymMapIfNotChangedWorksOnlyOnCurrentResource.json index 6145a8b94eeb..6518be2380c1 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.deleteSynonymMapIfNotChangedWorksOnlyOnCurrentResource.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.deleteSynonymMapIfNotChangedWorksOnlyOnCurrentResource.json @@ -1,109 +1,109 @@ { "networkCallRecords" : [ { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym51669c9c7067')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym56993780483b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "80ded0e4-ef08-418e-8d21-01ed7369aa93", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8b165585-9c5e-4e94-bacd-26170670a520", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "80ded0e4-ef08-418e-8d21-01ed7369aa93", + "request-id" : "8b165585-9c5e-4e94-bacd-26170670a520", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:40:50 GMT", + "Date" : "Thu, 27 May 2021 21:19:19 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6285DA6305B\"", - "client-request-id" : "80ded0e4-ef08-418e-8d21-01ed7369aa93", - "elapsed-time" : "53", + "ETag" : "W/\"0x8D9215517B6C7DC\"", + "client-request-id" : "8b165585-9c5e-4e94-bacd-26170670a520", + "elapsed-time" : "18", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F6285DA6305B\\\"\",\"name\":\"test-synonym51669c9c7067\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "80ded0e4-ef08-418e-8d21-01ed7369aa93", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D9215517B6C7DC\\\"\",\"name\":\"test-synonym56993780483b\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "8b165585-9c5e-4e94-bacd-26170670a520", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym51669c9c7067')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym56993780483b')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "PUT", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym51669c9c7067')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym56993780483b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e1e3d340-3710-422b-aa89-91c5623170f5", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3a10243e-11e4-454a-9d3d-5b6df7ad4217", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e1e3d340-3710-422b-aa89-91c5623170f5", + "request-id" : "3a10243e-11e4-454a-9d3d-5b6df7ad4217", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:40:50 GMT", + "Date" : "Thu, 27 May 2021 21:19:20 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6285DB0E096\"", - "client-request-id" : "e1e3d340-3710-422b-aa89-91c5623170f5", - "elapsed-time" : "26", + "ETag" : "W/\"0x8D9215517BFCA2E\"", + "client-request-id" : "3a10243e-11e4-454a-9d3d-5b6df7ad4217", + "elapsed-time" : "20", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F6285DB0E096\\\"\",\"name\":\"test-synonym51669c9c7067\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "e1e3d340-3710-422b-aa89-91c5623170f5", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D9215517BFCA2E\\\"\",\"name\":\"test-synonym56993780483b\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "3a10243e-11e4-454a-9d3d-5b6df7ad4217", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym51669c9c7067')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym56993780483b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "85f0c74d-b282-419f-a00f-7e934b2581f3" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "c08416aa-cc7a-451b-b420-261dc74310a5" }, "Response" : { + "content-length" : "160", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "85f0c74d-b282-419f-a00f-7e934b2581f3", + "request-id" : "c08416aa-cc7a-451b-b420-261dc74310a5", "StatusCode" : "412", - "Date" : "Fri, 02 Apr 2021 22:40:50 GMT", + "Date" : "Thu, 27 May 2021 21:19:19 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "85f0c74d-b282-419f-a00f-7e934b2581f3", - "elapsed-time" : "19", + "client-request-id" : "c08416aa-cc7a-451b-b420-261dc74310a5", + "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "160", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"The precondition given in one of the request headers evaluated to false. No change was made to the resource from this request.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "85f0c74d-b282-419f-a00f-7e934b2581f3", + "x-ms-client-request-id" : "c08416aa-cc7a-451b-b420-261dc74310a5", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym51669c9c7067')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym56993780483b')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "caf241fd-245a-4138-a45f-c97df27c02e8" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "624d72c0-362b-4ad0-8415-20598fc321fa" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "caf241fd-245a-4138-a45f-c97df27c02e8", - "elapsed-time" : "38", + "client-request-id" : "624d72c0-362b-4ad0-8415-20598fc321fa", + "elapsed-time" : "11", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "caf241fd-245a-4138-a45f-c97df27c02e8", + "request-id" : "624d72c0-362b-4ad0-8415-20598fc321fa", "StatusCode" : "204", - "x-ms-client-request-id" : "caf241fd-245a-4138-a45f-c97df27c02e8", - "Date" : "Fri, 02 Apr 2021 22:40:50 GMT" + "x-ms-client-request-id" : "624d72c0-362b-4ad0-8415-20598fc321fa", + "Date" : "Thu, 27 May 2021 21:19:20 GMT" }, "Exception" : null } ], - "variables" : [ "test-synonym51669c9c7067" ] + "variables" : [ "test-synonym56993780483b" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.deleteSynonymMapIsIdempotent.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.deleteSynonymMapIsIdempotent.json index 1b971fabd647..d0746fd1897f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.deleteSynonymMapIsIdempotent.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.deleteSynonymMapIsIdempotent.json @@ -1,108 +1,108 @@ { "networkCallRecords" : [ { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym445723c0e9a1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym069539a631b2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2a34fe36-31ed-4ea3-9464-49e2151e8682" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "4aa21f76-736a-499a-bf00-6b5eac537359" }, "Response" : { + "content-length" : "134", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2a34fe36-31ed-4ea3-9464-49e2151e8682", + "request-id" : "4aa21f76-736a-499a-bf00-6b5eac537359", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:40:29 GMT", + "Date" : "Thu, 27 May 2021 21:18:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "2a34fe36-31ed-4ea3-9464-49e2151e8682", - "elapsed-time" : "18", + "client-request-id" : "4aa21f76-736a-499a-bf00-6b5eac537359", + "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "134", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No synonymMap with the name 'test-synonym445723c0e9a1' was found in a service named 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No synonymMap with the name 'test-synonym069539a631b2' was found in a service named 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "2a34fe36-31ed-4ea3-9464-49e2151e8682", + "x-ms-client-request-id" : "4aa21f76-736a-499a-bf00-6b5eac537359", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "2e2f2783-4fbf-4e6b-9854-54220e563e0f", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "dfb9683b-bad8-4b13-97ad-35cb7565d8d8", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "2e2f2783-4fbf-4e6b-9854-54220e563e0f", + "request-id" : "dfb9683b-bad8-4b13-97ad-35cb7565d8d8", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:40:29 GMT", + "Date" : "Thu, 27 May 2021 21:18:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628510E4182\"", - "client-request-id" : "2e2f2783-4fbf-4e6b-9854-54220e563e0f", - "elapsed-time" : "54", + "ETag" : "W/\"0x8D921550B5A9A4C\"", + "client-request-id" : "dfb9683b-bad8-4b13-97ad-35cb7565d8d8", + "elapsed-time" : "24", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F628510E4182\\\"\",\"name\":\"test-synonym445723c0e9a1\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "2e2f2783-4fbf-4e6b-9854-54220e563e0f", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D921550B5A9A4C\\\"\",\"name\":\"test-synonym069539a631b2\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "dfb9683b-bad8-4b13-97ad-35cb7565d8d8", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym445723c0e9a1')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym069539a631b2')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym445723c0e9a1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym069539a631b2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "23c34e8d-77a3-47db-83f5-e52b67fcbe87" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "3cc23a41-8719-4e0c-8029-278ee452686e" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "23c34e8d-77a3-47db-83f5-e52b67fcbe87", - "elapsed-time" : "47", + "client-request-id" : "3cc23a41-8719-4e0c-8029-278ee452686e", + "elapsed-time" : "10", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "23c34e8d-77a3-47db-83f5-e52b67fcbe87", + "request-id" : "3cc23a41-8719-4e0c-8029-278ee452686e", "StatusCode" : "204", - "x-ms-client-request-id" : "23c34e8d-77a3-47db-83f5-e52b67fcbe87", - "Date" : "Fri, 02 Apr 2021 22:40:29 GMT" + "x-ms-client-request-id" : "3cc23a41-8719-4e0c-8029-278ee452686e", + "Date" : "Thu, 27 May 2021 21:18:59 GMT" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym445723c0e9a1')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym069539a631b2')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f49295f6-b16f-4aed-bb34-529cd7f7a1bc" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "ee242089-77f3-47f1-8745-757361b1bf9f" }, "Response" : { + "content-length" : "134", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f49295f6-b16f-4aed-bb34-529cd7f7a1bc", + "request-id" : "ee242089-77f3-47f1-8745-757361b1bf9f", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:40:29 GMT", + "Date" : "Thu, 27 May 2021 21:18:59 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "f49295f6-b16f-4aed-bb34-529cd7f7a1bc", - "elapsed-time" : "16", + "client-request-id" : "ee242089-77f3-47f1-8745-757361b1bf9f", + "elapsed-time" : "4", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "134", - "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No synonymMap with the name 'test-synonym445723c0e9a1' was found in a service named 'alzimmer-test'.\"}}", + "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No synonymMap with the name 'test-synonym069539a631b2' was found in a service named 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "f49295f6-b16f-4aed-bb34-529cd7f7a1bc", + "x-ms-client-request-id" : "ee242089-77f3-47f1-8745-757361b1bf9f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null } ], - "variables" : [ "test-synonym445723c0e9a1" ] + "variables" : [ "test-synonym069539a631b2" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.getSynonymMapReturnsCorrectDefinition.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.getSynonymMapReturnsCorrectDefinition.json index 6f20d9455121..830cf0782bc4 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.getSynonymMapReturnsCorrectDefinition.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.getSynonymMapReturnsCorrectDefinition.json @@ -1,81 +1,81 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "3cc99ba1-3426-4b2c-854f-feedef9edab9", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "8aec5197-3760-4e9a-8964-8ef113cc80cb", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "3cc99ba1-3426-4b2c-854f-feedef9edab9", + "request-id" : "8aec5197-3760-4e9a-8964-8ef113cc80cb", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:40:39 GMT", + "Date" : "Thu, 27 May 2021 21:19:09 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628575C832A\"", - "client-request-id" : "3cc99ba1-3426-4b2c-854f-feedef9edab9", - "elapsed-time" : "57", + "ETag" : "W/\"0x8D921551187C6AD\"", + "client-request-id" : "8aec5197-3760-4e9a-8964-8ef113cc80cb", + "elapsed-time" : "20", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F628575C832A\\\"\",\"name\":\"test-synonym97983cefe6f8\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "3cc99ba1-3426-4b2c-854f-feedef9edab9", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D921551187C6AD\\\"\",\"name\":\"test-synonym87080bd64355\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "8aec5197-3760-4e9a-8964-8ef113cc80cb", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym97983cefe6f8')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym87080bd64355')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym97983cefe6f8')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym87080bd64355')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "1d580cde-4a74-43ec-aa15-2017abc7e247" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "07d54683-2586-4b2a-a046-a3bda6c8355f" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "1d580cde-4a74-43ec-aa15-2017abc7e247", + "request-id" : "07d54683-2586-4b2a-a046-a3bda6c8355f", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:40:38 GMT", + "Date" : "Thu, 27 May 2021 21:19:10 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F628575C832A\"", - "client-request-id" : "1d580cde-4a74-43ec-aa15-2017abc7e247", - "elapsed-time" : "7", + "ETag" : "W/\"0x8D921551187C6AD\"", + "client-request-id" : "07d54683-2586-4b2a-a046-a3bda6c8355f", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F628575C832A\\\"\",\"name\":\"test-synonym97983cefe6f8\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "1d580cde-4a74-43ec-aa15-2017abc7e247", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D921551187C6AD\\\"\",\"name\":\"test-synonym87080bd64355\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "07d54683-2586-4b2a-a046-a3bda6c8355f", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym97983cefe6f8')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym87080bd64355')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "8e032753-9876-4336-8016-30f8d82823ac" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "01d3fedc-562c-40d4-888a-04820531236a" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "8e032753-9876-4336-8016-30f8d82823ac", - "elapsed-time" : "53", + "client-request-id" : "01d3fedc-562c-40d4-888a-04820531236a", + "elapsed-time" : "14", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "8e032753-9876-4336-8016-30f8d82823ac", + "request-id" : "01d3fedc-562c-40d4-888a-04820531236a", "StatusCode" : "204", - "x-ms-client-request-id" : "8e032753-9876-4336-8016-30f8d82823ac", - "Date" : "Fri, 02 Apr 2021 22:40:39 GMT" + "x-ms-client-request-id" : "01d3fedc-562c-40d4-888a-04820531236a", + "Date" : "Thu, 27 May 2021 21:19:09 GMT" }, "Exception" : null } ], - "variables" : [ "test-synonym97983cefe6f8" ] + "variables" : [ "test-synonym87080bd64355" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.getSynonymMapReturnsCorrectDefinitionWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.getSynonymMapReturnsCorrectDefinitionWithResponse.json index 85698bb6c30f..842383b92a8d 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.getSynonymMapReturnsCorrectDefinitionWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.getSynonymMapReturnsCorrectDefinitionWithResponse.json @@ -1,81 +1,81 @@ { "networkCallRecords" : [ { "Method" : "POST", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "f922a578-6e8a-4ae9-a1e4-f691ac1258c8", + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "be457b26-12a7-4455-bedf-cb1bd47391bb", "Content-Type" : "application/json" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "f922a578-6e8a-4ae9-a1e4-f691ac1258c8", + "request-id" : "be457b26-12a7-4455-bedf-cb1bd47391bb", "StatusCode" : "201", - "Date" : "Fri, 02 Apr 2021 22:39:57 GMT", + "Date" : "Thu, 27 May 2021 21:18:28 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283E33D267\"", - "client-request-id" : "f922a578-6e8a-4ae9-a1e4-f691ac1258c8", - "elapsed-time" : "68", + "ETag" : "W/\"0x8D92154F8E085FA\"", + "client-request-id" : "be457b26-12a7-4455-bedf-cb1bd47391bb", + "elapsed-time" : "18", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283E33D267\\\"\",\"name\":\"test-synonym69468d468f61\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "f922a578-6e8a-4ae9-a1e4-f691ac1258c8", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D92154F8E085FA\\\"\",\"name\":\"test-synonym522118db1ed5\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "be457b26-12a7-4455-bedf-cb1bd47391bb", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal", - "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym69468d468f61')?api-version=2020-06-30-Preview" + "Location" : "https://alzimmer-test.search.windows.net/synonymmaps('test-synonym522118db1ed5')?api-version=2020-06-30" }, "Exception" : null }, { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym69468d468f61')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym522118db1ed5')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "e5d677f2-769b-4ca9-b6a1-92c0890910a0" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "b7c78edf-eef5-45e6-8ea0-650caac7cba7" }, "Response" : { + "content-length" : "225", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "e5d677f2-769b-4ca9-b6a1-92c0890910a0", + "request-id" : "b7c78edf-eef5-45e6-8ea0-650caac7cba7", "StatusCode" : "200", - "Date" : "Fri, 02 Apr 2021 22:39:57 GMT", + "Date" : "Thu, 27 May 2021 21:18:28 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "ETag" : "W/\"0x8D8F6283E33D267\"", - "client-request-id" : "e5d677f2-769b-4ca9-b6a1-92c0890910a0", - "elapsed-time" : "33", + "ETag" : "W/\"0x8D92154F8E085FA\"", + "client-request-id" : "b7c78edf-eef5-45e6-8ea0-650caac7cba7", + "elapsed-time" : "12", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "225", - "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D8F6283E33D267\\\"\",\"name\":\"test-synonym69468d468f61\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", - "x-ms-client-request-id" : "e5d677f2-769b-4ca9-b6a1-92c0890910a0", + "Body" : "{\"@odata.context\":\"https://alzimmer-test.search.windows.net/$metadata#synonymmaps/$entity\",\"@odata.etag\":\"\\\"0x8D92154F8E085FA\\\"\",\"name\":\"test-synonym522118db1ed5\",\"format\":\"solr\",\"synonyms\":\"word1,word2\",\"encryptionKey\":null}", + "x-ms-client-request-id" : "b7c78edf-eef5-45e6-8ea0-650caac7cba7", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, "Exception" : null }, { "Method" : "DELETE", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym69468d468f61')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('test-synonym522118db1ed5')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "9c633bf6-6c7d-4a90-b500-dd32966ce673" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "1457c6e7-f0ab-4487-8527-ed31ae2bdccb" }, "Response" : { "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "9c633bf6-6c7d-4a90-b500-dd32966ce673", - "elapsed-time" : "50", + "client-request-id" : "1457c6e7-f0ab-4487-8527-ed31ae2bdccb", + "elapsed-time" : "10", "Pragma" : "no-cache", "Expires" : "-1", "retry-after" : "0", - "request-id" : "9c633bf6-6c7d-4a90-b500-dd32966ce673", + "request-id" : "1457c6e7-f0ab-4487-8527-ed31ae2bdccb", "StatusCode" : "204", - "x-ms-client-request-id" : "9c633bf6-6c7d-4a90-b500-dd32966ce673", - "Date" : "Fri, 02 Apr 2021 22:39:57 GMT" + "x-ms-client-request-id" : "1457c6e7-f0ab-4487-8527-ed31ae2bdccb", + "Date" : "Thu, 27 May 2021 21:18:28 GMT" }, "Exception" : null } ], - "variables" : [ "test-synonym69468d468f61" ] + "variables" : [ "test-synonym522118db1ed5" ] } \ No newline at end of file diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.getSynonymMapThrowsOnNotFound.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.getSynonymMapThrowsOnNotFound.json index 51923c927932..daaf2cd4c15f 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.getSynonymMapThrowsOnNotFound.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.getSynonymMapThrowsOnNotFound.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('thisSynonymMapDoesNotExist')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('thisSynonymMapDoesNotExist')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "222bd4c5-3f95-4b43-b209-b1bf28c53e09" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "efd723eb-633f-465d-8b9d-5b14810f0c0d" }, "Response" : { + "content-length" : "129", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "222bd4c5-3f95-4b43-b209-b1bf28c53e09", + "request-id" : "efd723eb-633f-465d-8b9d-5b14810f0c0d", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:40:02 GMT", + "Date" : "Thu, 27 May 2021 21:18:33 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "222bd4c5-3f95-4b43-b209-b1bf28c53e09", - "elapsed-time" : "19", + "client-request-id" : "efd723eb-633f-465d-8b9d-5b14810f0c0d", + "elapsed-time" : "11", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "129", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No synonym map with the name 'thisSynonymMapDoesNotExist' was found in service 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "222bd4c5-3f95-4b43-b209-b1bf28c53e09", + "x-ms-client-request-id" : "efd723eb-633f-465d-8b9d-5b14810f0c0d", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, diff --git a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.getSynonymMapThrowsOnNotFoundWithResponse.json b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.getSynonymMapThrowsOnNotFoundWithResponse.json index 4a5fc17edbf6..45483d64953d 100644 --- a/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.getSynonymMapThrowsOnNotFoundWithResponse.json +++ b/sdk/search/azure-search-documents/src/test/resources/session-records/SynonymMapManagementSyncTests.getSynonymMapThrowsOnNotFoundWithResponse.json @@ -1,27 +1,27 @@ { "networkCallRecords" : [ { "Method" : "GET", - "Uri" : "https://REDACTED.search.windows.net/synonymmaps('thisSynonymMapDoesNotExist')?api-version=2020-06-30-Preview", + "Uri" : "https://REDACTED.search.windows.net/synonymmaps('thisSynonymMapDoesNotExist')?api-version=2020-06-30", "Headers" : { - "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.1 (11.0.6; Windows 10; 10.0)", - "x-ms-client-request-id" : "ed85d21a-3ef5-4f1c-b4da-5e55d9ee4df8" + "User-Agent" : "azsdk-java-azure-search-documents/11.4.0-beta.3 (11.0.9.1; Windows 10; 10.0)", + "x-ms-client-request-id" : "942ef7c0-a326-4086-85ba-3260af978a4c" }, "Response" : { + "content-length" : "129", "Pragma" : "no-cache", "retry-after" : "0", - "request-id" : "ed85d21a-3ef5-4f1c-b4da-5e55d9ee4df8", + "request-id" : "942ef7c0-a326-4086-85ba-3260af978a4c", "StatusCode" : "404", - "Date" : "Fri, 02 Apr 2021 22:40:38 GMT", + "Date" : "Thu, 27 May 2021 21:19:08 GMT", "Strict-Transport-Security" : "max-age=15724800; includeSubDomains", "Cache-Control" : "no-cache", - "client-request-id" : "ed85d21a-3ef5-4f1c-b4da-5e55d9ee4df8", + "client-request-id" : "942ef7c0-a326-4086-85ba-3260af978a4c", "elapsed-time" : "5", "OData-Version" : "4.0", "Expires" : "-1", - "Content-Length" : "129", "Body" : "{\"error\":{\"code\":\"\",\"message\":\"No synonym map with the name 'thisSynonymMapDoesNotExist' was found in service 'alzimmer-test'.\"}}", "Content-Language" : "en", - "x-ms-client-request-id" : "ed85d21a-3ef5-4f1c-b4da-5e55d9ee4df8", + "x-ms-client-request-id" : "942ef7c0-a326-4086-85ba-3260af978a4c", "Preference-Applied" : "odata.include-annotations=\"*\"", "Content-Type" : "application/json; odata.metadata=minimal" }, diff --git a/sdk/search/azure-search-documents/swagger/README.md b/sdk/search/azure-search-documents/swagger/README.md index e0bdf4410462..28dcb5d578ad 100644 --- a/sdk/search/azure-search-documents/swagger/README.md +++ b/sdk/search/azure-search-documents/swagger/README.md @@ -28,7 +28,7 @@ npm install -g autorest ### Generation There are two swaggers for Azure Search, `searchindex` and `searchservice`. They always under same package version, e.g. -`--tag=package-2020-06-Preview-searchindex` and `--tag=package-2020-06-Preview-searchservice`. +`--tag=package-2020-06-searchindex` and `--tag=package-2020-06-searchservice`. ```ps cd @@ -38,8 +38,8 @@ autorest --use=C:/work/autorest.java e.g. ```ps cd -autorest --use=C:/work/autorest.java --tag=package-2020-06-Preview-searchindex -autorest --use=C:/work/autorest.java --tag=package-2020-06-Preview-searchservice +autorest --use=C:/work/autorest.java --tag=package-2020-06-searchindex +autorest --use=C:/work/autorest.java --tag=package-2020-06-searchservice ``` ## Configuration @@ -51,31 +51,31 @@ opt-in-extensible-enums: true openapi-type: data-plane ``` -### Tag: package-2020-06-Preview-searchindex +### Tag: package-2020-06-searchindex -These settings apply only when `--tag=package-2020-06-Preview-searchindex` is specified on the command line. +These settings apply only when `--tag=package-2020-06-searchindex` is specified on the command line. -``` yaml $(tag) == 'package-2020-06-Preview-searchindex' +``` yaml $(tag) == 'package-2020-06-searchindex' namespace: com.azure.search.documents input-file: -- https://raw.githubusercontent.com/Azure/azure-rest-api-specs/d95c18e2d5fc678a1453c454d746fdce22d30122/specification/search/data-plane/Azure.Search/preview/2020-06-30-Preview/searchindex.json +- https://raw.githubusercontent.com/Azure/azure-rest-api-specs/d95c18e2d5fc678a1453c454d746fdce22d30122/specification/search/data-plane/Azure.Search/preview/2020-06-30/searchindex.json models-subpackage: implementation.models custom-types-subpackage: models -custom-types: AnswerResult,AutocompleteItem,AutocompleteMode,AutocompleteOptions,AutocompleteResult,CaptionResult,FacetResult,IndexActionType,QueryAnswer,QueryLanguage,QuerySpeller,QueryType,ScoringStatistics,SearchMode,SuggestOptions +custom-types: AutocompleteItem,AutocompleteMode,AutocompleteOptions,AutocompleteResult,FacetResult,IndexActionType,QueryType,ScoringStatistics,SearchMode,SuggestOptions customization-class: src/main/java/SearchIndexCustomizations.java ``` -### Tag: package-2020-06-Preview-searchservice +### Tag: package-2020-06-searchservice -These settings apply only when `--tag=package-2020-06-Preview-searchservice` is specified on the command line. +These settings apply only when `--tag=package-2020-06-searchservice` is specified on the command line. -``` yaml $(tag) == 'package-2020-06-Preview-searchservice' +``` yaml $(tag) == 'package-2020-06-searchservice' namespace: com.azure.search.documents.indexes input-file: -- https://raw.githubusercontent.com/Azure/azure-rest-api-specs/d95c18e2d5fc678a1453c454d746fdce22d30122/specification/search/data-plane/Azure.Search/preview/2020-06-30-Preview/searchservice.json +- https://raw.githubusercontent.com/Azure/azure-rest-api-specs/d95c18e2d5fc678a1453c454d746fdce22d30122/specification/search/data-plane/Azure.Search/preview/2020-06-30/searchservice.json models-subpackage: implementation.models custom-types-subpackage: models -custom-types: AnalyzedTokenInfo,BlobIndexerDataToExtract,BlobIndexerImageAction,BlobIndexerPdfTextRotationAlgorithm,BlobIndexerParsingMode,BM25SimilarityAlgorithm,CharFilter,CharFilterName,CjkBigramTokenFilterScripts,ClassicSimilarityAlgorithm,CognitiveServicesAccount,CognitiveServicesAccountKey,ConditionalSkill,CorsOptions,CustomAnalyzer,CustomEntity,CustomEntityAlias,CustomEntityLookupSkill,CustomEntityLookupSkillLanguage,CustomNormalizer,DataChangeDetectionPolicy,DataDeletionDetectionPolicy,DefaultCognitiveServicesAccount,DistanceScoringFunction,DistanceScoringParameters,DocumentExtractionSkill,EdgeNGramTokenFilterSide,EntityCategory,EntityRecognitionSkill,EntityRecognitionSkillLanguage,FieldMapping,FieldMappingFunction,FreshnessScoringFunction,FreshnessScoringParameters,HighWaterMarkChangeDetectionPolicy,ImageAnalysisSkill,ImageAnalysisSkillLanguage,ImageDetail,IndexerExecutionEnvironment,IndexerExecutionResult,IndexerExecutionStatus,IndexerStatus,IndexingParametersConfiguration,IndexingSchedule,InputFieldMappingEntry,KeyPhraseExtractionSkill,KeyPhraseExtractionSkillLanguage,LanguageDetectionSkill,LexicalAnalyzer,LexicalAnalyzerName,LexicalNormalizer,LexicalNormalizerName,LexicalTokenizerName,LuceneStandardAnalyzer,MagnitudeScoringFunction,MagnitudeScoringParameters,MappingCharFilter,MergeSkill,MicrosoftStemmingTokenizerLanguage,MicrosoftTokenizerLanguage,OcrSkill,OcrSkillLanguage,OutputFieldMappingEntry,PatternAnalyzer,PatternReplaceCharFilter,PhoneticEncoder,RegexFlags,ResourceCounter,ScoringFunction,ScoringFunctionAggregation,ScoringFunctionInterpolation,ScoringProfile,SearchField,SearchFieldDataType,SearchIndexerDataContainer,SearchIndexerDataSourceType,SearchIndexerError,SearchIndexerKnowledgeStore,SearchIndexerKnowledgeStoreBlobProjectionSelector,SearchIndexerKnowledgeStoreFileProjectionSelector,SearchIndexerKnowledgeStoreObjectProjectionSelector,SearchIndexerKnowledgeStoreProjection,SearchIndexerKnowledgeStoreProjectionSelector,SearchIndexerKnowledgeStoreTableProjectionSelector,SearchIndexerLimits,SearchIndexerSkill,SearchIndexerSkillset,SearchIndexerStatus,SearchIndexerWarning,SearchIndexStatistics,SearchResourceEncryptionKey,SearchServiceCounters,SearchServiceLimits,SearchServiceStatistics,SearchSuggester,SentimentSkill,SentimentSkillLanguage,ShaperSkill,SimilarityAlgorithm,SnowballTokenFilterLanguage,SoftDeleteColumnDeletionDetectionPolicy,SplitSkill,SplitSkillLanguage,SqlIntegratedChangeTrackingPolicy,StemmerTokenFilterLanguage,StopAnalyzer,StopwordsList,SynonymMap,TagScoringFunction,TagScoringParameters,TextSplitMode,TextTranslationSkill,TextTranslationSkillLanguage,TextWeights,TokenCharacterKind,TokenFilterName,VisualFeature,WebApiSkill +custom-types: AnalyzedTokenInfo,BlobIndexerDataToExtract,BlobIndexerImageAction,BlobIndexerPdfTextRotationAlgorithm,BlobIndexerParsingMode,BM25SimilarityAlgorithm,CharFilter,CharFilterName,CjkBigramTokenFilterScripts,ClassicSimilarityAlgorithm,CognitiveServicesAccount,CognitiveServicesAccountKey,ConditionalSkill,CorsOptions,CustomAnalyzer,CustomEntity,CustomEntityAlias,CustomEntityLookupSkill,CustomEntityLookupSkillLanguage,DataChangeDetectionPolicy,DataDeletionDetectionPolicy,DefaultCognitiveServicesAccount,DistanceScoringFunction,DistanceScoringParameters,DocumentExtractionSkill,EdgeNGramTokenFilterSide,EntityCategory,EntityRecognitionSkill,EntityRecognitionSkillLanguage,FieldMapping,FieldMappingFunction,FreshnessScoringFunction,FreshnessScoringParameters,HighWaterMarkChangeDetectionPolicy,ImageAnalysisSkill,ImageAnalysisSkillLanguage,ImageDetail,IndexerExecutionEnvironment,IndexerExecutionResult,IndexerExecutionStatus,IndexerStatus,IndexingParametersConfiguration,IndexingSchedule,InputFieldMappingEntry,KeyPhraseExtractionSkill,KeyPhraseExtractionSkillLanguage,LanguageDetectionSkill,LexicalAnalyzer,LexicalAnalyzerName,LexicalTokenizerName,LuceneStandardAnalyzer,MagnitudeScoringFunction,MagnitudeScoringParameters,MappingCharFilter,MergeSkill,MicrosoftStemmingTokenizerLanguage,MicrosoftTokenizerLanguage,OcrSkill,OcrSkillLanguage,OutputFieldMappingEntry,PatternAnalyzer,PatternReplaceCharFilter,PhoneticEncoder,RegexFlags,ResourceCounter,ScoringFunction,ScoringFunctionAggregation,ScoringFunctionInterpolation,ScoringProfile,SearchField,SearchFieldDataType,SearchIndexerDataContainer,SearchIndexerDataSourceType,SearchIndexerError,SearchIndexerKnowledgeStore,SearchIndexerKnowledgeStoreBlobProjectionSelector,SearchIndexerKnowledgeStoreFileProjectionSelector,SearchIndexerKnowledgeStoreObjectProjectionSelector,SearchIndexerKnowledgeStoreProjection,SearchIndexerKnowledgeStoreProjectionSelector,SearchIndexerKnowledgeStoreTableProjectionSelector,SearchIndexerLimits,SearchIndexerSkill,SearchIndexerSkillset,SearchIndexerStatus,SearchIndexerWarning,SearchIndexStatistics,SearchResourceEncryptionKey,SearchServiceCounters,SearchServiceLimits,SearchServiceStatistics,SearchSuggester,SentimentSkill,SentimentSkillLanguage,ShaperSkill,SimilarityAlgorithm,SnowballTokenFilterLanguage,SoftDeleteColumnDeletionDetectionPolicy,SplitSkill,SplitSkillLanguage,SqlIntegratedChangeTrackingPolicy,StemmerTokenFilterLanguage,StopAnalyzer,StopwordsList,SynonymMap,TagScoringFunction,TagScoringParameters,TextSplitMode,TextTranslationSkill,TextTranslationSkillLanguage,TextWeights,TokenCharacterKind,TokenFilterName,VisualFeature,WebApiSkill customization-class: src/main/java/SearchServiceCustomizations.java directive: - rename-model: @@ -186,15 +186,6 @@ directive: $["x-ms-enum"].name = "BlobIndexerPdfTextRotationAlgorithm"; ``` -### Add serialization discriminator to LexicalNormalizer -``` yaml $(java) -directive: - - from: swagger-document - where: $.definitions.LexicalNormalizer - transform: > - $.discriminator = "@odata.type"; -``` - ### Change SearchField retrievable to hidden ``` yaml $(java) directive: @@ -206,7 +197,6 @@ directive: $.analyzer["x-ms-client-name"] = "analyzerName"; $.searchAnalyzer["x-ms-client-name"] = "searchAnalyzerName"; $.indexAnalyzer["x-ms-client-name"] = "indexAnalyzerName"; - $.normalizer["x-ms-client-name"] = "normalizerName"; $.synonymMaps["x-ms-client-name"] = "synonymMapNames"; ``` @@ -220,48 +210,6 @@ directive: param["x-ms-client-name"] = "includeTotalCount"; ``` -### Rename Speller to QuerySpeller -``` yaml $(java) -directive: - - from: swagger-document - where: $.paths["/docs"].get.parameters - transform: > - $.find(p => p.name === "speller")["x-ms-enum"].name = "QuerySpeller"; -``` - -### Rename Answers to QueryAnswer and Speller to QuerySpeller -``` yaml $(java) -directive: - - from: swagger-document - where: $.definitions - transform: > - $.Answers["x-ms-enum"].name = "QueryAnswer"; - $.Speller["x-ms-enum"].name = "QuerySpeller"; -``` - -### Change Answers to a string in SearchOptions and SearchRequest -``` yaml $(java) -directive: - - from: swagger-document - where: $.paths["/docs"].get.parameters - transform: > - let param = $.find(p => p.name === "answers"); - param.type = "string"; - delete param.enum; - delete param["x-ms-enum"]; -``` - -``` yaml $(java) -directive: - - from: swagger-document - where: $.definitions - transform: > - let param = $.SearchRequest.properties.answers; - param.type = "string"; - param.description = $.Answers.description; - delete param["$ref"]; -``` - ### Remove applicationId from being required in AzureActiveDirectoryApplicationCredentials ``` yaml $(java) directive: diff --git a/sdk/search/azure-search-documents/swagger/src/main/java/SearchServiceCustomizations.java b/sdk/search/azure-search-documents/swagger/src/main/java/SearchServiceCustomizations.java index dfc791f03ad4..5b167d98e9be 100644 --- a/sdk/search/azure-search-documents/swagger/src/main/java/SearchServiceCustomizations.java +++ b/sdk/search/azure-search-documents/swagger/src/main/java/SearchServiceCustomizations.java @@ -64,7 +64,6 @@ public void customize(LibraryCustomization libraryCustomization, Logger logger) customizeImageAnalysisSkill(publicCustomization.getClass("ImageAnalysisSkill")); customizeEntityRecognitionSkill(publicCustomization.getClass("EntityRecognitionSkill")); customizeCustomEntityLookupSkill(publicCustomization.getClass("CustomEntityLookupSkill")); - customizeCustomNormalizer(publicCustomization.getClass("CustomNormalizer")); customizeSearchField(publicCustomization.getClass("SearchField")); customizeSynonymMap(publicCustomization.getClass("SynonymMap")); customizeSearchResourceEncryptionKey(publicCustomization.getClass("SearchResourceEncryptionKey"), @@ -151,12 +150,6 @@ private void customizeCustomEntityLookupSkill(ClassCustomization classCustomizat addVarArgsOverload(classCustomization, "inlineEntitiesDefinition", "CustomEntity"); } - private void customizeCustomNormalizer(ClassCustomization classCustomization) { - changeClassModifier(classCustomization, PUBLIC_FINAL); - addVarArgsOverload(classCustomization, "tokenFilters", "TokenFilterName"); - addVarArgsOverload(classCustomization, "charFilters", "CharFilterName"); - } - private void customizeSearchField(ClassCustomization classCustomization) { classCustomization.getMethod("setHidden").replaceBody(joinWithNewline( "this.hidden = (hidden == null) ? null : !hidden;",