diff --git a/sdk/search/azure-search-documents/CHANGELOG.md b/sdk/search/azure-search-documents/CHANGELOG.md index 52892a442cc3..28aac4a25226 100644 --- a/sdk/search/azure-search-documents/CHANGELOG.md +++ b/sdk/search/azure-search-documents/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 11.2.1 (Unreleased) +## 11.3.0b1 (Unreleased) ## 11.2.0 (2021-06-08) diff --git a/sdk/search/azure-search-documents/azure/search/documents/_api_versions.py b/sdk/search/azure-search-documents/azure/search/documents/_api_versions.py index e994aa151520..45a8d355f8a4 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/_api_versions.py +++ b/sdk/search/azure-search-documents/azure/search/documents/_api_versions.py @@ -8,5 +8,6 @@ class ApiVersion(str, Enum): #: this is the default version V2020_06_30 = "2020-06-30" + V2020_06_30_preview = "2020-06-30-Preview" -DEFAULT_VERSION = ApiVersion.V2020_06_30 +DEFAULT_VERSION = ApiVersion.V2020_06_30_preview diff --git a/sdk/search/azure-search-documents/azure/search/documents/_generated/_configuration.py b/sdk/search/azure-search-documents/azure/search/documents/_generated/_configuration.py index fddf92d233ee..fa5c32c24b1a 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/_generated/_configuration.py +++ b/sdk/search/azure-search-documents/azure/search/documents/_generated/_configuration.py @@ -44,7 +44,7 @@ def __init__( self.endpoint = endpoint self.index_name = index_name - self.api_version = "2020-06-30" + self.api_version = "2020-06-30-Preview" kwargs.setdefault('sdk_moniker', 'search-documents/{}'.format(VERSION)) self._configure(**kwargs) diff --git a/sdk/search/azure-search-documents/azure/search/documents/_generated/aio/_configuration.py b/sdk/search/azure-search-documents/azure/search/documents/_generated/aio/_configuration.py index 9d23ae394f82..07e344b9c7df 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/_generated/aio/_configuration.py +++ b/sdk/search/azure-search-documents/azure/search/documents/_generated/aio/_configuration.py @@ -39,7 +39,7 @@ def __init__( self.endpoint = endpoint self.index_name = index_name - self.api_version = "2020-06-30" + self.api_version = "2020-06-30-Preview" kwargs.setdefault('sdk_moniker', 'search-documents/{}'.format(VERSION)) self._configure(**kwargs) diff --git a/sdk/search/azure-search-documents/azure/search/documents/_generated/aio/operations/_documents_operations.py b/sdk/search/azure-search-documents/azure/search/documents/_generated/aio/operations/_documents_operations.py index 792a75ab8814..770f0a9c3b12 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/_generated/aio/operations/_documents_operations.py +++ b/sdk/search/azure-search-documents/azure/search/documents/_generated/aio/operations/_documents_operations.py @@ -42,7 +42,7 @@ def __init__(self, client, config, serializer, deserializer) -> None: async def count( self, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> int: """Queries the number of documents in the index. @@ -62,7 +62,7 @@ async def count( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -105,7 +105,7 @@ async def search_get( search_text: Optional[str] = None, search_options: Optional["_models.SearchOptions"] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SearchDocumentsResult": """Searches for documents in the index. @@ -139,6 +139,9 @@ async def search_get( _scoring_parameters = None _scoring_profile = None _search_fields = None + _query_language = None + _speller = None + _answers = None _search_mode = None _scoring_statistics = None _session_id = None @@ -161,13 +164,16 @@ async def search_get( _scoring_parameters = search_options.scoring_parameters _scoring_profile = search_options.scoring_profile _search_fields = search_options.search_fields + _query_language = search_options.query_language + _speller = search_options.speller + _answers = search_options.answers _search_mode = search_options.search_mode _scoring_statistics = search_options.scoring_statistics _session_id = search_options.session_id _select = search_options.select _skip = search_options.skip _top = search_options.top - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -206,6 +212,12 @@ async def search_get( query_parameters['scoringProfile'] = self._serialize.query("scoring_profile", _scoring_profile, 'str') if _search_fields is not None: query_parameters['searchFields'] = self._serialize.query("search_fields", _search_fields, '[str]', div=',') + if _query_language is not None: + query_parameters['queryLanguage'] = self._serialize.query("query_language", _query_language, 'str') + if _speller is not None: + query_parameters['speller'] = self._serialize.query("speller", _speller, 'str') + if _answers is not None: + query_parameters['answers'] = self._serialize.query("answers", _answers, 'str') if _search_mode is not None: query_parameters['searchMode'] = self._serialize.query("search_mode", _search_mode, 'str') if _scoring_statistics is not None: @@ -247,7 +259,7 @@ async def search_post( self, search_request: "_models.SearchRequest", request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SearchDocumentsResult": """Searches for documents in the index. @@ -269,7 +281,7 @@ async def search_post( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -317,8 +329,8 @@ async def get( key: str, selected_fields: Optional[List[str]] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any - ) -> Any: + **kwargs + ) -> object: """Retrieves a document from the index. :param key: The key of the document to retrieve. @@ -329,11 +341,11 @@ async def get( :param request_options: Parameter group. :type request_options: ~azure.search.documents.models.RequestOptions :keyword callable cls: A custom type or function that will be passed the direct response - :return: any, or the result of cls(response) - :rtype: any + :return: object, or the result of cls(response) + :rtype: object :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType[Any] + cls = kwargs.pop('cls', None) # type: ClsType[object] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } @@ -342,7 +354,7 @@ async def get( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -389,7 +401,7 @@ async def suggest_get( suggester_name: str, suggest_options: Optional["_models.SuggestOptions"] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SuggestDocumentsResult": """Suggests documents in the index that match the given partial query text. @@ -436,7 +448,7 @@ async def suggest_get( _search_fields = suggest_options.search_fields _select = suggest_options.select _top = suggest_options.top - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -498,7 +510,7 @@ async def suggest_post( self, suggest_request: "_models.SuggestRequest", request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SuggestDocumentsResult": """Suggests documents in the index that match the given partial query text. @@ -520,7 +532,7 @@ async def suggest_post( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -567,7 +579,7 @@ async def index( self, actions: List["_models.IndexAction"], request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.IndexDocumentsResult": """Sends a batch of document write actions to the index. @@ -591,7 +603,7 @@ async def index( _x_ms_client_request_id = request_options.x_ms_client_request_id _batch = _models.IndexBatch(actions=actions) - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -644,7 +656,7 @@ async def autocomplete_get( suggester_name: str, request_options: Optional["_models.RequestOptions"] = None, autocomplete_options: Optional["_models.AutocompleteOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.AutocompleteResult": """Autocompletes incomplete query terms based on input text and matching terms in the index. @@ -688,7 +700,7 @@ async def autocomplete_get( _top = autocomplete_options.top if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -748,7 +760,7 @@ async def autocomplete_post( self, autocomplete_request: "_models.AutocompleteRequest", request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.AutocompleteResult": """Autocompletes incomplete query terms based on input text and matching terms in the index. @@ -770,7 +782,7 @@ async def autocomplete_post( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/sdk/search/azure-search-documents/azure/search/documents/_generated/models/__init__.py b/sdk/search/azure-search-documents/azure/search/documents/_generated/models/__init__.py index abb65d224c74..c6e8ed8dba48 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/_generated/models/__init__.py +++ b/sdk/search/azure-search-documents/azure/search/documents/_generated/models/__init__.py @@ -7,10 +7,12 @@ # -------------------------------------------------------------------------- try: + from ._models_py3 import AnswerResult from ._models_py3 import AutocompleteItem from ._models_py3 import AutocompleteOptions from ._models_py3 import AutocompleteRequest from ._models_py3 import AutocompleteResult + from ._models_py3 import CaptionResult from ._models_py3 import FacetResult from ._models_py3 import IndexAction from ._models_py3 import IndexBatch @@ -27,10 +29,12 @@ from ._models_py3 import SuggestRequest from ._models_py3 import SuggestResult except (SyntaxError, ImportError): + from ._models import AnswerResult # type: ignore from ._models import AutocompleteItem # type: ignore from ._models import AutocompleteOptions # type: ignore from ._models import AutocompleteRequest # type: ignore from ._models import AutocompleteResult # type: ignore + from ._models import CaptionResult # type: ignore from ._models import FacetResult # type: ignore from ._models import IndexAction # type: ignore from ._models import IndexBatch # type: ignore @@ -48,18 +52,23 @@ from ._models import SuggestResult # type: ignore from ._search_client_enums import ( + Answers, AutocompleteMode, IndexActionType, + QueryLanguage, QueryType, ScoringStatistics, SearchMode, + Speller, ) __all__ = [ + 'AnswerResult', 'AutocompleteItem', 'AutocompleteOptions', 'AutocompleteRequest', 'AutocompleteResult', + 'CaptionResult', 'FacetResult', 'IndexAction', 'IndexBatch', @@ -75,9 +84,12 @@ 'SuggestOptions', 'SuggestRequest', 'SuggestResult', + 'Answers', 'AutocompleteMode', 'IndexActionType', + 'QueryLanguage', 'QueryType', 'ScoringStatistics', 'SearchMode', + 'Speller', ] diff --git a/sdk/search/azure-search-documents/azure/search/documents/_generated/models/_models.py b/sdk/search/azure-search-documents/azure/search/documents/_generated/models/_models.py index 2db90ad23359..54743d7d58ad 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/_generated/models/_models.py +++ b/sdk/search/azure-search-documents/azure/search/documents/_generated/models/_models.py @@ -10,6 +10,53 @@ import msrest.serialization +class AnswerResult(msrest.serialization.Model): + """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. + + Variables are only populated by the server, and will be ignored when sending a request. + + :param additional_properties: Unmatched properties from the message are deserialized to this + collection. + :type additional_properties: dict[str, object] + :ivar score: The score value represents how relevant the answer is to the the query relative to + other answers returned for the query. + :vartype score: float + :ivar key: The key of the document the answer was extracted from. + :vartype key: str + :ivar text: The text passage extracted from the document contents as the answer. + :vartype text: str + :ivar highlights: Same text passage as in the Text property with highlighted text phrases most + relevant to the query. + :vartype highlights: str + """ + + _validation = { + 'score': {'readonly': True}, + 'key': {'readonly': True}, + 'text': {'readonly': True}, + 'highlights': {'readonly': True}, + } + + _attribute_map = { + 'additional_properties': {'key': '', 'type': '{object}'}, + 'score': {'key': 'score', 'type': 'float'}, + 'key': {'key': 'key', 'type': 'str'}, + 'text': {'key': 'text', 'type': 'str'}, + 'highlights': {'key': 'highlights', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(AnswerResult, self).__init__(**kwargs) + self.additional_properties = kwargs.get('additional_properties', None) + self.score = None + self.key = None + self.text = None + self.highlights = None + + class AutocompleteItem(msrest.serialization.Model): """The result of Autocomplete requests. @@ -213,6 +260,43 @@ def __init__( self.results = None +class CaptionResult(msrest.serialization.Model): + """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'.. + + Variables are only populated by the server, and will be ignored when sending a request. + + :param additional_properties: Unmatched properties from the message are deserialized to this + collection. + :type additional_properties: dict[str, object] + :ivar text: A representative text passage extracted from the document most relevant to the + search query. + :vartype text: str + :ivar highlights: Same text passage as in the Text property with highlighted phrases most + relevant to the query. + :vartype highlights: str + """ + + _validation = { + 'text': {'readonly': True}, + 'highlights': {'readonly': True}, + } + + _attribute_map = { + 'additional_properties': {'key': '', 'type': '{object}'}, + 'text': {'key': 'text', 'type': 'str'}, + 'highlights': {'key': 'highlights', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(CaptionResult, self).__init__(**kwargs) + self.additional_properties = kwargs.get('additional_properties', None) + self.text = None + self.highlights = None + + class FacetResult(msrest.serialization.Model): """A single bucket of a facet query result. Reports the number of documents with a field value falling within a particular range or having a particular value or interval. @@ -220,7 +304,7 @@ class FacetResult(msrest.serialization.Model): :param additional_properties: Unmatched properties from the message are deserialized to this collection. - :type additional_properties: dict[str, any] + :type additional_properties: dict[str, object] :ivar count: The approximate count of documents falling within the bucket described by this facet. :vartype count: long @@ -249,7 +333,7 @@ class IndexAction(msrest.serialization.Model): :param additional_properties: Unmatched properties from the message are deserialized to this collection. - :type additional_properties: dict[str, any] + :type additional_properties: dict[str, object] :param action_type: The operation to perform on a document in an indexing batch. Possible values include: "upload", "merge", "mergeOrUpload", "delete". :type action_type: str or ~azure.search.documents.models.IndexActionType @@ -406,6 +490,9 @@ class SearchDocumentsResult(msrest.serialization.Model): :ivar facets: The facet query results for the search operation, organized as a collection of buckets for each faceted field; null if the query did not include any facet expressions. :vartype facets: dict[str, list[~azure.search.documents.models.FacetResult]] + :ivar answers: The answers query results for the search operation; null if the answers query + parameter was not specified or set to 'none'. + :vartype answers: list[~azure.search.documents.models.AnswerResult] :ivar next_page_parameters: Continuation JSON payload returned when Azure Cognitive Search can't return all the requested results in a single Search response. You can use this JSON along with @odata.nextLink to formulate another POST Search request to get the next part of the @@ -424,6 +511,7 @@ class SearchDocumentsResult(msrest.serialization.Model): 'count': {'readonly': True}, 'coverage': {'readonly': True}, 'facets': {'readonly': True}, + 'answers': {'readonly': True}, 'next_page_parameters': {'readonly': True}, 'results': {'required': True, 'readonly': True}, 'next_link': {'readonly': True}, @@ -433,6 +521,7 @@ class SearchDocumentsResult(msrest.serialization.Model): 'count': {'key': '@odata\\.count', 'type': 'long'}, 'coverage': {'key': '@search\\.coverage', 'type': 'float'}, 'facets': {'key': '@search\\.facets', 'type': '{[FacetResult]}'}, + 'answers': {'key': '@search\\.answers', 'type': '[AnswerResult]'}, 'next_page_parameters': {'key': '@search\\.nextPageParameters', 'type': 'SearchRequest'}, 'results': {'key': 'value', 'type': '[SearchResult]'}, 'next_link': {'key': '@odata\\.nextLink', 'type': 'str'}, @@ -446,6 +535,7 @@ def __init__( self.count = None self.coverage = None self.facets = None + self.answers = None self.next_page_parameters = None self.results = None self.next_link = None @@ -524,7 +614,7 @@ class SearchOptions(msrest.serialization.Model): :type order_by: list[str] :param query_type: A value that specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax. Possible values include: - "simple", "full". + "simple", "full", "semantic". :type query_type: str or ~azure.search.documents.models.QueryType :param scoring_parameters: The list of parameter values to be used in scoring functions (for example, referencePointParameter) using the format name-values. For example, if the scoring @@ -538,6 +628,17 @@ class SearchOptions(msrest.serialization.Model): using fielded search (fieldName:searchExpression) in a full Lucene query, the field names of each fielded search expression take precedence over any field names listed in this parameter. :type search_fields: list[str] + :param query_language: The language of the query. Possible values include: "none", "en-us". + :type query_language: str or ~azure.search.documents.models.QueryLanguage + :param speller: Improve search recall by spell-correcting individual search query terms. + Possible values include: "none", "lexicon". + :type speller: str or ~azure.search.documents.models.Speller + :param 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-:code:``' option after the answers parameter value, such as + 'extractive|count-3'. Default count is 1. Possible values include: "none", "extractive". + :type answers: str or ~azure.search.documents.models.Answers :param search_mode: A value that specifies whether any or all of the search terms must be matched in order to count the document as a match. Possible values include: "any", "all". :type search_mode: str or ~azure.search.documents.models.SearchMode @@ -579,6 +680,9 @@ class SearchOptions(msrest.serialization.Model): 'scoring_parameters': {'key': 'ScoringParameters', 'type': '[str]'}, 'scoring_profile': {'key': 'scoringProfile', 'type': 'str'}, 'search_fields': {'key': 'searchFields', 'type': '[str]'}, + 'query_language': {'key': 'queryLanguage', 'type': 'str'}, + 'speller': {'key': 'speller', 'type': 'str'}, + 'answers': {'key': 'answers', 'type': 'str'}, 'search_mode': {'key': 'searchMode', 'type': 'str'}, 'scoring_statistics': {'key': 'scoringStatistics', 'type': 'str'}, 'session_id': {'key': 'sessionId', 'type': 'str'}, @@ -604,6 +708,9 @@ def __init__( self.scoring_parameters = kwargs.get('scoring_parameters', None) self.scoring_profile = kwargs.get('scoring_profile', None) self.search_fields = kwargs.get('search_fields', None) + self.query_language = kwargs.get('query_language', None) + self.speller = kwargs.get('speller', None) + self.answers = kwargs.get('answers', None) self.search_mode = kwargs.get('search_mode', None) self.scoring_statistics = kwargs.get('scoring_statistics', None) self.session_id = kwargs.get('session_id', None) @@ -648,7 +755,7 @@ class SearchRequest(msrest.serialization.Model): :type order_by: str :param query_type: A value that specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax. Possible values include: - "simple", "full". + "simple", "full", "semantic". :type query_type: str or ~azure.search.documents.models.QueryType :param scoring_statistics: A value that specifies whether we want to calculate scoring statistics (such as document frequency) globally for more consistent scoring, or locally, for @@ -682,6 +789,15 @@ class SearchRequest(msrest.serialization.Model): :param search_mode: A value that specifies whether any or all of the search terms must be matched in order to count the document as a match. Possible values include: "any", "all". :type search_mode: str or ~azure.search.documents.models.SearchMode + :param query_language: A value that specifies the language of the search query. Possible values + include: "none", "en-us". + :type query_language: str or ~azure.search.documents.models.QueryLanguage + :param speller: A value that specified the type of the speller to use to spell-correct + individual search query terms. Possible values include: "none", "lexicon". + :type speller: str or ~azure.search.documents.models.Speller + :param answers: A value that specifies whether answers should be returned as part of the search + response. Possible values include: "none", "extractive". + :type answers: str or ~azure.search.documents.models.Answers :param select: The comma-separated list of fields to retrieve. If unspecified, all fields marked as retrievable in the schema are included. :type select: str @@ -713,6 +829,9 @@ class SearchRequest(msrest.serialization.Model): 'search_text': {'key': 'search', 'type': 'str'}, 'search_fields': {'key': 'searchFields', 'type': 'str'}, 'search_mode': {'key': 'searchMode', 'type': 'str'}, + 'query_language': {'key': 'queryLanguage', 'type': 'str'}, + 'speller': {'key': 'speller', 'type': 'str'}, + 'answers': {'key': 'answers', 'type': 'str'}, 'select': {'key': 'select', 'type': 'str'}, 'skip': {'key': 'skip', 'type': 'int'}, 'top': {'key': 'top', 'type': 'int'}, @@ -739,6 +858,9 @@ def __init__( self.search_text = kwargs.get('search_text', None) self.search_fields = kwargs.get('search_fields', None) self.search_mode = kwargs.get('search_mode', None) + self.query_language = kwargs.get('query_language', None) + self.speller = kwargs.get('speller', None) + self.answers = kwargs.get('answers', None) self.select = kwargs.get('select', None) self.skip = kwargs.get('skip', None) self.top = kwargs.get('top', None) @@ -753,24 +875,36 @@ class SearchResult(msrest.serialization.Model): :param additional_properties: Unmatched properties from the message are deserialized to this collection. - :type additional_properties: dict[str, any] + :type additional_properties: dict[str, object] :ivar score: Required. The relevance score of the document compared to other documents returned by the query. :vartype score: float + :ivar reranker_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'. + :vartype reranker_score: float :ivar highlights: 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. :vartype highlights: dict[str, list[str]] + :ivar captions: 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'. + :vartype captions: list[~azure.search.documents.models.CaptionResult] """ _validation = { 'score': {'required': True, 'readonly': True}, + 'reranker_score': {'readonly': True}, 'highlights': {'readonly': True}, + 'captions': {'readonly': True}, } _attribute_map = { 'additional_properties': {'key': '', 'type': '{object}'}, 'score': {'key': '@search\\.score', 'type': 'float'}, + 'reranker_score': {'key': '@search\\.rerankerScore', 'type': 'float'}, 'highlights': {'key': '@search\\.highlights', 'type': '{[str]}'}, + 'captions': {'key': '@search\\.captions', 'type': '[CaptionResult]'}, } def __init__( @@ -780,7 +914,9 @@ def __init__( super(SearchResult, self).__init__(**kwargs) self.additional_properties = kwargs.get('additional_properties', None) self.score = None + self.reranker_score = None self.highlights = None + self.captions = None class SuggestDocumentsResult(msrest.serialization.Model): @@ -978,7 +1114,7 @@ class SuggestResult(msrest.serialization.Model): :param additional_properties: Unmatched properties from the message are deserialized to this collection. - :type additional_properties: dict[str, any] + :type additional_properties: dict[str, object] :ivar text: Required. The text of the suggestion result. :vartype text: str """ diff --git a/sdk/search/azure-search-documents/azure/search/documents/_generated/models/_models_py3.py b/sdk/search/azure-search-documents/azure/search/documents/_generated/models/_models_py3.py index 51cdd5da73ac..df3ac3250f96 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/_generated/models/_models_py3.py +++ b/sdk/search/azure-search-documents/azure/search/documents/_generated/models/_models_py3.py @@ -6,7 +6,7 @@ # Changes may cause incorrect behavior and will be lost if the code is regenerated. # -------------------------------------------------------------------------- -from typing import Any, Dict, List, Optional, Union +from typing import Dict, List, Optional, Union from azure.core.exceptions import HttpResponseError import msrest.serialization @@ -14,6 +14,55 @@ from ._search_client_enums import * +class AnswerResult(msrest.serialization.Model): + """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. + + Variables are only populated by the server, and will be ignored when sending a request. + + :param additional_properties: Unmatched properties from the message are deserialized to this + collection. + :type additional_properties: dict[str, object] + :ivar score: The score value represents how relevant the answer is to the the query relative to + other answers returned for the query. + :vartype score: float + :ivar key: The key of the document the answer was extracted from. + :vartype key: str + :ivar text: The text passage extracted from the document contents as the answer. + :vartype text: str + :ivar highlights: Same text passage as in the Text property with highlighted text phrases most + relevant to the query. + :vartype highlights: str + """ + + _validation = { + 'score': {'readonly': True}, + 'key': {'readonly': True}, + 'text': {'readonly': True}, + 'highlights': {'readonly': True}, + } + + _attribute_map = { + 'additional_properties': {'key': '', 'type': '{object}'}, + 'score': {'key': 'score', 'type': 'float'}, + 'key': {'key': 'key', 'type': 'str'}, + 'text': {'key': 'text', 'type': 'str'}, + 'highlights': {'key': 'highlights', 'type': 'str'}, + } + + def __init__( + self, + *, + additional_properties: Optional[Dict[str, object]] = None, + **kwargs + ): + super(AnswerResult, self).__init__(**kwargs) + self.additional_properties = additional_properties + self.score = None + self.key = None + self.text = None + self.highlights = None + + class AutocompleteItem(msrest.serialization.Model): """The result of Autocomplete requests. @@ -237,6 +286,45 @@ def __init__( self.results = None +class CaptionResult(msrest.serialization.Model): + """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'.. + + Variables are only populated by the server, and will be ignored when sending a request. + + :param additional_properties: Unmatched properties from the message are deserialized to this + collection. + :type additional_properties: dict[str, object] + :ivar text: A representative text passage extracted from the document most relevant to the + search query. + :vartype text: str + :ivar highlights: Same text passage as in the Text property with highlighted phrases most + relevant to the query. + :vartype highlights: str + """ + + _validation = { + 'text': {'readonly': True}, + 'highlights': {'readonly': True}, + } + + _attribute_map = { + 'additional_properties': {'key': '', 'type': '{object}'}, + 'text': {'key': 'text', 'type': 'str'}, + 'highlights': {'key': 'highlights', 'type': 'str'}, + } + + def __init__( + self, + *, + additional_properties: Optional[Dict[str, object]] = None, + **kwargs + ): + super(CaptionResult, self).__init__(**kwargs) + self.additional_properties = additional_properties + self.text = None + self.highlights = None + + class FacetResult(msrest.serialization.Model): """A single bucket of a facet query result. Reports the number of documents with a field value falling within a particular range or having a particular value or interval. @@ -244,7 +332,7 @@ class FacetResult(msrest.serialization.Model): :param additional_properties: Unmatched properties from the message are deserialized to this collection. - :type additional_properties: dict[str, any] + :type additional_properties: dict[str, object] :ivar count: The approximate count of documents falling within the bucket described by this facet. :vartype count: long @@ -262,7 +350,7 @@ class FacetResult(msrest.serialization.Model): def __init__( self, *, - additional_properties: Optional[Dict[str, Any]] = None, + additional_properties: Optional[Dict[str, object]] = None, **kwargs ): super(FacetResult, self).__init__(**kwargs) @@ -275,7 +363,7 @@ class IndexAction(msrest.serialization.Model): :param additional_properties: Unmatched properties from the message are deserialized to this collection. - :type additional_properties: dict[str, any] + :type additional_properties: dict[str, object] :param action_type: The operation to perform on a document in an indexing batch. Possible values include: "upload", "merge", "mergeOrUpload", "delete". :type action_type: str or ~azure.search.documents.models.IndexActionType @@ -289,7 +377,7 @@ class IndexAction(msrest.serialization.Model): def __init__( self, *, - additional_properties: Optional[Dict[str, Any]] = None, + additional_properties: Optional[Dict[str, object]] = None, action_type: Optional[Union[str, "IndexActionType"]] = None, **kwargs ): @@ -439,6 +527,9 @@ class SearchDocumentsResult(msrest.serialization.Model): :ivar facets: The facet query results for the search operation, organized as a collection of buckets for each faceted field; null if the query did not include any facet expressions. :vartype facets: dict[str, list[~azure.search.documents.models.FacetResult]] + :ivar answers: The answers query results for the search operation; null if the answers query + parameter was not specified or set to 'none'. + :vartype answers: list[~azure.search.documents.models.AnswerResult] :ivar next_page_parameters: Continuation JSON payload returned when Azure Cognitive Search can't return all the requested results in a single Search response. You can use this JSON along with @odata.nextLink to formulate another POST Search request to get the next part of the @@ -457,6 +548,7 @@ class SearchDocumentsResult(msrest.serialization.Model): 'count': {'readonly': True}, 'coverage': {'readonly': True}, 'facets': {'readonly': True}, + 'answers': {'readonly': True}, 'next_page_parameters': {'readonly': True}, 'results': {'required': True, 'readonly': True}, 'next_link': {'readonly': True}, @@ -466,6 +558,7 @@ class SearchDocumentsResult(msrest.serialization.Model): 'count': {'key': '@odata\\.count', 'type': 'long'}, 'coverage': {'key': '@search\\.coverage', 'type': 'float'}, 'facets': {'key': '@search\\.facets', 'type': '{[FacetResult]}'}, + 'answers': {'key': '@search\\.answers', 'type': '[AnswerResult]'}, 'next_page_parameters': {'key': '@search\\.nextPageParameters', 'type': 'SearchRequest'}, 'results': {'key': 'value', 'type': '[SearchResult]'}, 'next_link': {'key': '@odata\\.nextLink', 'type': 'str'}, @@ -479,6 +572,7 @@ def __init__( self.count = None self.coverage = None self.facets = None + self.answers = None self.next_page_parameters = None self.results = None self.next_link = None @@ -557,7 +651,7 @@ class SearchOptions(msrest.serialization.Model): :type order_by: list[str] :param query_type: A value that specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax. Possible values include: - "simple", "full". + "simple", "full", "semantic". :type query_type: str or ~azure.search.documents.models.QueryType :param scoring_parameters: The list of parameter values to be used in scoring functions (for example, referencePointParameter) using the format name-values. For example, if the scoring @@ -571,6 +665,17 @@ class SearchOptions(msrest.serialization.Model): using fielded search (fieldName:searchExpression) in a full Lucene query, the field names of each fielded search expression take precedence over any field names listed in this parameter. :type search_fields: list[str] + :param query_language: The language of the query. Possible values include: "none", "en-us". + :type query_language: str or ~azure.search.documents.models.QueryLanguage + :param speller: Improve search recall by spell-correcting individual search query terms. + Possible values include: "none", "lexicon". + :type speller: str or ~azure.search.documents.models.Speller + :param 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-:code:``' option after the answers parameter value, such as + 'extractive|count-3'. Default count is 1. Possible values include: "none", "extractive". + :type answers: str or ~azure.search.documents.models.Answers :param search_mode: A value that specifies whether any or all of the search terms must be matched in order to count the document as a match. Possible values include: "any", "all". :type search_mode: str or ~azure.search.documents.models.SearchMode @@ -612,6 +717,9 @@ class SearchOptions(msrest.serialization.Model): 'scoring_parameters': {'key': 'ScoringParameters', 'type': '[str]'}, 'scoring_profile': {'key': 'scoringProfile', 'type': 'str'}, 'search_fields': {'key': 'searchFields', 'type': '[str]'}, + 'query_language': {'key': 'queryLanguage', 'type': 'str'}, + 'speller': {'key': 'speller', 'type': 'str'}, + 'answers': {'key': 'answers', 'type': 'str'}, 'search_mode': {'key': 'searchMode', 'type': 'str'}, 'scoring_statistics': {'key': 'scoringStatistics', 'type': 'str'}, 'session_id': {'key': 'sessionId', 'type': 'str'}, @@ -635,6 +743,9 @@ def __init__( scoring_parameters: Optional[List[str]] = None, scoring_profile: Optional[str] = None, search_fields: Optional[List[str]] = None, + query_language: Optional[Union[str, "QueryLanguage"]] = None, + speller: Optional[Union[str, "Speller"]] = None, + answers: Optional[Union[str, "Answers"]] = None, search_mode: Optional[Union[str, "SearchMode"]] = None, scoring_statistics: Optional[Union[str, "ScoringStatistics"]] = None, session_id: Optional[str] = None, @@ -656,6 +767,9 @@ def __init__( self.scoring_parameters = scoring_parameters self.scoring_profile = scoring_profile self.search_fields = search_fields + self.query_language = query_language + self.speller = speller + self.answers = answers self.search_mode = search_mode self.scoring_statistics = scoring_statistics self.session_id = session_id @@ -700,7 +814,7 @@ class SearchRequest(msrest.serialization.Model): :type order_by: str :param query_type: A value that specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query uses the Lucene query syntax. Possible values include: - "simple", "full". + "simple", "full", "semantic". :type query_type: str or ~azure.search.documents.models.QueryType :param scoring_statistics: A value that specifies whether we want to calculate scoring statistics (such as document frequency) globally for more consistent scoring, or locally, for @@ -734,6 +848,15 @@ class SearchRequest(msrest.serialization.Model): :param search_mode: A value that specifies whether any or all of the search terms must be matched in order to count the document as a match. Possible values include: "any", "all". :type search_mode: str or ~azure.search.documents.models.SearchMode + :param query_language: A value that specifies the language of the search query. Possible values + include: "none", "en-us". + :type query_language: str or ~azure.search.documents.models.QueryLanguage + :param speller: A value that specified the type of the speller to use to spell-correct + individual search query terms. Possible values include: "none", "lexicon". + :type speller: str or ~azure.search.documents.models.Speller + :param answers: A value that specifies whether answers should be returned as part of the search + response. Possible values include: "none", "extractive". + :type answers: str or ~azure.search.documents.models.Answers :param select: The comma-separated list of fields to retrieve. If unspecified, all fields marked as retrievable in the schema are included. :type select: str @@ -765,6 +888,9 @@ class SearchRequest(msrest.serialization.Model): 'search_text': {'key': 'search', 'type': 'str'}, 'search_fields': {'key': 'searchFields', 'type': 'str'}, 'search_mode': {'key': 'searchMode', 'type': 'str'}, + 'query_language': {'key': 'queryLanguage', 'type': 'str'}, + 'speller': {'key': 'speller', 'type': 'str'}, + 'answers': {'key': 'answers', 'type': 'str'}, 'select': {'key': 'select', 'type': 'str'}, 'skip': {'key': 'skip', 'type': 'int'}, 'top': {'key': 'top', 'type': 'int'}, @@ -789,6 +915,9 @@ def __init__( search_text: Optional[str] = None, search_fields: Optional[str] = None, search_mode: Optional[Union[str, "SearchMode"]] = None, + query_language: Optional[Union[str, "QueryLanguage"]] = None, + speller: Optional[Union[str, "Speller"]] = None, + answers: Optional[Union[str, "Answers"]] = None, select: Optional[str] = None, skip: Optional[int] = None, top: Optional[int] = None, @@ -811,6 +940,9 @@ def __init__( self.search_text = search_text self.search_fields = search_fields self.search_mode = search_mode + self.query_language = query_language + self.speller = speller + self.answers = answers self.select = select self.skip = skip self.top = top @@ -825,36 +957,50 @@ class SearchResult(msrest.serialization.Model): :param additional_properties: Unmatched properties from the message are deserialized to this collection. - :type additional_properties: dict[str, any] + :type additional_properties: dict[str, object] :ivar score: Required. The relevance score of the document compared to other documents returned by the query. :vartype score: float + :ivar reranker_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'. + :vartype reranker_score: float :ivar highlights: 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. :vartype highlights: dict[str, list[str]] + :ivar captions: 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'. + :vartype captions: list[~azure.search.documents.models.CaptionResult] """ _validation = { 'score': {'required': True, 'readonly': True}, + 'reranker_score': {'readonly': True}, 'highlights': {'readonly': True}, + 'captions': {'readonly': True}, } _attribute_map = { 'additional_properties': {'key': '', 'type': '{object}'}, 'score': {'key': '@search\\.score', 'type': 'float'}, + 'reranker_score': {'key': '@search\\.rerankerScore', 'type': 'float'}, 'highlights': {'key': '@search\\.highlights', 'type': '{[str]}'}, + 'captions': {'key': '@search\\.captions', 'type': '[CaptionResult]'}, } def __init__( self, *, - additional_properties: Optional[Dict[str, Any]] = None, + additional_properties: Optional[Dict[str, object]] = None, **kwargs ): super(SearchResult, self).__init__(**kwargs) self.additional_properties = additional_properties self.score = None + self.reranker_score = None self.highlights = None + self.captions = None class SuggestDocumentsResult(msrest.serialization.Model): @@ -1074,7 +1220,7 @@ class SuggestResult(msrest.serialization.Model): :param additional_properties: Unmatched properties from the message are deserialized to this collection. - :type additional_properties: dict[str, any] + :type additional_properties: dict[str, object] :ivar text: Required. The text of the suggestion result. :vartype text: str """ @@ -1091,7 +1237,7 @@ class SuggestResult(msrest.serialization.Model): def __init__( self, *, - additional_properties: Optional[Dict[str, Any]] = None, + additional_properties: Optional[Dict[str, object]] = None, **kwargs ): super(SuggestResult, self).__init__(**kwargs) diff --git a/sdk/search/azure-search-documents/azure/search/documents/_generated/models/_search_client_enums.py b/sdk/search/azure-search-documents/azure/search/documents/_generated/models/_search_client_enums.py index 55dfae9b60ad..1f278e8c478c 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/_generated/models/_search_client_enums.py +++ b/sdk/search/azure-search-documents/azure/search/documents/_generated/models/_search_client_enums.py @@ -26,6 +26,20 @@ def __getattr__(cls, name): raise AttributeError(name) +class Answers(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """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-:code:``' option after the answers parameter value, such as 'extractive|count-3'. Default + count is 1. + """ + + #: Do not return answers for the query. + NONE = "none" + #: Extracts answer candidates from the contents of the documents returned in response to a query + #: expressed as a question in natural language. + EXTRACTIVE = "extractive" + class AutocompleteMode(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """Specifies the mode for Autocomplete. The default is 'oneTerm'. Use 'twoTerms' to get shingles and 'oneTermWithContext' to use the current context in producing autocomplete terms. @@ -62,9 +76,18 @@ class IndexActionType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): #: document, use merge instead and set the field explicitly to null. DELETE = "delete" +class QueryLanguage(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """The language of the query. + """ + + #: Query language not specified. + NONE = "none" + #: English. + EN_US = "en-us" + class QueryType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """Specifies the syntax of the search query. The default is 'simple'. Use 'full' if your query - uses the Lucene query syntax. + uses the Lucene query syntax and 'semantic' if query syntax is not needed. """ #: Uses the simple query syntax for searches. Search text is interpreted using a simple query @@ -75,6 +98,10 @@ class QueryType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): #: query language which allows field-specific and weighted searches, as well as other advanced #: features. FULL = "full" + #: Best suited for queries expressed in natural language as opposed to keywords. Improves + #: precision of search results by re-ranking the top search results using a ranking model trained + #: on the Web corpus. + SEMANTIC = "semantic" class ScoringStatistics(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """A value that specifies whether we want to calculate scoring statistics (such as document @@ -97,3 +124,13 @@ class SearchMode(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): ANY = "any" #: All of the search terms must be matched in order to count the document as a match. ALL = "all" + +class Speller(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Improve search recall by spell-correcting individual search query terms. + """ + + #: Speller not enabled. + NONE = "none" + #: Speller corrects individual query terms using a static lexicon for the language specified by + #: the queryLanguage parameter. + LEXICON = "lexicon" diff --git a/sdk/search/azure-search-documents/azure/search/documents/_generated/operations/_documents_operations.py b/sdk/search/azure-search-documents/azure/search/documents/_generated/operations/_documents_operations.py index 35e8da2f1ef8..e1b20475293a 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/_generated/operations/_documents_operations.py +++ b/sdk/search/azure-search-documents/azure/search/documents/_generated/operations/_documents_operations.py @@ -67,7 +67,7 @@ def count( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -145,6 +145,9 @@ def search_get( _scoring_parameters = None _scoring_profile = None _search_fields = None + _query_language = None + _speller = None + _answers = None _search_mode = None _scoring_statistics = None _session_id = None @@ -167,13 +170,16 @@ def search_get( _scoring_parameters = search_options.scoring_parameters _scoring_profile = search_options.scoring_profile _search_fields = search_options.search_fields + _query_language = search_options.query_language + _speller = search_options.speller + _answers = search_options.answers _search_mode = search_options.search_mode _scoring_statistics = search_options.scoring_statistics _session_id = search_options.session_id _select = search_options.select _skip = search_options.skip _top = search_options.top - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -212,6 +218,12 @@ def search_get( query_parameters['scoringProfile'] = self._serialize.query("scoring_profile", _scoring_profile, 'str') if _search_fields is not None: query_parameters['searchFields'] = self._serialize.query("search_fields", _search_fields, '[str]', div=',') + if _query_language is not None: + query_parameters['queryLanguage'] = self._serialize.query("query_language", _query_language, 'str') + if _speller is not None: + query_parameters['speller'] = self._serialize.query("speller", _speller, 'str') + if _answers is not None: + query_parameters['answers'] = self._serialize.query("answers", _answers, 'str') if _search_mode is not None: query_parameters['searchMode'] = self._serialize.query("search_mode", _search_mode, 'str') if _scoring_statistics is not None: @@ -276,7 +288,7 @@ def search_post( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -326,7 +338,7 @@ def get( request_options=None, # type: Optional["_models.RequestOptions"] **kwargs # type: Any ): - # type: (...) -> Any + # type: (...) -> object """Retrieves a document from the index. :param key: The key of the document to retrieve. @@ -337,11 +349,11 @@ def get( :param request_options: Parameter group. :type request_options: ~azure.search.documents.models.RequestOptions :keyword callable cls: A custom type or function that will be passed the direct response - :return: any, or the result of cls(response) - :rtype: any + :return: object, or the result of cls(response) + :rtype: object :raises: ~azure.core.exceptions.HttpResponseError """ - cls = kwargs.pop('cls', None) # type: ClsType[Any] + cls = kwargs.pop('cls', None) # type: ClsType[object] error_map = { 401: ClientAuthenticationError, 404: ResourceNotFoundError, 409: ResourceExistsError } @@ -350,7 +362,7 @@ def get( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -445,7 +457,7 @@ def suggest_get( _search_fields = suggest_options.search_fields _select = suggest_options.select _top = suggest_options.top - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -530,7 +542,7 @@ def suggest_post( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -602,7 +614,7 @@ def index( _x_ms_client_request_id = request_options.x_ms_client_request_id _batch = _models.IndexBatch(actions=actions) - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -700,7 +712,7 @@ def autocomplete_get( _top = autocomplete_options.top if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -783,7 +795,7 @@ def autocomplete_post( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/sdk/search/azure-search-documents/azure/search/documents/_paging.py b/sdk/search/azure-search-documents/azure/search/documents/_paging.py index 15968c006693..afdd9457a02b 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/_paging.py +++ b/sdk/search/azure-search-documents/azure/search/documents/_paging.py @@ -15,6 +15,7 @@ if TYPE_CHECKING: # pylint:disable=unused-import,ungrouped-imports from typing import Any, Union + from ..documents.models import AnswerResult def convert_search_result(result): @@ -83,6 +84,11 @@ def get_count(self): """ return self._first_iterator_instance().get_count() + def get_answers(self): + # type: () -> Union[list[AnswerResult], None] + """Return answers.""" + return self._first_iterator_instance().get_answers() + # The pylint error silenced below seems spurious, as the inner wrapper does, in # fact, become a method of the class when it is applied. def _ensure_response(f): @@ -143,3 +149,8 @@ def get_coverage(self): def get_count(self): self.continuation_token = None return self._response.count + + @_ensure_response + def get_answers(self): + self.continuation_token = None + return self._response.answers diff --git a/sdk/search/azure-search-documents/azure/search/documents/_search_client.py b/sdk/search/azure-search-documents/azure/search/documents/_search_client.py index 94912866ff01..757ab8cfbf3b 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/_search_client.py +++ b/sdk/search/azure-search-documents/azure/search/documents/_search_client.py @@ -183,6 +183,15 @@ def search(self, search_text, **kwargs): :keyword search_mode: A value that specifies whether any or all of the search terms must be matched in order to count the document as a match. Possible values include: 'any', 'all'. :paramtype search_mode: str or ~azure.search.documents.models.SearchMode + :keyword query_language: A value that specifies the language of the search query. Possible values + include: "none", "en-us". + :paramtype query_language: str or ~azure.search.documents.models.QueryLanguage + :keyword speller: A value that specified the type of the speller to use to spell-correct + individual search query terms. Possible values include: "none", "lexicon". + :paramtype speller: str or ~azure.search.documents.models.Speller + :keyword answers: A value that specifies whether answers should be returned as part of the search + response. Possible values include: "none", "extractive". + :paramtype answers: str or ~azure.search.documents.models.Answers :keyword list[str] select: The list of fields to retrieve. If unspecified, all fields marked as retrievable in the schema are included. :keyword int skip: The number of search results to skip. This value cannot be greater than 100,000. @@ -235,6 +244,9 @@ def search(self, search_text, **kwargs): search_fields = kwargs.pop("search_fields", None) search_fields_str = ",".join(search_fields) if search_fields else None search_mode = kwargs.pop("search_mode", None) + query_language = kwargs.pop("query_language", None) + speller = kwargs.pop("speller", None) + answers = kwargs.pop("answers", None) select = kwargs.pop("select", None) skip = kwargs.pop("skip", None) top = kwargs.pop("top", None) @@ -253,6 +265,9 @@ def search(self, search_text, **kwargs): scoring_profile=scoring_profile, search_fields=search_fields_str, search_mode=search_mode, + query_language=query_language, + speller=speller, + answers=answers, select=select if isinstance(select, six.string_types) else None, skip=skip, top=top diff --git a/sdk/search/azure-search-documents/azure/search/documents/_version.py b/sdk/search/azure-search-documents/azure/search/documents/_version.py index b31c586a9863..267f8dc8329e 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/_version.py +++ b/sdk/search/azure-search-documents/azure/search/documents/_version.py @@ -3,6 +3,6 @@ # Licensed under the MIT License. # ------------------------------------ -VERSION = "11.2.1" # type: str +VERSION = "11.3.0b1" # type: str SDK_MONIKER = "search-documents/{}".format(VERSION) # type: str diff --git a/sdk/search/azure-search-documents/azure/search/documents/aio/_paging.py b/sdk/search/azure-search-documents/azure/search/documents/aio/_paging.py index 9a086ccb2897..d2498f955d9f 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/aio/_paging.py +++ b/sdk/search/azure-search-documents/azure/search/documents/aio/_paging.py @@ -3,7 +3,7 @@ # Licensed under the MIT License. See License.txt in the project root for # license information. # -------------------------------------------------------------------------- -from typing import Union +from typing import Union, TYPE_CHECKING from azure.core.async_paging import AsyncItemPaged, AsyncPageIterator, ReturnType from .._generated.models import SearchRequest @@ -13,6 +13,10 @@ unpack_continuation_token, ) +if TYPE_CHECKING: + # pylint:disable=unused-import,ungrouped-imports + from ...documents.models import AnswerResult + class AsyncSearchItemPaged(AsyncItemPaged[ReturnType]): def __init__(self, *args, **kwargs): super(AsyncSearchItemPaged, self).__init__(*args, **kwargs) @@ -61,6 +65,11 @@ async def get_count(self): """ return await self._first_iterator_instance().get_count() + async def get_answers(self): + # type: () -> Union[list[AnswerResult], None] + """Return answers.""" + return await self._first_iterator_instance().get_answers() + # The pylint error silenced below seems spurious, as the inner wrapper does, in # fact, become a method of the class when it is applied. @@ -124,3 +133,8 @@ async def get_coverage(self): async def get_count(self): self.continuation_token = None return self._response.count + + @_ensure_response + async def get_answers(self): + self.continuation_token = None + return self._response.answers diff --git a/sdk/search/azure-search-documents/azure/search/documents/aio/_search_client_async.py b/sdk/search/azure-search-documents/azure/search/documents/aio/_search_client_async.py index 9cebd3dbc78a..d529b0b60f08 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/aio/_search_client_async.py +++ b/sdk/search/azure-search-documents/azure/search/documents/aio/_search_client_async.py @@ -157,6 +157,15 @@ async def search(self, search_text, **kwargs): :keyword search_mode: A value that specifies whether any or all of the search terms must be matched in order to count the document as a match. Possible values include: 'any', 'all'. :paramtype search_mode: str or ~azure.search.documents.models.SearchMode + :keyword query_language: A value that specifies the language of the search query. Possible values + include: "none", "en-us". + :paramtype query_language: str or ~azure.search.documents.models.QueryLanguage + :keyword speller: A value that specified the type of the speller to use to spell-correct + individual search query terms. Possible values include: "none", "lexicon". + :paramtype speller: str or ~azure.search.documents.models.Speller + :keyword answers: A value that specifies whether answers should be returned as part of the search + response. Possible values include: "none", "extractive". + :paramtype answers: str or ~azure.search.documents.models.Answers :keyword list[str] select: The list of fields to retrieve. If unspecified, all fields marked as retrievable in the schema are included. :keyword int skip: The number of search results to skip. This value cannot be greater than 100,000. @@ -209,6 +218,9 @@ async def search(self, search_text, **kwargs): search_fields = kwargs.pop("search_fields", None) search_fields_str = ",".join(search_fields) if search_fields else None search_mode = kwargs.pop("search_mode", None) + query_language = kwargs.pop("query_language", None) + speller = kwargs.pop("speller", None) + answers = kwargs.pop("answers", None) select = kwargs.pop("select", None) skip = kwargs.pop("skip", None) top = kwargs.pop("top", None) @@ -227,6 +239,9 @@ async def search(self, search_text, **kwargs): scoring_profile=scoring_profile, search_fields=search_fields_str, search_mode=search_mode, + query_language=query_language, + speller=speller, + answers=answers, select=select if isinstance(select, six.string_types) else None, skip=skip, top=top diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/_configuration.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/_configuration.py index 1719ffce1702..ceafaf49bb0d 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/_configuration.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/_configuration.py @@ -38,7 +38,7 @@ def __init__( super(SearchClientConfiguration, self).__init__(**kwargs) self.endpoint = endpoint - self.api_version = "2020-06-30" + self.api_version = "2020-06-30-Preview" kwargs.setdefault('sdk_moniker', 'search-documents/{}'.format(VERSION)) self._configure(**kwargs) diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/_configuration.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/_configuration.py index 8b5a47f57f16..b82610021e5f 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/_configuration.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/_configuration.py @@ -33,7 +33,7 @@ def __init__( super(SearchClientConfiguration, self).__init__(**kwargs) self.endpoint = endpoint - self.api_version = "2020-06-30" + self.api_version = "2020-06-30-Preview" kwargs.setdefault('sdk_moniker', 'search-documents/{}'.format(VERSION)) self._configure(**kwargs) diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_data_sources_operations.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_data_sources_operations.py index 2f015bb8bf39..3ef592ec0482 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_data_sources_operations.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_data_sources_operations.py @@ -46,7 +46,7 @@ async def create_or_update( if_match: Optional[str] = None, if_none_match: Optional[str] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SearchIndexerDataSource": """Creates a new datasource or updates a datasource if it already exists. @@ -77,7 +77,7 @@ async def create_or_update( if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id prefer = "return=representation" - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -135,7 +135,7 @@ async def delete( if_match: Optional[str] = None, if_none_match: Optional[str] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> None: """Deletes a datasource. @@ -163,7 +163,7 @@ async def delete( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -206,7 +206,7 @@ async def get( self, data_source_name: str, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SearchIndexerDataSource": """Retrieves a datasource definition. @@ -228,7 +228,7 @@ async def get( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -270,7 +270,7 @@ async def list( self, select: Optional[str] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.ListDataSourcesResult": """Lists all datasources available for a search service. @@ -294,7 +294,7 @@ async def list( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -337,7 +337,7 @@ async def create( self, data_source: "_models.SearchIndexerDataSource", request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SearchIndexerDataSource": """Creates a new datasource. @@ -359,7 +359,7 @@ async def create( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_indexers_operations.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_indexers_operations.py index f7dfdd284b56..fe9d684efe69 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_indexers_operations.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_indexers_operations.py @@ -43,7 +43,7 @@ async def reset( self, indexer_name: str, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> None: """Resets the change tracking state associated with an indexer. @@ -65,7 +65,7 @@ async def reset( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -104,7 +104,7 @@ async def run( self, indexer_name: str, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> None: """Runs an indexer on-demand. @@ -126,7 +126,7 @@ async def run( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -168,7 +168,7 @@ async def create_or_update( if_match: Optional[str] = None, if_none_match: Optional[str] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SearchIndexer": """Creates a new indexer or updates an indexer if it already exists. @@ -199,7 +199,7 @@ async def create_or_update( if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id prefer = "return=representation" - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -257,7 +257,7 @@ async def delete( if_match: Optional[str] = None, if_none_match: Optional[str] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> None: """Deletes an indexer. @@ -285,7 +285,7 @@ async def delete( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -328,7 +328,7 @@ async def get( self, indexer_name: str, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SearchIndexer": """Retrieves an indexer definition. @@ -350,7 +350,7 @@ async def get( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -392,7 +392,7 @@ async def list( self, select: Optional[str] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.ListIndexersResult": """Lists all indexers available for a search service. @@ -416,7 +416,7 @@ async def list( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -459,7 +459,7 @@ async def create( self, indexer: "_models.SearchIndexer", request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SearchIndexer": """Creates a new indexer. @@ -481,7 +481,7 @@ async def create( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -527,7 +527,7 @@ async def get_status( self, indexer_name: str, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SearchIndexerStatus": """Returns the current status and execution history of an indexer. @@ -549,7 +549,7 @@ async def get_status( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_indexes_operations.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_indexes_operations.py index 86e12fa3e2c7..c846ddf13c34 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_indexes_operations.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_indexes_operations.py @@ -44,7 +44,7 @@ async def create( self, index: "_models.SearchIndex", request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SearchIndex": """Creates a new search index. @@ -66,7 +66,7 @@ async def create( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -112,7 +112,7 @@ def list( self, select: Optional[str] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> AsyncIterable["_models.ListIndexesResult"]: """Lists all indexes available for a search service. @@ -136,7 +136,7 @@ def list( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" def prepare_request(next_link=None): @@ -203,7 +203,7 @@ async def create_or_update( if_match: Optional[str] = None, if_none_match: Optional[str] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SearchIndex": """Creates a new search index or updates an index if it already exists. @@ -240,7 +240,7 @@ async def create_or_update( if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id prefer = "return=representation" - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -300,7 +300,7 @@ async def delete( if_match: Optional[str] = None, if_none_match: Optional[str] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> None: """Deletes a search index and all the documents it contains. This operation is permanent, with no recovery option. Make sure you have a master copy of your index definition, data ingestion @@ -330,7 +330,7 @@ async def delete( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -373,7 +373,7 @@ async def get( self, index_name: str, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SearchIndex": """Retrieves an index definition. @@ -395,7 +395,7 @@ async def get( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -437,7 +437,7 @@ async def get_statistics( self, index_name: str, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.GetIndexStatisticsResult": """Returns statistics for the given index, including a document count and storage usage. @@ -459,7 +459,7 @@ async def get_statistics( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -502,7 +502,7 @@ async def analyze( index_name: str, request: "_models.AnalyzeRequest", request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.AnalyzeResult": """Shows how an analyzer breaks text into tokens. @@ -526,7 +526,7 @@ async def analyze( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_search_client_operations.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_search_client_operations.py index 55af1549c4a8..423fceea864a 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_search_client_operations.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_search_client_operations.py @@ -22,7 +22,7 @@ class SearchClientOperationsMixin: async def get_service_statistics( self, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.ServiceStatistics": """Gets service level statistics for a search service. @@ -42,7 +42,7 @@ async def get_service_statistics( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_skillsets_operations.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_skillsets_operations.py index 35b08acf5669..01a6fd2182e5 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_skillsets_operations.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_skillsets_operations.py @@ -46,7 +46,7 @@ async def create_or_update( if_match: Optional[str] = None, if_none_match: Optional[str] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SearchIndexerSkillset": """Creates a new skillset in a search service or updates the skillset if it already exists. @@ -78,7 +78,7 @@ async def create_or_update( if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id prefer = "return=representation" - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -136,7 +136,7 @@ async def delete( if_match: Optional[str] = None, if_none_match: Optional[str] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> None: """Deletes a skillset in a search service. @@ -164,7 +164,7 @@ async def delete( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -207,7 +207,7 @@ async def get( self, skillset_name: str, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SearchIndexerSkillset": """Retrieves a skillset in a search service. @@ -229,7 +229,7 @@ async def get( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -271,7 +271,7 @@ async def list( self, select: Optional[str] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.ListSkillsetsResult": """List all skillsets in a search service. @@ -295,7 +295,7 @@ async def list( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -338,7 +338,7 @@ async def create( self, skillset: "_models.SearchIndexerSkillset", request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SearchIndexerSkillset": """Creates a new skillset in a search service. @@ -360,7 +360,7 @@ async def create( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_synonym_maps_operations.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_synonym_maps_operations.py index caf01053f79d..f2c9e19c871b 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_synonym_maps_operations.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/aio/operations/_synonym_maps_operations.py @@ -46,7 +46,7 @@ async def create_or_update( if_match: Optional[str] = None, if_none_match: Optional[str] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SynonymMap": """Creates a new synonym map or updates a synonym map if it already exists. @@ -77,7 +77,7 @@ async def create_or_update( if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id prefer = "return=representation" - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -135,7 +135,7 @@ async def delete( if_match: Optional[str] = None, if_none_match: Optional[str] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> None: """Deletes a synonym map. @@ -163,7 +163,7 @@ async def delete( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -206,7 +206,7 @@ async def get( self, synonym_map_name: str, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SynonymMap": """Retrieves a synonym map definition. @@ -228,7 +228,7 @@ async def get( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -270,7 +270,7 @@ async def list( self, select: Optional[str] = None, request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.ListSynonymMapsResult": """Lists all synonym maps available for a search service. @@ -294,7 +294,7 @@ async def list( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -337,7 +337,7 @@ async def create( self, synonym_map: "_models.SynonymMap", request_options: Optional["_models.RequestOptions"] = None, - **kwargs: Any + **kwargs ) -> "_models.SynonymMap": """Creates a new synonym map. @@ -359,7 +359,7 @@ async def create( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/models/__init__.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/models/__init__.py index 87a2192b4d80..ee4fd9ac38e1 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/models/__init__.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/models/__init__.py @@ -26,6 +26,7 @@ from ._models_py3 import CustomEntity from ._models_py3 import CustomEntityAlias from ._models_py3 import CustomEntityLookupSkill + from ._models_py3 import CustomNormalizer from ._models_py3 import DataChangeDetectionPolicy from ._models_py3 import DataDeletionDetectionPolicy from ._models_py3 import DataSourceCredentials @@ -59,6 +60,7 @@ from ._models_py3 import LanguageDetectionSkill from ._models_py3 import LengthTokenFilter from ._models_py3 import LexicalAnalyzer + from ._models_py3 import LexicalNormalizer from ._models_py3 import LexicalTokenizer from ._models_py3 import LimitTokenFilter from ._models_py3 import ListDataSourcesResult @@ -159,6 +161,7 @@ from ._models import CustomEntity # type: ignore from ._models import CustomEntityAlias # type: ignore from ._models import CustomEntityLookupSkill # type: ignore + from ._models import CustomNormalizer # type: ignore from ._models import DataChangeDetectionPolicy # type: ignore from ._models import DataDeletionDetectionPolicy # type: ignore from ._models import DataSourceCredentials # type: ignore @@ -192,6 +195,7 @@ from ._models import LanguageDetectionSkill # type: ignore from ._models import LengthTokenFilter # type: ignore from ._models import LexicalAnalyzer # type: ignore + from ._models import LexicalNormalizer # type: ignore from ._models import LexicalTokenizer # type: ignore from ._models import LimitTokenFilter # type: ignore from ._models import ListDataSourcesResult # type: ignore @@ -291,6 +295,7 @@ IndexerStatus, KeyPhraseExtractionSkillLanguage, LexicalAnalyzerName, + LexicalNormalizerName, LexicalTokenizerName, MicrosoftStemmingTokenizerLanguage, MicrosoftTokenizerLanguage, @@ -333,6 +338,7 @@ 'CustomEntity', 'CustomEntityAlias', 'CustomEntityLookupSkill', + 'CustomNormalizer', 'DataChangeDetectionPolicy', 'DataDeletionDetectionPolicy', 'DataSourceCredentials', @@ -366,6 +372,7 @@ 'LanguageDetectionSkill', 'LengthTokenFilter', 'LexicalAnalyzer', + 'LexicalNormalizer', 'LexicalTokenizer', 'LimitTokenFilter', 'ListDataSourcesResult', @@ -463,6 +470,7 @@ 'IndexerStatus', 'KeyPhraseExtractionSkillLanguage', 'LexicalAnalyzerName', + 'LexicalNormalizerName', 'LexicalTokenizerName', 'MicrosoftStemmingTokenizerLanguage', 'MicrosoftTokenizerLanguage', diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/models/_models.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/models/_models.py index 0237fa37a0af..34aa60900a75 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/models/_models.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/models/_models.py @@ -1071,6 +1071,82 @@ def __init__( self.global_default_fuzzy_edit_distance = kwargs.get('global_default_fuzzy_edit_distance', None) +class LexicalNormalizer(msrest.serialization.Model): + """Base type for normalizers. + + All required parameters must be populated in order to send to Azure. + + :param odata_type: Required. Identifies the concrete type of the normalizer. + :type odata_type: str + :param name: Required. 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'. + :type name: str + """ + + _validation = { + 'odata_type': {'required': True}, + 'name': {'required': True}, + } + + _attribute_map = { + 'odata_type': {'key': '@odata\\.type', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + } + + def __init__( + self, + **kwargs + ): + super(LexicalNormalizer, self).__init__(**kwargs) + self.odata_type = kwargs['odata_type'] + self.name = kwargs['name'] + + +class CustomNormalizer(LexicalNormalizer): + """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. + + All required parameters must be populated in order to send to Azure. + + :param odata_type: Required. Identifies the concrete type of the normalizer. + :type odata_type: str + :param name: Required. 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'. + :type name: str + :param token_filters: 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. + :type token_filters: list[str or ~azure.search.documents.indexes.models.TokenFilterName] + :param char_filters: 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. + :type char_filters: list[str or ~azure.search.documents.indexes.models.CharFilterName] + """ + + _validation = { + 'odata_type': {'required': True}, + 'name': {'required': True}, + } + + _attribute_map = { + 'odata_type': {'key': '@odata\\.type', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'token_filters': {'key': 'tokenFilters', 'type': '[str]'}, + 'char_filters': {'key': 'charFilters', 'type': '[str]'}, + } + + def __init__( + self, + **kwargs + ): + super(CustomNormalizer, self).__init__(**kwargs) + self.token_filters = kwargs.get('token_filters', None) + self.char_filters = kwargs.get('char_filters', None) + + class DataChangeDetectionPolicy(msrest.serialization.Model): """Base type for data change detection policies. @@ -1403,7 +1479,7 @@ class DocumentExtractionSkill(SearchIndexerSkill): 'contentAndMetadata' if not defined. :type data_to_extract: str :param configuration: A dictionary of configurations for the skill. - :type configuration: dict[str, any] + :type configuration: dict[str, object] """ _validation = { @@ -1728,7 +1804,7 @@ class FieldMappingFunction(msrest.serialization.Model): :type name: str :param parameters: A dictionary of parameter name/value pairs to pass to the function. Each value must be of a primitive type. - :type parameters: dict[str, any] + :type parameters: dict[str, object] """ _validation = { @@ -2062,7 +2138,7 @@ class IndexingParametersConfiguration(msrest.serialization.Model): :param additional_properties: Unmatched properties from the message are deserialized to this collection. - :type additional_properties: dict[str, any] + :type additional_properties: dict[str, object] :param parsing_mode: Represents the parsing mode for indexing from an Azure blob data source. Possible values include: "default", "text", "delimitedText", "json", "jsonArray", "jsonLines". Default value: "default". @@ -3942,6 +4018,11 @@ class SearchField(msrest.serialization.Model): "standard.lucene", "standardasciifolding.lucene", "keyword", "pattern", "simple", "stop", "whitespace". :type index_analyzer: str or ~azure.search.documents.indexes.models.LexicalAnalyzerName + :param normalizer: 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. Possible values + include: "asciifolding", "elision", "lowercase", "standard", "uppercase". + :type normalizer: str or ~azure.search.documents.indexes.models.LexicalNormalizerName :param synonym_maps: A list of the names of synonym maps to associate with this field. This option can be used only with searchable fields. Currently only one synonym map per field is supported. Assigning a synonym map to a field ensures that query terms targeting that field are @@ -3970,6 +4051,7 @@ class SearchField(msrest.serialization.Model): 'analyzer': {'key': 'analyzer', 'type': 'str'}, 'search_analyzer': {'key': 'searchAnalyzer', 'type': 'str'}, 'index_analyzer': {'key': 'indexAnalyzer', 'type': 'str'}, + 'normalizer': {'key': 'normalizer', 'type': 'str'}, 'synonym_maps': {'key': 'synonymMaps', 'type': '[str]'}, 'fields': {'key': 'fields', 'type': '[SearchField]'}, } @@ -3990,6 +4072,7 @@ def __init__( self.analyzer = kwargs.get('analyzer', None) self.search_analyzer = kwargs.get('search_analyzer', None) self.index_analyzer = kwargs.get('index_analyzer', None) + self.normalizer = kwargs.get('normalizer', None) self.synonym_maps = kwargs.get('synonym_maps', None) self.fields = kwargs.get('fields', None) @@ -4021,6 +4104,8 @@ class SearchIndex(msrest.serialization.Model): :type token_filters: list[~azure.search.documents.indexes.models.TokenFilter] :param char_filters: The character filters for the index. :type char_filters: list[~azure.search.documents.indexes.models.CharFilter] + :param normalizers: The normalizers for the index. + :type normalizers: list[~azure.search.documents.indexes.models.LexicalNormalizer] :param encryption_key: A description of an encryption key that you create in Azure Key Vault. This key is used to provide an additional level of encryption-at-rest for your data when you want full assurance that no one, not even Microsoft, can decrypt your data in Azure Cognitive @@ -4055,6 +4140,7 @@ class SearchIndex(msrest.serialization.Model): 'tokenizers': {'key': 'tokenizers', 'type': '[LexicalTokenizer]'}, 'token_filters': {'key': 'tokenFilters', 'type': '[TokenFilter]'}, 'char_filters': {'key': 'charFilters', 'type': '[CharFilter]'}, + 'normalizers': {'key': 'normalizers', 'type': '[LexicalNormalizer]'}, 'encryption_key': {'key': 'encryptionKey', 'type': 'SearchResourceEncryptionKey'}, 'similarity': {'key': 'similarity', 'type': 'Similarity'}, 'e_tag': {'key': '@odata\\.etag', 'type': 'str'}, @@ -4075,6 +4161,7 @@ def __init__( self.tokenizers = kwargs.get('tokenizers', None) self.token_filters = kwargs.get('token_filters', None) self.char_filters = kwargs.get('char_filters', None) + self.normalizers = kwargs.get('normalizers', None) self.encryption_key = kwargs.get('encryption_key', None) self.similarity = kwargs.get('similarity', None) self.e_tag = kwargs.get('e_tag', None) diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/models/_models_py3.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/models/_models_py3.py index 6ed9c832e82f..e4b4a5696024 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/models/_models_py3.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/models/_models_py3.py @@ -7,7 +7,7 @@ # -------------------------------------------------------------------------- import datetime -from typing import Any, Dict, List, Optional, Union +from typing import Dict, List, Optional, Union from azure.core.exceptions import HttpResponseError import msrest.serialization @@ -1168,6 +1168,90 @@ def __init__( self.global_default_fuzzy_edit_distance = global_default_fuzzy_edit_distance +class LexicalNormalizer(msrest.serialization.Model): + """Base type for normalizers. + + All required parameters must be populated in order to send to Azure. + + :param odata_type: Required. Identifies the concrete type of the normalizer. + :type odata_type: str + :param name: Required. 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'. + :type name: str + """ + + _validation = { + 'odata_type': {'required': True}, + 'name': {'required': True}, + } + + _attribute_map = { + 'odata_type': {'key': '@odata\\.type', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + } + + def __init__( + self, + *, + odata_type: str, + name: str, + **kwargs + ): + super(LexicalNormalizer, self).__init__(**kwargs) + self.odata_type = odata_type + self.name = name + + +class CustomNormalizer(LexicalNormalizer): + """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. + + All required parameters must be populated in order to send to Azure. + + :param odata_type: Required. Identifies the concrete type of the normalizer. + :type odata_type: str + :param name: Required. 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'. + :type name: str + :param token_filters: 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. + :type token_filters: list[str or ~azure.search.documents.indexes.models.TokenFilterName] + :param char_filters: 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. + :type char_filters: list[str or ~azure.search.documents.indexes.models.CharFilterName] + """ + + _validation = { + 'odata_type': {'required': True}, + 'name': {'required': True}, + } + + _attribute_map = { + 'odata_type': {'key': '@odata\\.type', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'token_filters': {'key': 'tokenFilters', 'type': '[str]'}, + 'char_filters': {'key': 'charFilters', 'type': '[str]'}, + } + + def __init__( + self, + *, + odata_type: str, + name: str, + token_filters: Optional[List[Union[str, "TokenFilterName"]]] = None, + char_filters: Optional[List[Union[str, "CharFilterName"]]] = None, + **kwargs + ): + super(CustomNormalizer, self).__init__(odata_type=odata_type, name=name, **kwargs) + self.token_filters = token_filters + self.char_filters = char_filters + + class DataChangeDetectionPolicy(msrest.serialization.Model): """Base type for data change detection policies. @@ -1523,7 +1607,7 @@ class DocumentExtractionSkill(SearchIndexerSkill): 'contentAndMetadata' if not defined. :type data_to_extract: str :param configuration: A dictionary of configurations for the skill. - :type configuration: dict[str, any] + :type configuration: dict[str, object] """ _validation = { @@ -1554,7 +1638,7 @@ def __init__( context: Optional[str] = None, parsing_mode: Optional[str] = None, data_to_extract: Optional[str] = None, - configuration: Optional[Dict[str, Any]] = None, + configuration: Optional[Dict[str, object]] = None, **kwargs ): super(DocumentExtractionSkill, self).__init__(name=name, description=description, context=context, inputs=inputs, outputs=outputs, **kwargs) @@ -1889,7 +1973,7 @@ class FieldMappingFunction(msrest.serialization.Model): :type name: str :param parameters: A dictionary of parameter name/value pairs to pass to the function. Each value must be of a primitive type. - :type parameters: dict[str, any] + :type parameters: dict[str, object] """ _validation = { @@ -1905,7 +1989,7 @@ def __init__( self, *, name: str, - parameters: Optional[Dict[str, Any]] = None, + parameters: Optional[Dict[str, object]] = None, **kwargs ): super(FieldMappingFunction, self).__init__(**kwargs) @@ -2249,7 +2333,7 @@ class IndexingParametersConfiguration(msrest.serialization.Model): :param additional_properties: Unmatched properties from the message are deserialized to this collection. - :type additional_properties: dict[str, any] + :type additional_properties: dict[str, object] :param parsing_mode: Represents the parsing mode for indexing from an Azure blob data source. Possible values include: "default", "text", "delimitedText", "json", "jsonArray", "jsonLines". Default value: "default". @@ -2338,7 +2422,7 @@ class IndexingParametersConfiguration(msrest.serialization.Model): def __init__( self, *, - additional_properties: Optional[Dict[str, Any]] = None, + additional_properties: Optional[Dict[str, object]] = None, parsing_mode: Optional[Union[str, "BlobIndexerParsingMode"]] = "default", excluded_file_name_extensions: Optional[str] = "", indexed_file_name_extensions: Optional[str] = "", @@ -4302,6 +4386,11 @@ class SearchField(msrest.serialization.Model): "standard.lucene", "standardasciifolding.lucene", "keyword", "pattern", "simple", "stop", "whitespace". :type index_analyzer: str or ~azure.search.documents.indexes.models.LexicalAnalyzerName + :param normalizer: 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. Possible values + include: "asciifolding", "elision", "lowercase", "standard", "uppercase". + :type normalizer: str or ~azure.search.documents.indexes.models.LexicalNormalizerName :param synonym_maps: A list of the names of synonym maps to associate with this field. This option can be used only with searchable fields. Currently only one synonym map per field is supported. Assigning a synonym map to a field ensures that query terms targeting that field are @@ -4330,6 +4419,7 @@ class SearchField(msrest.serialization.Model): 'analyzer': {'key': 'analyzer', 'type': 'str'}, 'search_analyzer': {'key': 'searchAnalyzer', 'type': 'str'}, 'index_analyzer': {'key': 'indexAnalyzer', 'type': 'str'}, + 'normalizer': {'key': 'normalizer', 'type': 'str'}, 'synonym_maps': {'key': 'synonymMaps', 'type': '[str]'}, 'fields': {'key': 'fields', 'type': '[SearchField]'}, } @@ -4348,6 +4438,7 @@ def __init__( analyzer: Optional[Union[str, "LexicalAnalyzerName"]] = None, search_analyzer: Optional[Union[str, "LexicalAnalyzerName"]] = None, index_analyzer: Optional[Union[str, "LexicalAnalyzerName"]] = None, + normalizer: Optional[Union[str, "LexicalNormalizerName"]] = None, synonym_maps: Optional[List[str]] = None, fields: Optional[List["SearchField"]] = None, **kwargs @@ -4364,6 +4455,7 @@ def __init__( self.analyzer = analyzer self.search_analyzer = search_analyzer self.index_analyzer = index_analyzer + self.normalizer = normalizer self.synonym_maps = synonym_maps self.fields = fields @@ -4395,6 +4487,8 @@ class SearchIndex(msrest.serialization.Model): :type token_filters: list[~azure.search.documents.indexes.models.TokenFilter] :param char_filters: The character filters for the index. :type char_filters: list[~azure.search.documents.indexes.models.CharFilter] + :param normalizers: The normalizers for the index. + :type normalizers: list[~azure.search.documents.indexes.models.LexicalNormalizer] :param encryption_key: A description of an encryption key that you create in Azure Key Vault. This key is used to provide an additional level of encryption-at-rest for your data when you want full assurance that no one, not even Microsoft, can decrypt your data in Azure Cognitive @@ -4429,6 +4523,7 @@ class SearchIndex(msrest.serialization.Model): 'tokenizers': {'key': 'tokenizers', 'type': '[LexicalTokenizer]'}, 'token_filters': {'key': 'tokenFilters', 'type': '[TokenFilter]'}, 'char_filters': {'key': 'charFilters', 'type': '[CharFilter]'}, + 'normalizers': {'key': 'normalizers', 'type': '[LexicalNormalizer]'}, 'encryption_key': {'key': 'encryptionKey', 'type': 'SearchResourceEncryptionKey'}, 'similarity': {'key': 'similarity', 'type': 'Similarity'}, 'e_tag': {'key': '@odata\\.etag', 'type': 'str'}, @@ -4447,6 +4542,7 @@ def __init__( tokenizers: Optional[List["LexicalTokenizer"]] = None, token_filters: Optional[List["TokenFilter"]] = None, char_filters: Optional[List["CharFilter"]] = None, + normalizers: Optional[List["LexicalNormalizer"]] = None, encryption_key: Optional["SearchResourceEncryptionKey"] = None, similarity: Optional["Similarity"] = None, e_tag: Optional[str] = None, @@ -4463,6 +4559,7 @@ def __init__( self.tokenizers = tokenizers self.token_filters = token_filters self.char_filters = char_filters + self.normalizers = normalizers self.encryption_key = encryption_key self.similarity = similarity self.e_tag = e_tag diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/models/_search_client_enums.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/models/_search_client_enums.py index 2b86a352a5c2..5a0623d6b893 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/models/_search_client_enums.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/models/_search_client_enums.py @@ -512,6 +512,28 @@ class LexicalAnalyzerName(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): #: http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/WhitespaceAnalyzer.html. WHITESPACE = "whitespace" +class LexicalNormalizerName(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): + """Defines the names of all text normalizers supported by Azure Cognitive Search. + """ + + #: Converts alphabetic, numeric, and symbolic Unicode characters which are not in the first 127 + #: ASCII characters (the "Basic Latin" Unicode block) into their ASCII equivalents, if such + #: equivalents exist. See + #: http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/ASCIIFoldingFilter.html. + ASCII_FOLDING = "asciifolding" + #: Removes elisions. For example, "l'avion" (the plane) will be converted to "avion" (plane). See + #: http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/util/ElisionFilter.html. + ELISION = "elision" + #: Normalizes token text to lowercase. See + #: https://lucene.apache.org/core/6_6_1/analyzers-common/org/apache/lucene/analysis/core/LowerCaseFilter.html. + LOWERCASE = "lowercase" + #: Standard normalizer, which consists of lowercase and asciifolding. See + #: http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/reverse/ReverseStringFilter.html. + STANDARD = "standard" + #: Normalizes token text to uppercase. See + #: https://lucene.apache.org/core/6_6_1/analyzers-common/org/apache/lucene/analysis/core/UpperCaseFilter.html. + UPPERCASE = "uppercase" + class LexicalTokenizerName(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): """Defines the names of all tokenizers supported by Azure Cognitive Search. """ @@ -1422,7 +1444,7 @@ class TokenFilterName(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): #: http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/LimitTokenCountFilter.html. LIMIT = "limit" #: Normalizes token text to lower case. See - #: http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/LowerCaseFilter.htm. + #: https://lucene.apache.org/core/6_6_1/analyzers-common/org/apache/lucene/analysis/core/LowerCaseFilter.html. LOWERCASE = "lowercase" #: Generates n-grams of the given size(s). See #: http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/ngram/NGramTokenFilter.html. @@ -1471,7 +1493,7 @@ class TokenFilterName(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)): #: http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/miscellaneous/RemoveDuplicatesTokenFilter.html. UNIQUE = "unique" #: Normalizes token text to upper case. See - #: http://lucene.apache.org/core/4_10_3/analyzers-common/org/apache/lucene/analysis/core/UpperCaseFilter.html. + #: https://lucene.apache.org/core/6_6_1/analyzers-common/org/apache/lucene/analysis/core/UpperCaseFilter.html. UPPERCASE = "uppercase" #: Splits words into subwords and performs optional transformations on subword groups. WORD_DELIMITER = "word_delimiter" diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_data_sources_operations.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_data_sources_operations.py index 86ac7b0213f3..d6849b78362b 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_data_sources_operations.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_data_sources_operations.py @@ -82,7 +82,7 @@ def create_or_update( if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id prefer = "return=representation" - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -169,7 +169,7 @@ def delete( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -235,7 +235,7 @@ def get( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -302,7 +302,7 @@ def list( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -368,7 +368,7 @@ def create( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_indexers_operations.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_indexers_operations.py index e053d0deef27..df4f6cfc1cbb 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_indexers_operations.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_indexers_operations.py @@ -70,7 +70,7 @@ def reset( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -132,7 +132,7 @@ def run( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -206,7 +206,7 @@ def create_or_update( if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id prefer = "return=representation" - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -293,7 +293,7 @@ def delete( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -359,7 +359,7 @@ def get( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -426,7 +426,7 @@ def list( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -492,7 +492,7 @@ def create( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -561,7 +561,7 @@ def get_status( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_indexes_operations.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_indexes_operations.py index 354fd984c37d..93fadc4d54dc 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_indexes_operations.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_indexes_operations.py @@ -71,7 +71,7 @@ def create( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -142,7 +142,7 @@ def list( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" def prepare_request(next_link=None): @@ -247,7 +247,7 @@ def create_or_update( if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id prefer = "return=representation" - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -338,7 +338,7 @@ def delete( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -404,7 +404,7 @@ def get( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -469,7 +469,7 @@ def get_statistics( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -537,7 +537,7 @@ def analyze( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_search_client_operations.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_search_client_operations.py index a625d0596ee7..e21606a555bb 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_search_client_operations.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_search_client_operations.py @@ -47,7 +47,7 @@ def get_service_statistics( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_skillsets_operations.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_skillsets_operations.py index 4efe94c80003..3282482cd608 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_skillsets_operations.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_skillsets_operations.py @@ -83,7 +83,7 @@ def create_or_update( if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id prefer = "return=representation" - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -170,7 +170,7 @@ def delete( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -236,7 +236,7 @@ def get( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -303,7 +303,7 @@ def list( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -369,7 +369,7 @@ def create( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_synonym_maps_operations.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_synonym_maps_operations.py index 57d2f9a77d1f..0ab69ae9af4b 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_synonym_maps_operations.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/_generated/operations/_synonym_maps_operations.py @@ -82,7 +82,7 @@ def create_or_update( if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id prefer = "return=representation" - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" @@ -169,7 +169,7 @@ def delete( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -235,7 +235,7 @@ def get( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -302,7 +302,7 @@ def list( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" accept = "application/json" # Construct URL @@ -368,7 +368,7 @@ def create( _x_ms_client_request_id = None if request_options is not None: _x_ms_client_request_id = request_options.x_ms_client_request_id - api_version = "2020-06-30" + api_version = "2020-06-30-Preview" content_type = kwargs.pop("content_type", "application/json") accept = "application/json" diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/models/__init__.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/models/__init__.py index 6183bada5e3a..a59dd856003f 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/models/__init__.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/models/__init__.py @@ -46,6 +46,7 @@ ConditionalSkill, CorsOptions, CustomEntityLookupSkill, + CustomNormalizer, DictionaryDecompounderTokenFilter, DistanceScoringFunction, DistanceScoringParameters, @@ -78,6 +79,7 @@ LanguageDetectionSkill, LengthTokenFilter, LexicalAnalyzer, + LexicalNormalizer, LexicalTokenizer, LimitTokenFilter, LuceneStandardAnalyzer, @@ -180,6 +182,7 @@ "CorsOptions", "CustomAnalyzer", "CustomEntityLookupSkill", + "CustomNormalizer", "DictionaryDecompounderTokenFilter", "DistanceScoringFunction", "DistanceScoringParameters", @@ -212,6 +215,7 @@ "LanguageDetectionSkill", "LengthTokenFilter", "LexicalAnalyzer", + "LexicalNormalizer", "LexicalTokenizer", "LimitTokenFilter", "LuceneStandardAnalyzer", diff --git a/sdk/search/azure-search-documents/azure/search/documents/indexes/models/_index.py b/sdk/search/azure-search-documents/azure/search/documents/indexes/models/_index.py index 6fd65167e488..bb3422a8974b 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/indexes/models/_index.py +++ b/sdk/search/azure-search-documents/azure/search/documents/indexes/models/_index.py @@ -152,6 +152,11 @@ class SearchField(msrest.serialization.Model): "standard.lucene", "standardasciifolding.lucene", "keyword", "pattern", "simple", "stop", "whitespace". :type index_analyzer_name: str or ~azure.search.documents.indexes.models.LexicalAnalyzerName + :param normalizer: 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. Possible values + include: "asciifolding", "elision", "lowercase", "standard", "uppercase". + :type normalizer: str or ~azure.search.documents.indexes.models.LexicalNormalizerName :param synonym_map_names: A list of the names of synonym maps to associate with this field. This option can be used only with searchable fields. Currently only one synonym map per field is supported. Assigning a synonym map to a field ensures that query terms targeting that field are @@ -180,6 +185,7 @@ class SearchField(msrest.serialization.Model): 'analyzer_name': {'key': 'analyzerName', 'type': 'str'}, 'search_analyzer_name': {'key': 'searchAnalyzerName', 'type': 'str'}, 'index_analyzer_name': {'key': 'indexAnalyzerName', 'type': 'str'}, + 'normalizer': {'key': 'normalizer', 'type': 'str'}, 'synonym_map_names': {'key': 'synonymMapNames', 'type': '[str]'}, 'fields': {'key': 'fields', 'type': '[SearchField]'}, } @@ -200,6 +206,7 @@ def __init__( self.analyzer_name = kwargs.get('analyzer_name', None) self.search_analyzer_name = kwargs.get('search_analyzer_name', None) self.index_analyzer_name = kwargs.get('index_analyzer_name', None) + self.normalizer = kwargs.get('normalizer', None) self.synonym_map_names = kwargs.get('synonym_map_names', None) self.fields = kwargs.get('fields', None) @@ -219,6 +226,7 @@ def _to_generated(self): analyzer=self.analyzer_name, search_analyzer=self.search_analyzer_name, index_analyzer=self.index_analyzer_name, + normalizer=self.normalizer, synonym_maps=self.synonym_map_names, fields=fields ) @@ -231,6 +239,10 @@ def _from_generated(cls, search_field): fields = [SearchField._from_generated(x) for x in search_field.fields] \ if search_field.fields else None hidden = not search_field.retrievable if search_field.retrievable is not None else None + try: + normalizer = search_field.normalizer + except AttributeError: + normalizer = None return cls( name=search_field.name, type=search_field.type, @@ -243,6 +255,7 @@ def _from_generated(cls, search_field): analyzer_name=search_field.analyzer, search_analyzer_name=search_field.search_analyzer, index_analyzer_name=search_field.index_analyzer, + normalizer=normalizer, synonym_map_names=search_field.synonym_maps, fields=fields ) @@ -490,6 +503,9 @@ class SearchIndex(msrest.serialization.Model): :type token_filters: list[~azure.search.documents.indexes.models.TokenFilter] :param char_filters: The character filters for the index. :type char_filters: list[~azure.search.documents.indexes.models.CharFilter] + :param normalizers: The normalizers for the index. + :type normalizers: + list[~azure.search.documents.indexes.models.LexicalNormalizer] :param encryption_key: A description of an encryption key that you create in Azure Key Vault. This key is used to provide an additional level of encryption-at-rest for your data when you want full assurance that no one, not even Microsoft, can decrypt your data in Azure Cognitive @@ -524,6 +540,7 @@ class SearchIndex(msrest.serialization.Model): 'tokenizers': {'key': 'tokenizers', 'type': '[LexicalTokenizer]'}, 'token_filters': {'key': 'tokenFilters', 'type': '[TokenFilter]'}, 'char_filters': {'key': 'charFilters', 'type': '[CharFilter]'}, + 'normalizers': {'key': 'normalizers', 'type': '[LexicalNormalizer]'}, 'encryption_key': {'key': 'encryptionKey', 'type': 'SearchResourceEncryptionKey'}, 'similarity': {'key': 'similarity', 'type': 'SimilarityAlgorithm'}, 'e_tag': {'key': '@odata\\.etag', 'type': 'str'}, @@ -544,6 +561,7 @@ def __init__( self.tokenizers = kwargs.get('tokenizers', None) self.token_filters = kwargs.get('token_filters', None) self.char_filters = kwargs.get('char_filters', None) + self.normalizers = kwargs.get('normalizers', None) self.encryption_key = kwargs.get('encryption_key', None) self.similarity = kwargs.get('similarity', None) self.e_tag = kwargs.get('e_tag', None) @@ -580,6 +598,7 @@ def _to_generated(self): tokenizers=tokenizers, token_filters=self.token_filters, char_filters=self.char_filters, + normalizers=self.normalizers, # pylint:disable=protected-access encryption_key=self.encryption_key._to_generated() if self.encryption_key else None, similarity=self.similarity, @@ -610,6 +629,10 @@ def _from_generated(cls, search_index): fields = [SearchField._from_generated(x) for x in search_index.fields] # pylint:disable=protected-access else: fields = None + try: + normalizers = search_index.normalizers + except AttributeError: + normalizers = None return cls( name=search_index.name, fields=fields, @@ -621,6 +644,7 @@ def _from_generated(cls, search_index): tokenizers=tokenizers, token_filters=search_index.token_filters, char_filters=search_index.char_filters, + normalizers=normalizers, # pylint:disable=protected-access encryption_key=SearchResourceEncryptionKey._from_generated(search_index.encryption_key), similarity=search_index.similarity, @@ -644,6 +668,7 @@ def pack_search_field(search_field): analyzer_name = search_field.get("analyzer_name") search_analyzer_name = search_field.get("search_analyzer_name") index_analyzer_name = search_field.get("index_analyzer_name") + normalizer = search_field.get("normalizer") synonym_map_names = search_field.get("synonym_map_names") fields = search_field.get("fields") fields = [pack_search_field(x) for x in fields] if fields else None @@ -659,6 +684,7 @@ def pack_search_field(search_field): analyzer=analyzer_name, search_analyzer=search_analyzer_name, index_analyzer=index_analyzer_name, + normalizer=normalizer, synonym_maps=synonym_map_names, fields=fields ) diff --git a/sdk/search/azure-search-documents/azure/search/documents/models/__init__.py b/sdk/search/azure-search-documents/azure/search/documents/models/__init__.py index 5f4b9263a3b4..d478e39fd33b 100644 --- a/sdk/search/azure-search-documents/azure/search/documents/models/__init__.py +++ b/sdk/search/azure-search-documents/azure/search/documents/models/__init__.py @@ -25,20 +25,28 @@ # -------------------------------------------------------------------------- from .._generated.models import ( + Answers, + AnswerResult, AutocompleteMode, IndexAction, IndexingResult, + QueryLanguage, QueryType, SearchMode, + Speller, ) from .._search_client import odata __all__ = ( + "Answers", + "AnswerResult", "AutocompleteMode", "IndexAction", "IndexingResult", "odata", + "QueryLanguage", "QueryType", "SearchMode", + "Speller", ) diff --git a/sdk/search/azure-search-documents/samples/README.md b/sdk/search/azure-search-documents/samples/README.md index 6fb06227516d..fbb76ef60c7d 100644 --- a/sdk/search/azure-search-documents/samples/README.md +++ b/sdk/search/azure-search-documents/samples/README.md @@ -42,6 +42,8 @@ Then for common search index operations: * General workflow of indexer, datasource and index: [sample_indexer_datasource_skillset.py](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/search/azure-search-documents/samples/sample_indexer_datasource_skillset.py) +* Semantic search: [sample_semantic_search.py](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/search/azure-search-documents/samples/sample_semantic_search.py) + ## Prerequisites * Python 2.7, or 3.5 or later is required to use this package (3.5 or later if using asyncio) diff --git a/sdk/search/azure-search-documents/samples/async_samples/sample_semantic_search_async.py b/sdk/search/azure-search-documents/samples/async_samples/sample_semantic_search_async.py new file mode 100644 index 000000000000..5b14f39da581 --- /dev/null +++ b/sdk/search/azure-search-documents/samples/async_samples/sample_semantic_search_async.py @@ -0,0 +1,67 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_semantic_search_async.py +DESCRIPTION: + This sample demonstrates how to use semantic search. +USAGE: + python sample_semantic_search_async.py + + Set the environment variables with your own values before running the sample: + 1) AZURE_SEARCH_SERVICE_ENDPOINT - the endpoint of your Azure Cognitive Search service + 2) AZURE_SEARCH_INDEX_NAME - the name of your search index (e.g. "hotels-sample-index") + 3) AZURE_SEARCH_API_KEY - your search API key +""" + +import os +import asyncio + +async def speller(): + # [START speller_async] + from azure.core.credentials import AzureKeyCredential + from azure.search.documents.aio import SearchClient + + endpoint = os.getenv("AZURE_SEARCH_SERVICE_ENDPOINT") + index_name = os.getenv("AZURE_SEARCH_INDEX_NAME") + api_key = os.getenv("AZURE_SEARCH_API_KEY") + + credential = AzureKeyCredential(api_key) + client = SearchClient(endpoint=endpoint, + index_name=index_name, + credential=credential) + results = await client.search(search_text="luxucy", query_language="en-us", speller="lexicon") + + async for result in results: + print("{}\n{}\n)".format(result["HotelId"], result["HotelName"])) + # [END speller_async] + +async def semantic_ranking(): + # [START semantic_ranking_async] + from azure.core.credentials import AzureKeyCredential + from azure.search.documents import SearchClient + + endpoint = os.getenv("AZURE_SEARCH_SERVICE_ENDPOINT") + index_name = os.getenv("AZURE_SEARCH_INDEX_NAME") + api_key = os.getenv("AZURE_SEARCH_API_KEY") + + credential = AzureKeyCredential(api_key) + client = SearchClient(endpoint=endpoint, + index_name=index_name, + credential=credential) + results = list(client.search(search_text="luxury", query_type="semantic", query_language="en-us")) + + for result in results: + print("{}\n{}\n)".format(result["HotelId"], result["HotelName"])) + # [END semantic_ranking_async] + + +if __name__ == '__main__': + loop = asyncio.get_event_loop() + loop.run_until_complete(speller()) + loop.run_until_complete(semantic_ranking()) diff --git a/sdk/search/azure-search-documents/samples/sample_semantic_search.py b/sdk/search/azure-search-documents/samples/sample_semantic_search.py new file mode 100644 index 000000000000..6713b25fa4d3 --- /dev/null +++ b/sdk/search/azure-search-documents/samples/sample_semantic_search.py @@ -0,0 +1,64 @@ +# coding: utf-8 + +# ------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# -------------------------------------------------------------------------- + +""" +FILE: sample_semantic_search.py +DESCRIPTION: + This sample demonstrates how to use semantic search. +USAGE: + python sample_semantic_search.py + + Set the environment variables with your own values before running the sample: + 1) AZURE_SEARCH_SERVICE_ENDPOINT - the endpoint of your Azure Cognitive Search service + 2) AZURE_SEARCH_INDEX_NAME - the name of your search index (e.g. "hotels-sample-index") + 3) AZURE_SEARCH_API_KEY - your search API key +""" + +import os + +def speller(): + # [START speller] + from azure.core.credentials import AzureKeyCredential + from azure.search.documents import SearchClient + + endpoint = os.getenv("AZURE_SEARCH_SERVICE_ENDPOINT") + index_name = os.getenv("AZURE_SEARCH_INDEX_NAME") + api_key = os.getenv("AZURE_SEARCH_API_KEY") + + credential = AzureKeyCredential(api_key) + client = SearchClient(endpoint=endpoint, + index_name=index_name, + credential=credential) + results = list(client.search(search_text="luxucy", query_language="en-us", speller="lexicon")) + + for result in results: + print("{}\n{}\n)".format(result["HotelId"], result["HotelName"])) + # [END speller] + +def semantic_ranking(): + # [START semantic_ranking] + from azure.core.credentials import AzureKeyCredential + from azure.search.documents import SearchClient + + endpoint = os.getenv("AZURE_SEARCH_SERVICE_ENDPOINT") + index_name = os.getenv("AZURE_SEARCH_INDEX_NAME") + api_key = os.getenv("AZURE_SEARCH_API_KEY") + + credential = AzureKeyCredential(api_key) + client = SearchClient(endpoint=endpoint, + index_name=index_name, + credential=credential) + results = list(client.search(search_text="luxury", query_type="semantic", query_language="en-us")) + + for result in results: + print("{}\n{}\n)".format(result["HotelId"], result["HotelName"])) + # [END semantic_ranking] + +if __name__ == '__main__': + speller() + semantic_ranking() diff --git a/sdk/search/azure-search-documents/setup.py b/sdk/search/azure-search-documents/setup.py index 9ca6b55582b5..78839b38d10b 100644 --- a/sdk/search/azure-search-documents/setup.py +++ b/sdk/search/azure-search-documents/setup.py @@ -57,7 +57,7 @@ author_email='ascl@microsoft.com', url='https://github.com/Azure/azure-sdk-for-python/tree/master/sdk/search/azure-search-documents', classifiers=[ - "Development Status :: 5 - Production/Stable", + "Development Status :: 4 - Beta", 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_basic_live_async.test_async_get_document_count.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_basic_live_async.test_async_get_document_count.yaml index a185e43e8e3a..1199c2cee6ab 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_basic_live_async.test_async_get_document_count.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_basic_live_async.test_async_get_document_count.yaml @@ -5,9 +5,9 @@ interactions: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search6dc91ab1.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://search6dc91ab1.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -19,17 +19,17 @@ interactions: content-encoding: gzip content-length: '127' content-type: text/plain - date: Thu, 20 May 2021 17:15:03 GMT - elapsed-time: '134' + date: Sat, 08 May 2021 06:20:16 GMT + elapsed-time: '152' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: e9bbbd54-b98e-11eb-b8e4-a0481ca055a9 + request-id: 746a9a78-afc5-11eb-ad79-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search6dc91ab1.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + url: https://search6dc91ab1.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_basic_live_async.test_get_document.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_basic_live_async.test_get_document.yaml index 1f5df8690922..9e77f3ef48a1 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_basic_live_async.test_get_document.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_basic_live_async.test_get_document.yaml @@ -5,9 +5,9 @@ interactions: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('1')?api-version=2020-06-30 + uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('1')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -30,28 +30,28 @@ interactions: content-encoding: gzip content-length: '748' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:15:21 GMT - elapsed-time: '171' + date: Sat, 08 May 2021 06:20:35 GMT + elapsed-time: '221' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: f500377e-b98e-11eb-9758-a0481ca055a9 + request-id: 7fd556e4-afc5-11eb-85da-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('1')?api-version=2020-06-30 + url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('1')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('2')?api-version=2020-06-30 + uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('2')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -68,28 +68,28 @@ interactions: content-encoding: gzip content-length: '449' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:15:21 GMT - elapsed-time: '7' + date: Sat, 08 May 2021 06:20:35 GMT + elapsed-time: '4' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: f53a66c0-b98e-11eb-a61f-a0481ca055a9 + request-id: 80218695-afc5-11eb-940a-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('2')?api-version=2020-06-30 + url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('2')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30 + uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -106,28 +106,28 @@ interactions: content-encoding: gzip content-length: '438' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:15:21 GMT - elapsed-time: '6' + date: Sat, 08 May 2021 06:20:36 GMT + elapsed-time: '7' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: f5449999-b98e-11eb-a493-a0481ca055a9 + request-id: 802df1e2-afc5-11eb-a875-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30 + url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -144,28 +144,28 @@ interactions: content-encoding: gzip content-length: '422' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:15:21 GMT - elapsed-time: '6' + date: Sat, 08 May 2021 06:20:36 GMT + elapsed-time: '10' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: f54da25d-b98e-11eb-948f-a0481ca055a9 + request-id: 803a37de-afc5-11eb-aef3-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('5')?api-version=2020-06-30 + uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('5')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -182,28 +182,28 @@ interactions: content-encoding: gzip content-length: '424' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:15:21 GMT - elapsed-time: '6' + date: Sat, 08 May 2021 06:20:36 GMT + elapsed-time: '9' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: f555bef8-b98e-11eb-94a1-a0481ca055a9 + request-id: 804739bc-afc5-11eb-9fad-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('5')?api-version=2020-06-30 + url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('5')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('6')?api-version=2020-06-30 + uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('6')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -218,28 +218,28 @@ interactions: content-encoding: gzip content-length: '301' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:15:21 GMT - elapsed-time: '5' + date: Sat, 08 May 2021 06:20:36 GMT + elapsed-time: '6' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: f55f5b79-b98e-11eb-8aff-a0481ca055a9 + request-id: 80530768-afc5-11eb-8e7d-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('6')?api-version=2020-06-30 + url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('6')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('7')?api-version=2020-06-30 + uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('7')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -255,28 +255,28 @@ interactions: content-encoding: gzip content-length: '357' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:15:21 GMT - elapsed-time: '5' + date: Sat, 08 May 2021 06:20:36 GMT + elapsed-time: '4' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: f56a0a2c-b98e-11eb-9c38-a0481ca055a9 + request-id: 805e67b5-afc5-11eb-b81e-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('7')?api-version=2020-06-30 + url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('7')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('8')?api-version=2020-06-30 + uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('8')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -293,28 +293,28 @@ interactions: content-encoding: gzip content-length: '411' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:15:21 GMT - elapsed-time: '6' + date: Sat, 08 May 2021 06:20:36 GMT + elapsed-time: '4' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: f57362c0-b98e-11eb-b485-a0481ca055a9 + request-id: 806a7eb8-afc5-11eb-9655-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('8')?api-version=2020-06-30 + url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('8')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('9')?api-version=2020-06-30 + uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('9')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -342,28 +342,28 @@ interactions: content-encoding: gzip content-length: '1061' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:15:21 GMT - elapsed-time: '14' + date: Sat, 08 May 2021 06:20:36 GMT + elapsed-time: '12' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: f57cd7d5-b98e-11eb-a3a7-a0481ca055a9 + request-id: 80770099-afc5-11eb-baed-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('9')?api-version=2020-06-30 + url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('9')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('10')?api-version=2020-06-30 + uri: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('10')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -389,17 +389,17 @@ interactions: content-encoding: gzip content-length: '938' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:15:21 GMT - elapsed-time: '7' + date: Sat, 08 May 2021 06:20:36 GMT + elapsed-time: '8' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: f588f22d-b98e-11eb-9dea-a0481ca055a9 + request-id: 8083cc7d-afc5-11eb-ac90-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('10')?api-version=2020-06-30 + url: https://search496815ac.search.windows.net/indexes('drgqefsg')/docs('10')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_basic_live_async.test_get_document_missing.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_basic_live_async.test_get_document_missing.yaml index aadc5ce5c9fc..e9ecd83851f0 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_basic_live_async.test_get_document_missing.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_basic_live_async.test_get_document_missing.yaml @@ -5,23 +5,23 @@ interactions: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search5c91905.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://search5c91905.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Thu, 20 May 2021 17:15:42 GMT - elapsed-time: '69' + date: Sat, 08 May 2021 06:20:54 GMT + elapsed-time: '75' expires: '-1' pragma: no-cache - request-id: 012789ee-b98f-11eb-b992-a0481ca055a9 + request-id: 8ad08564-afc5-11eb-8d4a-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 404 message: Not Found - url: https://search5c91905.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + url: https://search5c91905.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_delete_documents_existing.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_delete_documents_existing.yaml index 6411cca44aa0..c3413c76f89e 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_delete_documents_existing.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_delete_documents_existing.yaml @@ -5,52 +5,52 @@ interactions: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns6z8537u+f3ZmP5c3xVLGfVVTNe5u3d322Rtxne/nH6 - MH+XN3d/t3zZFu31RyMDlhpcEMzf96OddwdPH+4+ebJ3+uzT/fvPHtz/fT+iVstskdPXs/riF+Xn - zQV9MsvPs3XZvp5WdbG8eFlX50VJTZbrshx9dF7k5az56NH3frF5c161eXk2oxfb6xU+OJ0txq9b - vEufCc7ZBBDOs7LJAaJs81o+aus1fVLn1Dy/9D9qqrr1/z7PpjQQ74O3+bX5lYd+vMzK6x/ktUFU - Ou5+mnX+bq6X1fJ68UW2wpi+/0tG4bBe4PebByZofOi4lDw8MP39Z2Vks7yZ1sWqLaoljeP9x6a4 - bRyctvlZGN1H+XJcrqf5EhNzq0E+q6nl/+eGeV7fZpjTrM0vqhri/v4jlE82DlD+9sYnH3zw8OTv - 4XGRzmoIfx3TSVWW+RRzueWGd4e+l258zN5zfDqGH/4AV1n9lgZxtpyW61ne0Z5PqqrMM0indCOY - KTrvOUL5+4c/wGZRYYDHZVld5f8/HF+ZNe2rfFldZuDLpySHNBxvjPjkTbHIvzw/b/KWvpMOBUdF - 7P8jQ61piKxOvOGdLdt7e/SRwBZ0FIf/j4yqrEh50tTRILxxfZ5XF3W2ml+/rIrlz9K0KZif9RFm - s1mdN54exQBPqsWqzN+9wSeEVc+da9o6z9vj2Kuid+kzQUwGo6PzSKJD2kgTbfNzQJSpOMfvPyz5 - ZOOo5G9vUPLBz/qYmpaUDTnql8Vyiln9/9XgptV62f7/z8NZVTRr5Uk1+//JhPljq6tq4emOjvvm - aSD4cH0V5Pnu9L0CwZu3pI0ObiNxtI1HHf3kg8nzowDFHyYP6+uMTj55z8FJiw8em/w9PKhJ1uSv - SOXSILyBPa3WQIJeZPCCkaLx/5mR5bMvmSc98cXY/n8waU2Z56vmBNaExuGN7ZtzZc1bP/yx/ZCC - LfPWD32A/z/NB9B/9GGQaMUXdthLgpo34Nfz9ZIHfHxxUecXErjQvK8X9J1kjaUH007AsG3lJGYQ - 71Bkk9erqpS/6asCHdEXSt9ZQb6JuJKTivyUjx7tjXcINuEyXyIs0M4W2cWyaCl/YT6wLz76xR/V - +Xle5/QHR1Ivs5rQoG4J/OKacDGwaeRP7Vu7OzvjnV9CeCBlDZBCISJQY9QSf0xEW19cEGXymj6h - gSq9OH8tU/EFPCuKgXgGqJOz5Xnx7ousnc7pD7Sq1vU0fwYCAYRvj+lbl/1lBARKzp3Rn231Nl8W - nb+fMafpJ8SEdfABEaK+Zui/F1hJB1EsijKrEZEQwTRfr3Pw418U07pqqvN2fPyDdZ2PX/Owxk++ - 2Lv/2r1HrLlrwE3kl1/yS/4f7KABIlMYAAA= + MH+XN3d/t3zZFu31RyMDlhpcEMzf96OddwdPH+7unj588OnBp08f3r/3+35ErZbZIqevZ/XFL8rP + mwv6ZJafZ+uyfT2t6mJ58bKuzouSmizXZTn66LzIy1nz0aPv/WLz5rxq8/JsRi+21yt8cDpbjF+3 + eJc+E5yzCSCcZ2WTA0TZ5rV81NZr+qTOqXl+6X/UVHXr/32eTWkg3gdv82vzKw/9eJmV1z/Ia4Oo + dNz9NOv8vazqRVYW3ifN9bJaXi++yFYY5fd/ySgc6Av8fvNQBbEPHakSjIeqv/+QxjrLm2ldrNqi + WtLI3n+0iu3G4Wqbn4XxfpQvx+V6mi8xVV9z2M9qevf/cwM/r7/ewKdZm19UNdTG+49ZPtk4ZPnb + G7F88MEDlr/fZ6SkDRsakY7ypCrLfIr53nIDvkPfS8c+ru85Yh3V/xuGvMrqtzSss+W0XM/yjqZ+ + UlVlnkHKpWPBVRF8zzHL3/9vGHKzqDDk47KsrvKfFyMus6Z9lS+rywzc/JTkmQbojRqfvCkW+Zfn + 503e0neCgmCtqP5/dvA1DZoVlTfgs2V7b48+kt4EQcXq/7PjLCtS1DS9NCxvpJ/n1UWdrebXL6ti + +bM0tQrm52DM2WxW542nszHkk2qxKvN3b/AJ4dlzSpu2zvP2OPaq6Hj6TFCV4el4PSLpIDdSSdv8 + v4JMU3H633+g8snGccrf3jDlg5+DUTYtqTEKSS6L5RQz///z4U6r9bL9+eCVrSqa2fKkmv3/dlL9 + 0dZVtfC0UscJ9XQbPNG+cvOiFPpegeDNW1JLh7uRXNrGo5d+8sEE+1Fw9r4D54F+nfHKJ+85XGnx + waOVv99nmJOsyV+ReqdheUN9Wq2BFr3IHQqOitj/h8eaz75kTvbUAEb7/8uJbco8XzUnsGU0Mm+0 + 35yLbt76f8Nof0ihp3nr/wVD/nmTU6H/6MMgMY4vLCGW1E/egMvP10smwfHFRZ1fSNBGvLFe0HeS + 5ZceTDsBw7aeU8xBrEdRXV6vqlL+pq8KdERfKMVnBXlP4hBPKvKkPnq0N94h2ITLfIkASDtbZBfL + oqUckPnAvvjoF39U5+d5ndMfHEW+zGpCg7ol8ItrwsXAppE/tW/t7uyMd34J4YElBoAUChGBGqPe + +GMi2vrigiiT1/QJDVTpxesNMjlfwPejaI/nhDo5W54X777I2umc/kCral1P82cgEED43gB963Lz + jIBAybkz+tNNrH7QVm/zZffvZ8yM+gnxaR18QJSpr7m73wvcpqMqFkWZ1Qi9iIK64KKT8uNfFNO6 + aqrzdnz8g3Wdj1/zOMdPvti7/9q9R9y7a8BN5Jdf8kv+H1sbiWkUGgAA headers: cache-control: no-cache content-encoding: gzip - content-length: '1166' + content-length: '1182' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:16:02 GMT - elapsed-time: '27' - etag: W/"0x8D91BB2EF645F75" + date: Sat, 08 May 2021 06:21:10 GMT + elapsed-time: '800' + etag: W/"0x8D911E97686D953" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 0d0ee3b1-b98f-11eb-865a-a0481ca055a9 + request-id: 9402cced-afc5-11eb-8444-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + url: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview - request: body: '{"value": [{"hotelId": "3", "@search.action": "delete"}, {"hotelId": "4", "@search.action": "delete"}]}' @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -77,28 +77,28 @@ interactions: content-encoding: gzip content-length: '190' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:16:02 GMT - elapsed-time: '98' + date: Sat, 08 May 2021 06:21:11 GMT + elapsed-time: '23' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 0d30f62e-b98f-11eb-9629-a0481ca055a9 + request-id: 94a6791a-afc5-11eb-8e75-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + url: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -110,67 +110,67 @@ interactions: content-encoding: gzip content-length: '126' content-type: text/plain - date: Thu, 20 May 2021 17:16:04 GMT - elapsed-time: '5' + date: Sat, 08 May 2021 06:21:14 GMT + elapsed-time: '80' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 0f30db10-b98f-11eb-83c6-a0481ca055a9 + request-id: 969c123f-afc5-11eb-a4ff-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + url: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30 + uri: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Thu, 20 May 2021 17:16:04 GMT - elapsed-time: '21' + date: Sat, 08 May 2021 06:21:14 GMT + elapsed-time: '4' expires: '-1' pragma: no-cache - request-id: 0f537b9a-b98f-11eb-ae7a-a0481ca055a9 + request-id: 96cea53d-afc5-11eb-a003-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 404 message: Not Found - url: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30 + url: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Thu, 20 May 2021 17:16:05 GMT + date: Sat, 08 May 2021 06:21:14 GMT elapsed-time: '3' expires: '-1' pragma: no-cache - request-id: 0f5d6e0e-b98f-11eb-a8e5-a0481ca055a9 + request-id: 96dabeab-afc5-11eb-a290-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 404 message: Not Found - url: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + url: https://searchaf051f3d.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_delete_documents_missing.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_delete_documents_missing.yaml index 73a29dd7aa1c..a832cfda1737 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_delete_documents_missing.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_delete_documents_missing.yaml @@ -5,52 +5,52 @@ interactions: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4PzifZbj6djuXP8VWxnFVXzXiZt3d/t0XeZnj7x+nD - /F3e3P3d8mVbtNcfjQxYanBBMH/fj3beHTx9uPvkyd6zJ7tPPz198OT3/YhaLbNFTl/P6otflJ83 - F/TJLD/P1mX7elrVxfLiZV2dFyU1Wa7LcvTReZGXs+ajR9/7xebNedXm5dmMXmyvV/jgdLYYv27x - Ln0mOGcTQDjPyiYHiLLNa/mordf0SZ1T8/zS/6ip6tb/+zyb0kC8D97m1+ZXHvrxMiuvf5DXBlHp - uPtp1vm7uV5Wy+vFF9kKY/r+LxmFw3qB328emKDxoeNS8vDA9PeflZHN8mZaF6u2qJY0jvcfm+K2 - cXDa5mdhdB/ly3G5nuZLTMytBvmsppb/nxvmeX2bYU6zNr+oaoj7+49QPtk4QPnbG5988MHDk7+H - x0U6qyH8dUwnVVnmU8zllhveHfpeuvExe8/x6Rh++ANcZfVbGsTZclquZ3lHez6pqjLPIJ3SjWCm - 6LznCOXvH/4Am0WFAR6XZXWV//9wfGXWtK/yZXWZgS+fkhzScLwx4pM3xSL/8vy8yVv6TjoUHBWx - /48MtaYhsjrxhne2bO/t0UcCW9BRHP4/MqqyIuVJU0eD8Mb1eV5d1Nlqfv2yKpY/S9OmYH7WR5jN - ZnXeeHoUAzypFqsyf/cGnxBWPXeuaes8b49jr4repc8EMRmMjs4jiQ5pI020zc8BUabiHL//sOST - jaOSv71ByQc/62NqWlI25KhfFsspZvX/V4ObVutl+/8/D2dV0ayVJ9Xs/ycT5o+trqqFpzs67pun - geDD9VWQ57vT9woEb96SNjq4jcTRNh519JMPJs+PAhR/mDysrzM6+eQ9ByctPnhs8vfwoCZZk78i - lUuD8Ab2tFoDCXqRwQtGisb/Z0aWz75knvTEF2P7/8GkNWWer5oTWBMahze2b86VNW/98Mf2Qwq2 - zFs/9AH+/zQfQP/Rh0GiFV/YYS8Jat6AX8/XSx7w8cVFnV9I4ELzvl7Qd5I1lh5MOwHDtpWTmEG8 - Q5FNXq+qUv6mrwp0RF8ofWcF+SbiSk4q8lM+erQ33iHYhMt8ibBAO1tkF8uipfyF+cC++OgXf1Tn - 53md0x8cSb3MakKDuiXwi2vCxcCmkT+1b+3u7Ix3fgnhgZQ1QAqFiECNUUv8MRFtfXFBlMlr+oQG - qvTi/LVMxRfwrCgG4hmgTs6W58W7L7J2Oqc/0Kpa19P8GQgEEL49pm9d9pcRECg5d0Z/ttXbfFl0 - /n7GnKafEBPWwQdEiPqaof9eYCUdRLEoyqxGREIE03y9zsGPf1FM66qpztvx8Q/WdT5+zcMaP/li - 7/5r9x6x5q4BN5Fffskv+X8AjMCaw1MYAAA= + /F3e3P3d8mVbtNcfjQxYanBBMH/fj3beHTx9uLt7+vDg3u6Dp8fHJ7/vR9RqmS1y+npWX/yi/Ly5 + oE9m+Xm2LtvX06oulhcv6+q8KKnJcl2Wo4/Oi7ycNR89+t4vNm/OqzYvz2b0Ynu9wgens8X4dYt3 + 6TPBOZsAwnlWNjlAlG1ey0dtvaZP6pya55f+R01Vt/7f59mUBuJ98Da/Nr/y0I+XWXn9g7w2iErH + 3U+zzt/Lql5kZeF90lwvq+X14otshVF+/5eMwoG+wO83D1UQ+9CRKsF4qPr7D2mss7yZ1sWqLaol + jez9R6vYbhyutvlZGO9H+XJcrqf5ElP1NYf9rKZ3/z838PP66w18mrX5RVVDbbz/mOWTjUOWv70R + ywcfPGD5+31GStqwoRHpKE+qssynmO8tN+A79L107OP6niPWUf2/YcirrH5LwzpbTsv1LO9o6idV + VeYZpFw6FlwVwfccs/z9/4YhN4sKQz4uy+oq/3kx4jJr2lf5srrMwM1PSZ5pgN6o8cmbYpF/eX7e + 5C19JygI1orq/2cHX9OgWVF5Az5btvf26CPpTRBUrP4/O86yIkVN00vD8kb6eV5d1Nlqfv2yKpY/ + S1OrYH4OxpzNZnXeeDobQz6pFqsyf/cGnxCePae0aes8b49jr4qOp88EVRmejtcjkg5yI5W0zf8r + yDQVp//9ByqfbByn/O0NUz74ORhl05Iao5DkslhOMfP/Px/utFov258PXtmqopktT6rZ/28n1R9t + XVULTyt1nFBPt8ET7Ss3L0qh7xUI3rwltXS4G8mlbTx66ScfTLAfBWfvO3Ae6NcZr3zynsOVFh88 + Wvn7fYY5yZr8Fal3GpY31KfVGmjRi9yh4KiI/X94rPnsS+ZkTw1gtP+/nNimzPNVcwJbRiPzRvvN + uejmrf83jPaHFHqat/5fMOSfNzkV+o8+DBLj+MISYkn95A24/Hy9ZBIcX1zU+YUEbcQb6wV9J1l+ + 6cG0EzBs6znFHMR6FNXl9aoq5W/6qkBH9IVSfFaQ9yQO8aQiT+qjR3vjHYJNuMyXCIC0s0V2sSxa + ygGZD+yLj37xR3V+ntc5/cFR5MusJjSoWwK/uCZcDGwa+VP71u7OznjnlxAeWGIASKEQEagx6o0/ + JqKtLy6IMnlNn9BAlV683iCT8wV8P4r2eE6ok7PlefHui6ydzukPtKrW9TR/BgIBhO8N0LcuN88I + CJScO6M/3cTqB231Nl92/37GzKifEJ/WwQdEmfqau/u9wG06qmJRlFmN0IsoqAsuOik//kUxraum + Om/Hxz9Y1/n4NY9z/OSLvfuv3XvEvbsG3ER++SW/5P8Bd/RZ3hQaAAA= headers: cache-control: no-cache content-encoding: gzip - content-length: '1166' + content-length: '1181' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:16:21 GMT - elapsed-time: '54' - etag: W/"0x8D91BB2FB1D6E7B" + date: Sat, 08 May 2021 06:21:31 GMT + elapsed-time: '30' + etag: W/"0x8D911E98317DAAC" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 18c951d8-b98f-11eb-aafa-a0481ca055a9 + request-id: a0962c27-afc5-11eb-b740-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + url: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview - request: body: '{"value": [{"hotelId": "1000", "@search.action": "delete"}, {"hotelId": "4", "@search.action": "delete"}]}' @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -77,28 +77,28 @@ interactions: content-encoding: gzip content-length: '193' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:16:21 GMT - elapsed-time: '97' + date: Sat, 08 May 2021 06:21:30 GMT + elapsed-time: '85' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 18eb0a5c-b98f-11eb-88bf-a0481ca055a9 + request-id: a0c3c5f4-afc5-11eb-926d-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + url: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -110,67 +110,67 @@ interactions: content-encoding: gzip content-length: '126' content-type: text/plain - date: Thu, 20 May 2021 17:16:25 GMT - elapsed-time: '21' + date: Sat, 08 May 2021 06:21:34 GMT + elapsed-time: '4' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 1aecd095-b98f-11eb-bab0-a0481ca055a9 + request-id: a2c3b69b-afc5-11eb-ae9b-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + url: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Thu, 20 May 2021 17:16:25 GMT - elapsed-time: '4' + date: Sat, 08 May 2021 06:21:34 GMT + elapsed-time: '3' expires: '-1' pragma: no-cache - request-id: 1b0f3326-b98f-11eb-aaaf-a0481ca055a9 + request-id: a2e99527-afc5-11eb-bdef-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 404 message: Not Found - url: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + url: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Thu, 20 May 2021 17:16:25 GMT + date: Sat, 08 May 2021 06:21:34 GMT elapsed-time: '3' expires: '-1' pragma: no-cache - request-id: 1b168623-b98f-11eb-8f79-a0481ca055a9 + request-id: a2f3ede6-afc5-11eb-b4e9-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 404 message: Not Found - url: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + url: https://search8fba1ecc.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_merge_documents_existing.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_merge_documents_existing.yaml index cdeedc9d4455..ad1db984fa62 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_merge_documents_existing.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_merge_documents_existing.yaml @@ -5,52 +5,52 @@ interactions: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search909e1eda.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://search909e1eda.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4f7jzMd/NZNpY/x1fFclZdNeNl3t793RZ5m+HtH6cP - 83d5c/d3y5dt0V5/NDJgqcEFwfx9P9p5d/D04e6TJ/d2Hpzc27n38N7v+xG1WmaLnL6e1Re/KD9v - LuiTWX6ercv29bSqi+XFy7o6L0pqslyX5eij8yIvZ81Hj773i82b86rNy7MZvdher/DB6Wwxft3i - XfpMcM4mgHCelU0OEGWb1/JRW6/pkzqn5vml/1FT1a3/93k2pYF4H7zNr82vPPTjZVZe/yCvDaLS - cffTrPN3c72slteLL7IVxvT9XzIKh/UCv988MEHjQ8el5OGB6e8/KyOb5c20LlZtUS1pHO8/NsVt - 4+C0zc/C6D7Kl+NyPc2XmJhbDfJZTS3/PzfM8/o2w5xmbX5R1RD39x+hfLJxgPK3Nz754IOHJ38P - j4t0VkP465hOqrLMp5jLLTe8O/S9dONj9p7j0zH88Ae4yuq3NIiz5bRcz/KO9nxSVWWeQTqlG8FM - 0XnPEcrfP/wBNosKAzwuy+oq///h+MqsaV/ly+oyA18+JTmk4XhjxCdvikX+5fl5k7f0nXQoOCpi - /x8Zak1DZHXiDe9s2d7bo48EtqCjOPx/ZFRlRcqTpo4G4Y3r87y6qLPV/PplVSx/lqZNwfysjzCb - zeq88fQoBnhSLVZl/u4NPiGseu5c09Z53h7HXhW9S58JYjIYHZ1HEh3SRppom58DokzFOX7/Yckn - G0clf3uDkg9+1sfUtKRsyFG/LJZTzOr/rwY3rdbL9v9/Hs6qolkrT6rZ/08mzB9bXVULT3d03DdP - A8GH66sgz3en7xUI3rwlbXRwG4mjbTzq6CcfTJ4fBSj+MHlYX2d08sl7Dk5afPDY5O/hQU2yJn9F - KpcG4Q3sabUGEvQigxeMFI3/z4wsn33JPOmJL8b2/4NJa8o8XzUnsCY0Dm9s35wra9764Y/thxRs - mbd+6AP8/2k+gP6jD4NEK76ww14S1LwBv56vlzzg44uLOr+QwIXmfb2g7yRrLD2YdgKGbSsnMYN4 - hyKbvF5VpfxNXxXoiL5Q+s4K8k3ElZxU5Kd89GhvvEOwCZf5EmGBdrbILpZFS/kL84F98dEv/qjO - z/M6pz84knqZ1YQGdUvgF9eEi4FNI39q39rd2Rnv/BLCAylrgBQKEYEao5b4YyLa+uKCKJPX9AkN - VOnF+WuZii/gWVEMxDNAnZwtz4t3X2TtdE5/oFW1rqf5MxAIIHx7TN+67C8jIFBy7oz+bKu3+bLo - /P2MOU0/ISasgw+IEPU1Q/+9wEo6iGJRlFmNiIQIpvl6nYMf/6KY1lVTnbfj4x+s63z8moc1fvLF - 3v3X7j1izV0DbiK//JJf8v8Aoh9/CVMYAAA= + 83d5c/d3y5dt0V5/NDJgqcEFwfx9P9p5d/D04e7u6cOD04MHO8cPHvy+H1GrZbbI6etZffGL8vPm + gj6Z5efZumxfT6u6WF68rKvzoqQmy3VZjj46L/Jy1nz06Hu/2Lw5r9q8PJvRi+31Ch+czhbj1y3e + pc8E52wCCOdZ2eQAUbZ5LR+19Zo+qXNqnl/6HzVV3fp/n2dTGoj3wdv82vzKQz9eZuX1D/LaICod + dz/NOn8vq3qRlYX3SXO9rJbXiy+yFUb5/V8yCgf6Ar/fPFRB7ENHqgTjoervP6SxzvJmWhertqiW + NLL3H61iu3G42uZnYbwf5ctxuZ7mS0zV1xz2s5re/f/cwM/rrzfwadbmF1UNtfH+Y5ZPNg5Z/vZG + LB988IDl7/cZKWnDhkakozypyjKfYr633IDv0PfSsY/re45YR/X/hiGvsvotDetsOS3Xs7yjqZ9U + VZlnkHLpWHBVBN9zzPL3/xuG3CwqDPm4LKur/OfFiMusaV/ly+oyAzc/JXmmAXqjxidvikX+5fl5 + k7f0naAgWCuq/58dfE2DZkXlDfhs2d7bo4+kN0FQsfr/7DjLihQ1TS8Nyxvp53l1UWer+fXLqlj+ + LE2tgvk5GHM2m9V54+lsDPmkWqzK/N0bfEJ49pzSpq3zvD2OvSo6nj4TVGV4Ol6PSDrIjVTSNv+v + INNUnP73H6h8snGc8rc3TPng52CUTUtqjEKSy2I5xcz//3y402q9bH8+eGWrima2PKlm/7+dVH+0 + dVUtPK3UcUI93QZPtK/cvCiFvlcgePOW1NLhbiSXtvHopZ98MMF+FJy978B5oF9nvPLJew5XWnzw + aOXv9xnmJGvyV6TeaVjeUJ9Wa6BFL3KHgqMi9v/hseazL5mTPTWA0f7/cmKbMs9XzQlsGY3MG+03 + 56Kbt/7fMNofUuhp3vp/wZB/3uRU6D/6MEiM4wtLiCX1kzfg8vP1kklwfHFR5xcStBFvrBf0nWT5 + pQfTTsCwrecUcxDrUVSX16uqlL/pqwId0RdK8VlB3pM4xJOKPKmPHu2Ndwg24TJfIgDSzhbZxbJo + KQdkPrAvPvrFH9X5eV7n9AdHkS+zmtCgbgn84ppwMbBp5E/tW7s7O+OdX0J4YIkBIIVCRKDGqDf+ + mIi2vrggyuQ1fUIDVXrxeoNMzhfw/Sja4zmhTs6W58W7L7J2Oqc/0Kpa19P8GQgEEL43QN+63Dwj + IFBy7oz+dBOrH7TV23zZ/fsZM6N+QnxaBx8QZepr7u73ArfpqIpFUWY1Qi+ioC646KT8+BfFtK6a + 6rwdH/9gXefj1zzO8ZMv9u6/du8R9+4acBP55Zf8kv8Hfn2tKxQaAAA= headers: cache-control: no-cache content-encoding: gzip - content-length: '1166' + content-length: '1181' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:16:43 GMT - elapsed-time: '29' - etag: W/"0x8D91BB307C30393" + date: Sat, 08 May 2021 06:21:50 GMT + elapsed-time: '25' + etag: W/"0x8D911E98E870A77" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 256cb005-b98f-11eb-b3ce-a0481ca055a9 + request-id: ac08c6f4-afc5-11eb-98ca-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search909e1eda.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + url: https://search909e1eda.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview - request: body: '{"value": [{"hotelId": "3", "rating": 1, "@search.action": "merge"}, {"hotelId": "4", "rating": 2, "@search.action": "merge"}]}' @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search909e1eda.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://search909e1eda.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -77,28 +77,28 @@ interactions: content-encoding: gzip content-length: '190' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:16:42 GMT - elapsed-time: '97' + date: Sat, 08 May 2021 06:21:50 GMT + elapsed-time: '77' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 259371f4-b98f-11eb-91c6-a0481ca055a9 + request-id: ac35f2b3-afc5-11eb-9cc7-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search909e1eda.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + url: https://search909e1eda.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search909e1eda.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://search909e1eda.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -110,28 +110,28 @@ interactions: content-encoding: gzip content-length: '127' content-type: text/plain - date: Thu, 20 May 2021 17:16:46 GMT - elapsed-time: '55' + date: Sat, 08 May 2021 06:21:54 GMT + elapsed-time: '5' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 27881836-b98f-11eb-8ac8-a0481ca055a9 + request-id: ae3f2dd6-afc5-11eb-a98d-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search909e1eda.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + url: https://search909e1eda.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search909e1eda.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30 + uri: https://search909e1eda.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -148,28 +148,28 @@ interactions: content-encoding: gzip content-length: '438' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:16:46 GMT - elapsed-time: '14' + date: Sat, 08 May 2021 06:21:54 GMT + elapsed-time: '11' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 27ae5cf0-b98f-11eb-9db2-a0481ca055a9 + request-id: ae69ab2d-afc5-11eb-83d2-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search909e1eda.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30 + url: https://search909e1eda.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search909e1eda.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://search909e1eda.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -186,17 +186,17 @@ interactions: content-encoding: gzip content-length: '422' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:16:46 GMT - elapsed-time: '3' + date: Sat, 08 May 2021 06:21:54 GMT + elapsed-time: '4' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 27bac86f-b98f-11eb-9ed5-a0481ca055a9 + request-id: ae778bb8-afc5-11eb-af6a-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search909e1eda.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + url: https://search909e1eda.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_merge_documents_missing.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_merge_documents_missing.yaml index f4f6460218ff..9116908d0f3a 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_merge_documents_missing.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_merge_documents_missing.yaml @@ -5,52 +5,52 @@ interactions: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search71b61e69.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://search71b61e69.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4f7E4+3c0/fTiWP8dXxXJWXTXjZd7e/d0WeZvh7R+n - D/N3eXP3d8uXbdFefzQyYKnBBcH8fT/aeXfw9OHukyf3dveOn53sPzj9fT+iVstskdPXs/riF+Xn + D/N3eXP3d8uXbdFefzQyYKnBBcH8fT/aeXfw9OHu7unDh8e7Bw/vP935fT+iVstskdPXs/riF+Xn zQV9MsvPs3XZvp5WdbG8eFlX50VJTZbrshx9dF7k5az56NH3frF5c161eXk2oxfb6xU+OJ0txq9b vEufCc7ZBBDOs7LJAaJs81o+aus1fVLn1Dy/9D9qqrr1/z7PpjQQ74O3+bX5lYd+vMzK6x/ktUFU - Ou5+mnX+bq6X1fJ68UW2wpi+/0tG4bBe4PebByZofOi4lDw8MP39Z2Vks7yZ1sWqLaoljeP9x6a4 - bRyctvlZGN1H+XJcrqf5EhNzq0E+q6nl/+eGeV7fZpjTrM0vqhri/v4jlE82DlD+9sYnH3zw8OTv - 4XGRzmoIfx3TSVWW+RRzueWGd4e+l258zN5zfDqGH/4AV1n9lgZxtpyW61ne0Z5PqqrMM0indCOY - KTrvOUL5+4c/wGZRYYDHZVld5f8/HF+ZNe2rfFldZuDLpySHNBxvjPjkTbHIvzw/b/KWvpMOBUdF - 7P8jQ61piKxOvOGdLdt7e/SRwBZ0FIf/j4yqrEh50tTRILxxfZ5XF3W2ml+/rIrlz9K0KZif9RFm - s1mdN54exQBPqsWqzN+9wSeEVc+da9o6z9vj2Kuid+kzQUwGo6PzSKJD2kgTbfNzQJSpOMfvPyz5 - ZOOo5G9vUPLBz/qYmpaUDTnql8Vyiln9/9XgptV62f7/z8NZVTRr5Uk1+//JhPljq6tq4emOjvvm - aSD4cH0V5Pnu9L0CwZu3pI0ObiNxtI1HHf3kg8nzowDFHyYP6+uMTj55z8FJiw8em/w9PKhJ1uSv - SOXSILyBPa3WQIJeZPCCkaLx/5mR5bMvmSc98cXY/n8waU2Z56vmBNaExuGN7ZtzZc1bP/yx/ZCC - LfPWD32A/z/NB9B/9GGQaMUXdthLgpo34Nfz9ZIHfHxxUecXErjQvK8X9J1kjaUH007AsG3lJGYQ - 71Bkk9erqpS/6asCHdEXSt9ZQb6JuJKTivyUjx7tjXcINuEyXyIs0M4W2cWyaCl/YT6wLz76xR/V - +Xle5/QHR1Ivs5rQoG4J/OKacDGwaeRP7Vu7OzvjnV9CeCBlDZBCISJQY9QSf0xEW19cEGXymj6h - gSq9OH8tU/EFPCuKgXgGqJOz5Xnx7ousnc7pD7Sq1vU0fwYCAYRvj+lbl/1lBARKzp3Rn231Nl8W - nb+fMafpJ8SEdfABEaK+Zui/F1hJB1EsijKrEZEQwTRfr3Pw418U07pqqvN2fPyDdZ2PX/Owxk++ - 2Lv/2r1HrLlrwE3kl1/yS/4fYcf5clMYAAA= + Ou5+mnX+Xlb1IisL75PmelktrxdfZCuM8vu/ZBQO9AV+v3mogtiHjlQJxkPV339IY53lzbQuVm1R + LWlk7z9axXbjcLXNz8J4P8qX43I9zZeYqq857Gc1vfv/uYGf119v4NOszS+qGmrj/ccsn2wcsvzt + jVg++OABy9/vM1LShg2NSEd5UpVlPsV8b7kB36HvpWMf1/ccsY7q/w1DXmX1WxrW2XJarmd5R1M/ + qaoyzyDl0rHgqgi+55jl7/83DLlZVBjycVlWV/nPixGXWdO+ypfVZQZufkryTAP0Ro1P3hSL/Mvz + 8yZv6TtBQbBWVP8/O/iaBs2Kyhvw2bK9t0cfSW+CoGL1/9lxlhUpappeGpY30s/z6qLOVvPrl1Wx + /FmaWgXzczDmbDar88bT2RjySbVYlfm7N/iE8Ow5pU1b53l7HHtVdDx9JqjK8HS8HpF0kBuppG3+ + X0GmqTj97z9Q+WTjOOVvb5jywc/BKJuW1BiFJJfFcoqZ///5cKfVetn+fPDKVhXNbHlSzf5/O6n+ + aOuqWnhaqeOEeroNnmhfuXlRCn2vQPDmLamlw91ILm3j0Us/+WCC/Sg4e9+B80C/znjlk/ccrrT4 + 4NHK3+8zzEnW5K9IvdOwvKE+rdZAi17kDgVHRez/w2PNZ18yJ3tqAKP9/+XENmWer5oT2DIamTfa + b85FN2/9v2G0P6TQ07z1/4Ih/7zJqdB/9GGQGMcXlhBL6idvwOXn6yWT4Pjios4vJGgj3lgv6DvJ + 8ksPpp2AYVvPKeYg1qOoLq9XVSl/01cFOqIvlOKzgrwncYgnFXlSHz3aG+8QbMJlvkQApJ0tsotl + 0VIOyHxgX3z0iz+q8/O8zukPjiJfZjWhQd0S+MU14WJg08if2rd2d3bGO7+E8MASA0AKhYhAjVFv + /DERbX1xQZTJa/qEBqr04vUGmZwv4PtRtMdzQp2cLc+Ld19k7XROf6BVta6n+TMQCCB8b4C+dbl5 + RkCg5NwZ/ekmVj9oq7f5svv3M2ZG/YT4tA4+IMrU19zd7wVu01EVi6LMaoReREFdcNFJ+fEvimld + NdV5Oz7+wbrOx695nOMnX+zdf+3eI+7dNeAm8ssv+SX/D2xwFHkUGgAA headers: cache-control: no-cache content-encoding: gzip - content-length: '1166' + content-length: '1182' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:17:01 GMT - elapsed-time: '21' - etag: W/"0x8D91BB312AFC47E" + date: Sat, 08 May 2021 06:22:09 GMT + elapsed-time: '24' + etag: W/"0x8D911E99A1895D0" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 305b1f5a-b98f-11eb-9f7a-a0481ca055a9 + request-id: b797d237-afc5-11eb-9854-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search71b61e69.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + url: https://search71b61e69.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview - request: body: '{"value": [{"hotelId": "1000", "rating": 1, "@search.action": "merge"}, {"hotelId": "4", "rating": 2, "@search.action": "merge"}]}' @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search71b61e69.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://search71b61e69.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -77,28 +77,28 @@ interactions: content-encoding: gzip content-length: '225' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:17:01 GMT - elapsed-time: '56' + date: Sat, 08 May 2021 06:22:10 GMT + elapsed-time: '28' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 30790bf6-b98f-11eb-a2cb-a0481ca055a9 + request-id: b7c9c231-afc5-11eb-b0bd-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 207 message: Multi-Status - url: https://search71b61e69.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + url: https://search71b61e69.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search71b61e69.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://search71b61e69.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -110,53 +110,53 @@ interactions: content-encoding: gzip content-length: '127' content-type: text/plain - date: Thu, 20 May 2021 17:17:04 GMT - elapsed-time: '111' + date: Sat, 08 May 2021 06:22:13 GMT + elapsed-time: '72' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 326b810c-b98f-11eb-aa72-a0481ca055a9 + request-id: b9c3fb5d-afc5-11eb-8d03-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search71b61e69.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + url: https://search71b61e69.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search71b61e69.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://search71b61e69.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Thu, 20 May 2021 17:17:04 GMT - elapsed-time: '7' + date: Sat, 08 May 2021 06:22:13 GMT + elapsed-time: '4' expires: '-1' pragma: no-cache - request-id: 329d8462-b98f-11eb-b7c2-a0481ca055a9 + request-id: b9f8d5d8-afc5-11eb-ba2d-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 404 message: Not Found - url: https://search71b61e69.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + url: https://search71b61e69.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search71b61e69.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://search71b61e69.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -173,17 +173,17 @@ interactions: content-encoding: gzip content-length: '422' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:17:04 GMT - elapsed-time: '11' + date: Sat, 08 May 2021 06:22:13 GMT + elapsed-time: '8' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 32a8711d-b98f-11eb-b3ba-a0481ca055a9 + request-id: ba04037b-afc5-11eb-9c44-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search71b61e69.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + url: https://search71b61e69.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_merge_or_upload_documents.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_merge_or_upload_documents.yaml index 55cba6699100..9b2da98d570d 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_merge_or_upload_documents.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_merge_or_upload_documents.yaml @@ -5,52 +5,52 @@ interactions: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchaf391f34.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://searchaf391f34.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns6z83sPd8/v7Y/lz/FVsZxVV814mbd3f7dF3mZ4+8fp - w/xd3tz93fJlW7TXH40MWGpwQTB/34923h08fbj75Mm93ZOnz3Y+fXb/9/2IWi2zRU5fz+qLX5Sf - Nxf0ySw/z9Zl+3pa1cXy4mVdnRclNVmuy3L00XmRl7Pmo0ff+8XmzXnV5uXZjF5sr1f44HS2GL9u - 8S59JjhnE0A4z8omB4iyzWv5qK3X9EmdU/P80v+oqerW//s8m9JAvA/e5tfmVx768TIrr3+Q1wZR - 6bj7adb5u7leVsvrxRfZCmP6/i8ZhcN6gd9vHpig8aHjUvLwwPT3n5WRzfJmWhertqiWNI73H5vi - tnFw2uZnYXQf5ctxuZ7mS0zMrQb5rKaW/58b5nl9m2FOsza/qGqI+/uPUD7ZOED52xuffPDBw5O/ - h8dFOqsh/HVMJ1VZ5lPM5ZYb3h36XrrxMXvP8ekYfvgDXGX1WxrE2XJarmd5R3s+qaoyzyCd0o1g - pui85wjl7x/+AJtFhQEel2V1lf//cHxl1rSv8mV1mYEvn5Ic0nC8MeKTN8Ui//L8vMlb+k46FBwV - sf+PDLWmIbI68YZ3tmzv7dFHAlvQURz+PzKqsiLlSVNHg/DG9XleXdTZan79siqWP0vTpmB+1keY - zWZ13nh6FAM8qRarMn/3Bp8QVj13rmnrPG+PY6+K3qXPBDEZjI7OI4kOaSNNtM3PAVGm4hy//7Dk - k42jkr+9QckHP+tjalpSNuSoXxbLKWb1/1eDm1brZfv/Pw9nVdGslSfV7P8nE+aPra6qhac7Ou6b - p4Hgw/VVkOe70/cKBG/ekjY6uI3E0TYedfSTDybPjwIUf5g8rK8zOvnkPQcnLT54bPL38KAmWZO/ - IpVLg/AG9rRaAwl6kcELRorG/2dGls++ZJ70xBdj+//BpDVlnq+aE1gTGoc3tm/OlTVv/fDH9kMK - tsxbP/QB/v80H0D/0YdBohVf2GEvCWregF/P10se8PHFRZ1fSOBC875e0HeSNZYeTDsBw7aVk5hB - vEORTV6vqlL+pq8KdERfKH1nBfkm4kpOKvJTPnq0N94h2ITLfImwQDtbZBfLoqX8hfnAvvjoF39U - 5+d5ndMfHEm9zGpCg7ol8ItrwsXAppE/tW/t7uyMd34J4YGUNUAKhYhAjVFL/DERbX1xQZTJa/qE - Bqr04vy1TMUX8KwoBuIZoE7OlufFuy+ydjqnP9CqWtfT/BkIBBC+PaZvXfaXERAoOXdGf7bV23xZ - dP5+xpymnxAT1sEHRIj6mqH/XmAlHUSxKMqsRkRCBNN8vc7Bj39RTOuqqc7b8fEP1nU+fs3DGj/5 - Yu/+a/ceseauATeRX37JL/l/AIOxCCJTGAAA + w/xd3tz93fJlW7TXH40MWGpwQTB/34923h08fbi7e/rweP/Z3un+8cPf9yNqtcwWOX09qy9+UX7e + XNAns/w8W5ft62lVF8uLl3V1XpTUZLkuy9FH50VezpqPHn3vF5s351Wbl2czerG9XuGD09li/LrF + u/SZ4JxNAOE8K5scIMo2r+Wjtl7TJ3VOzfNL/6Omqlv/7/NsSgPxPnibX5tfeejHy6y8/kFeG0Sl + 4+6nWefvZVUvsrLwPmmul9XyevFFtsIov/9LRuFAX+D3m4cqiH3oSJVgPFT9/Yc01lneTOti1RbV + kkb2/qNVbDcOV9v8LIz3o3w5LtfTfImp+prDflbTu/+fG/h5/fUGPs3a/KKqoTbef8zyycYhy9/e + iOWDDx6w/P0+IyVt2NCIdJQnVVnmU8z3lhvwHfpeOvZxfc8R66j+3zDkVVa/pWGdLaflepZ3NPWT + qirzDFIuHQuuiuB7jln+/n/DkJtFhSEfl2V1lf+8GHGZNe2rfFldZuDmpyTPNEBv1PjkTbHIvzw/ + b/KWvhMUBGtF9f+zg69p0KyovAGfLdt7e/SR9CYIKlb/nx1nWZGipumlYXkj/TyvLupsNb9+WRXL + n6WpVTA/B2POZrM6bzydjSGfVItVmb97g08Iz55T2rR1nrfHsVdFx9NngqoMT8frEUkHuZFK2ub/ + FWSaitP//gOVTzaOU/72hikf/ByMsmlJjVFIclksp5j5/58Pd1qtl+3PB69sVdHMlifV7P+3k+qP + tq6qhaeVOk6op9vgifaVmxel0PcKBG/eklo63I3k0jYevfSTDybYj4Kz9x04D/TrjFc+ec/hSosP + Hq38/T7DnGRN/orUOw3LG+rTag206EXuUHBUxP4/PNZ89iVzsqcGMNr/X05sU+b5qjmBLaOReaP9 + 5lx089b/G0b7Qwo9zVv/Lxjyz5ucCv1HHwaJcXxhCbGkfvIGXH6+XjIJji8u6vxCgjbijfWCvpMs + v/Rg2gkYtvWcYg5iPYrq8npVlfI3fVWgI/pCKT4ryHsSh3hSkSf10aO98Q7BJlzmSwRA2tkiu1gW + LeWAzAf2xUe/+KM6P8/rnP7gKPJlVhMa1C2BX1wTLgY2jfypfWt3Z2e880sIDywxAKRQiAjUGPXG + HxPR1hcXRJm8pk9ooEovXm+QyfkCvh9Fezwn1MnZ8rx490XWTuf0B1pV63qaPwOBAML3Buhbl5tn + BARKzp3Rn25i9YO2epsvu38/Y2bUT4hP6+ADokx9zd39XuA2HVWxKMqsRuhFFNQFF52UH/+imNZV + U5234+MfrOt8/JrHOX7yxd791+494t5dA24iv/ySX/L/ALTM9e0UGgAA headers: cache-control: no-cache content-encoding: gzip - content-length: '1167' + content-length: '1182' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:17:18 GMT - elapsed-time: '42' - etag: W/"0x8D91BB31CDF06F5" + date: Sat, 08 May 2021 06:22:28 GMT + elapsed-time: '27' + etag: W/"0x8D911E9A4F2E4A9" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 3a8bfd70-b98f-11eb-9a99-a0481ca055a9 + request-id: c271d975-afc5-11eb-90bb-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchaf391f34.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + url: https://searchaf391f34.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview - request: body: '{"value": [{"hotelId": "1000", "rating": 1, "@search.action": "mergeOrUpload"}, {"hotelId": "4", "rating": 2, "@search.action": "mergeOrUpload"}]}' @@ -62,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchaf391f34.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://searchaf391f34.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -77,28 +77,28 @@ interactions: content-encoding: gzip content-length: '196' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:17:18 GMT - elapsed-time: '35' + date: Sat, 08 May 2021 06:22:28 GMT + elapsed-time: '25' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 3aaca4dd-b98f-11eb-9df1-a0481ca055a9 + request-id: c29f7ea4-afc5-11eb-8250-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchaf391f34.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + url: https://searchaf391f34.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchaf391f34.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://searchaf391f34.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -110,28 +110,28 @@ interactions: content-encoding: gzip content-length: '127' content-type: text/plain - date: Thu, 20 May 2021 17:17:21 GMT - elapsed-time: '76' + date: Sat, 08 May 2021 06:22:31 GMT + elapsed-time: '103' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 3ca14014-b98f-11eb-8aee-a0481ca055a9 + request-id: c493d7e1-afc5-11eb-ad86-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchaf391f34.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + url: https://searchaf391f34.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchaf391f34.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://searchaf391f34.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -145,28 +145,28 @@ interactions: content-encoding: gzip content-length: '257' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:17:21 GMT - elapsed-time: '8' + date: Sat, 08 May 2021 06:22:31 GMT + elapsed-time: '7' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 3cc9fd89-b98f-11eb-b06a-a0481ca055a9 + request-id: c4cc9ef3-afc5-11eb-928f-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchaf391f34.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + url: https://searchaf391f34.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchaf391f34.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://searchaf391f34.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -183,17 +183,17 @@ interactions: content-encoding: gzip content-length: '422' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:17:21 GMT - elapsed-time: '11' + date: Sat, 08 May 2021 06:22:31 GMT + elapsed-time: '7' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 3cd4fa00-b98f-11eb-8fe2-a0481ca055a9 + request-id: c4d89e68-afc5-11eb-aadd-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchaf391f34.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + url: https://searchaf391f34.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_upload_documents_existing.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_upload_documents_existing.yaml index 8ee729e39007..e1952a010708 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_upload_documents_existing.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_upload_documents_existing.yaml @@ -5,52 +5,52 @@ interactions: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchb0ef1f4f.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://searchb0ef1f4f.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4nO/n57vn++Vj+HF8Vy1l11YyXeXv3d1vkbYa3f5w+ - zN/lzd3fLV+2RXv90ciApQYXBPP3/Wjn3cHTh7tPntzbOzi9d+/T3b3f9yNqtcwWOX09qy9+UX7e - XNAns/w8W5ft62lVF8uLl3V1XpTUZLkuy9FH50VezpqPHn3vF5s351Wbl2czerG9XuGD09li/LrF - u/SZ4JxNAOE8K5scIMo2r+Wjtl7TJ3VOzfNL/6Omqlv/7/NsSgPxPnibX5tfeejHy6y8/kFeG0Sl - 4+6nWefv5npZLa8XX2QrjOn7v2QUDusFfr95YILGh45LycMD099/VkY2y5tpXazaolrSON5/bIrb - xsFpm5+F0X2UL8flepovMTG3GuSzmlr+f26Y5/VthjnN2vyiqiHu7z9C+WTjAOVvb3zywQcPT/4e - HhfprIbw1zGdVGWZTzGXW254d+h76cbH7D3Hp2P44Q9wldVvaRBny2m5nuUd7fmkqso8g3RKN4KZ - ovOeI5S/f/gDbBYVBnhcltVV/v/D8ZVZ077Kl9VlBr58SnJIw/HGiE/eFIv8y/PzJm/pO+lQcFTE - /j8y1JqGyOrEG97Zsr23Rx8JbEFHcfj/yKjKipQnTR0NwhvX53l1UWer+fXLqlj+LE2bgvlZH2E2 - m9V54+lRDPCkWqzK/N0bfEJY9dy5pq3zvD2OvSp6lz4TxGQwOjqPJDqkjTTRNj8HRJmKc/z+w5JP - No5K/vYGJR/8rI+paUnZkKN+WSynmNX/Xw1uWq2X7f//PJxVRbNWnlSz/59MmD+2uqoWnu7ouG+e - BoIP11dBnu9O3ysQvHlL2ujgNhJH23jU0U8+mDw/ClD8YfKwvs7o5JP3HJy0+OCxyd/Dg5pkTf6K - VC4NwhvY02oNJOhFBi8YKRr/nxlZPvuSedITX4zt/weT1pR5vmpOYE1oHN7YvjlX1rz1wx/bDynY - Mm/90Af4/9N8AP1HHwaJVnxhh70kqHkDfj1fL3nAxxcXdX4hgQvN+3pB30nWWHow7QQM21ZOYgbx - DkU2eb2qSvmbvirQEX2h9J0V5JuIKzmpyE/56NHeeIdgEy7zJcIC7WyRXSyLlvIX5gP74qNf/FGd - n+d1Tn9wJPUyqwkN6pbAL64JFwObRv7UvrW7szPe+SWEB1LWACkUIgI1Ri3xx0S09cUFUSav6RMa - qNKL89cyFV/As6IYiGeAOjlbnhfvvsja6Zz+QKtqXU/zZyAQQPj2mL512V9GQKDk3Bn92VZv82XR - +fsZc5p+QkxYBx8QIeprhv57gZV0EMWiKLMaEQkRTPP1Ogc//kUxraumOm/Hxz9Y1/n4NQ9r/OSL - vfuv3XvEmrsG3ER++SW/5P8Bo4vP/lMYAAA= + zN/lzd3fLV+2RXv90ciApQYXBPP3/Wjn3cHTh7u7pw+Pnz17evrwwcnv+xG1WmaLnL6e1Re/KD9v + LuiTWX6ercv29bSqi+XFy7o6L0pqslyX5eij8yIvZ81Hj773i82b86rNy7MZvdher/DB6Wwxft3i + XfpMcM4mgHCelU0OEGWb1/JRW6/pkzqn5vml/1FT1a3/93k2pYF4H7zNr82vPPTjZVZe/yCvDaLS + cffTrPP3sqoXWVl4nzTXy2p5vfgiW2GU3/8lo3CgL/D7zUMVxD50pEowHqr+/kMa6yxvpnWxaotq + SSN7/9EqthuHq21+Fsb7Ub4cl+tpvsRUfc1hP6vp3f/PDfy8/noDn2ZtflHVUBvvP2b5ZOOQ5W9v + xPLBBw9Y/n6fkZI2bGhEOsqTqizzKeZ7yw34Dn0vHfu4vueIdVT/bxjyKqvf0rDOltNyPcs7mvpJ + VZV5BimXjgVXRfA9xyx//79hyM2iwpCPy7K6yn9ejLjMmvZVvqwuM3DzU5JnGqA3anzypljkX56f + N3lL3wkKgrWi+v/Zwdc0aFZU3oDPlu29PfpIehMEFav/z46zrEhR0/TSsLyRfp5XF3W2ml+/rIrl + z9LUKpifgzFns1mdN57OxpBPqsWqzN+9wSeEZ88pbdo6z9vj2Kui4+kzQVWGp+P1iKSD3EglbfP/ + CjJNxel//4HKJxvHKX97w5QPfg5G2bSkxigkuSyWU8z8/8+HO63Wy/bng1e2qmhmy5Nq9v/bSfVH + W1fVwtNKHSfU023wRPvKzYtS6HsFgjdvSS0d7kZyaRuPXvrJBxPsR8HZ+w6cB/p1xiufvOdwpcUH + j1b+fp9hTrImf0XqnYblDfVptQZa9CJ3KDgqYv8fHms++5I52VMDGO3/Lye2KfN81ZzAltHIvNF+ + cy66eev/DaP9IYWe5q3/Fwz5501Ohf6jD4PEOL6whFhSP3kDLj9fL5kExxcXdX4hQRvxxnpB30mW + X3ow7QQM23pOMQexHkV1eb2qSvmbvirQEX2hFJ8V5D2JQzypyJP66NHeeIdgEy7zJQIg7WyRXSyL + lnJA5gP74qNf/FGdn+d1Tn9wFPkyqwkN6pbAL64JFwObRv7UvrW7szPe+SWEB5YYAFIoRARqjHrj + j4lo64sLokxe0yc0UKUXrzfI5HwB34+iPZ4T6uRseV68+yJrp3P6A62qdT3Nn4FAAOF7A/Sty80z + AgIl587oTzex+kFbvc2X3b+fMTPqJ8SndfABUaa+5u5+L3CbjqpYFGVWI/QiCuqCi07Kj39RTOuq + qc7b8fEP1nU+fs3jHD/5Yu/+a/cece+uATeRX37JL/l/AEijL/kUGgAA headers: cache-control: no-cache content-encoding: gzip - content-length: '1166' + content-length: '1182' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:17:38 GMT - elapsed-time: '25' - etag: W/"0x8D91BB328E33612" + date: Sat, 08 May 2021 06:22:46 GMT + elapsed-time: '39' + etag: W/"0x8D911E9AFFDE97C" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 46857235-b98f-11eb-b394-a0481ca055a9 + request-id: cd7a6b7b-afc5-11eb-82ef-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchb0ef1f4f.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + url: https://searchb0ef1f4f.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview - request: body: '{"value": [{"hotelId": "1000", "rating": 5, "rooms": [], "hotelName": "Azure Inn", "@search.action": "upload"}, {"hotelId": "3", "rating": 4, "rooms": [], @@ -63,9 +63,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchb0ef1f4f.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://searchb0ef1f4f.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -78,28 +78,28 @@ interactions: content-encoding: gzip content-length: '196' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:17:38 GMT - elapsed-time: '32' + date: Sat, 08 May 2021 06:22:46 GMT + elapsed-time: '97' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 46a802f5-b98f-11eb-9e72-a0481ca055a9 + request-id: cdaf871c-afc5-11eb-bc52-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchb0ef1f4f.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + url: https://searchb0ef1f4f.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchb0ef1f4f.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://searchb0ef1f4f.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -111,17 +111,17 @@ interactions: content-encoding: gzip content-length: '127' content-type: text/plain - date: Thu, 20 May 2021 17:17:42 GMT - elapsed-time: '81' + date: Sat, 08 May 2021 06:22:50 GMT + elapsed-time: '67' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 489a7d24-b98f-11eb-800b-a0481ca055a9 + request-id: cfadc09f-afc5-11eb-a35a-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchb0ef1f4f.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + url: https://searchb0ef1f4f.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_upload_documents_new.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_upload_documents_new.yaml index 6414e3df57d5..db4c8bf5603a 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_upload_documents_new.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_buffered_sender_live_async.test_upload_documents_new.yaml @@ -5,52 +5,52 @@ interactions: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search18931d2e.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://search18931d2e.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns53Dx7e253t5WP5c3xVLGfVVTNe5u3d322Rtxne/nH6 - MH+XN3d/t3zZFu31RyMDlhpcEMzf96OddwdPH+4+eXLv3v7u/sGne7u/70fUapktcvp6Vl/8ovy8 + MH+XN3d/t3zZFu31RyMDlhpcEMzf96OddwdPH+7unj58cvxs79nu/fu/70fUapktcvp6Vl/8ovy8 uaBPZvl5ti7b19OqLpYXL+vqvCipyXJdlqOPzou8nDUfPfreLzZvzqs2L89m9GJ7vcIHp7PF+HWL d+kzwTmbAMJ5VjY5QJRtXstHbb2mT+qcmueX/kdNVbf+3+fZlAbiffA2vza/8tCPl1l5/YO8NohK - x91Ps87fzfWyWl4vvshWGNP3f8koHNYL/H7zwASNDx2XkocHpr//rIxsljfTuli1RbWkcbz/2BS3 - jYPTNj8Lo/soX47L9TRfYmJuNchnNbX8/9wwz+vbDHOatflFVUPc33+E8snGAcrf3vjkgw8envw9 - PC7SWQ3hr2M6qcoyn2Iut9zw7tD30o2P2XuOT8fwwx/gKqvf0iDOltNyPcs72vNJVZV5BumUbgQz - Rec9Ryh///AH2CwqDPC4LKur/P+H4yuzpn2VL6vLDHz5lOSQhuONEZ+8KRb5l+fnTd7Sd9Kh4KiI - /X9kqDUNkdWJN7yzZXtvjz4S2IKO4vD/kVGVFSlPmjoahDeuz/Pqos5W8+uXVbH8WZo2BfOzPsJs - NqvzxtOjGOBJtViV+bs3+ISw6rlzTVvneXsce1X0Ln0miMlgdHQeSXRIG2mibX4OiDIV5/j9hyWf - bByV/O0NSj74WR9T05KyIUf9slhOMav/vxrctFov2///eTirimatPKlm/z+ZMH9sdVUtPN3Rcd88 - DQQfrq+CPN+dvlcgePOWtNHBbSSOtvGoo598MHl+FKD4w+RhfZ3RySfvOThp8cFjk7+HBzXJmvwV - qVwahDewp9UaSNCLDF4wUjT+PzOyfPYl86Qnvhjb/w8mrSnzfNWcwJrQOLyxfXOurHnrhz+2H1Kw - Zd76oQ/w/6f5APqPPgwSrfjCDntJUPMG/Hq+XvKAjy8u6vxCAhea9/WCvpOssfRg2gkYtq2cxAzi - HYps8npVlfI3fVWgI/pC6TsryDcRV3JSkZ/y0aO98Q7BJlzmS4QF2tkiu1gWLeUvzAf2xUe/+KM6 - P8/rnP7gSOplVhMa1C2BX1wTLgY2jfypfWt3Z2e880sID6SsAVIoRARqjFrij4lo64sLokxe0yc0 - UKUX569lKr6AZ0UxEM8AdXK2PC/efZG10zn9gVbVup7mz0AggPDtMX3rsr+MgEDJuTP6s63e5sui - 8/cz5jT9hJiwDj4gQtTXDP33AivpIIpFUWY1IhIimObrdQ5+/ItiWldNdd6Oj3+wrvPxax7W+MkX - e/dfu/eINXcNuIn88kt+yf8D3ia8/FMYAAA= + x91Ps87fy6peZGXhfdJcL6vl9eKLbIVRfv+XjMKBvsDvNw9VEPvQkSrBeKj6+w9prLO8mdbFqi2q + JY3s/Uer2G4crrb5WRjvR/lyXK6n+RJT9TWH/aymd/8/N/Dz+usNfJq1+UVVQ228/5jlk41Dlr+9 + EcsHHzxg+ft9RkrasKER6ShPqrLMp5jvLTfgO/S9dOzj+p4j1lH9v2HIq6x+S8M6W07L9SzvaOon + VVXmGaRcOhZcFcH3HLP8/f+GITeLCkM+LsvqKv95MeIya9pX+bK6zMDNT0meaYDeqPHJm2KRf3l+ + 3uQtfScoCNaK6v9nB1/ToFlReQM+W7b39ugj6U0QVKz+PzvOsiJFTdNLw/JG+nleXdTZan79siqW + P0tTq2B+DsaczWZ13ng6G0M+qRarMn/3Bp8Qnj2ntGnrPG+PY6+KjqfPBFUZno7XI5IOciOVtM3/ + K8g0Faf//Qcqn2wcp/ztDVM++DkYZdOSGqOQ5LJYTjHz/z8f7rRaL9ufD17ZqqKZLU+q2f9vJ9Uf + bV1VC08rdZxQT7fBE+0rNy9Koe8VCN68JbV0uBvJpW08euknH0ywHwVn7ztwHujXGa988p7DlRYf + PFr5+32GOcma/BWpdxqWN9Sn1Rpo0YvcoeCoiP1/eKz57EvmZE8NYLT/v5zYpszzVXMCW0Yj80b7 + zbno5q3/N4z2hxR6mrf+XzDknzc5FfqPPgwS4/jCEmJJ/eQNuPx8vWQSHF9c1PmFBG3EG+sFfSdZ + funBtBMwbOs5xRzEehTV5fWqKuVv+qpAR/SFUnxWkPckDvGkIk/qo0d74x2CTbjMlwiAtLNFdrEs + WsoBmQ/si49+8Ud1fp7XOf3BUeTLrCY0qFsCv7gmXAxsGvlT+9buzs5455cQHlhiAEihEBGoMeqN + PyairS8uiDJ5TZ/QQJVevN4gk/MFfD+K9nhOqJOz5Xnx7ousnc7pD7Sq1vU0fwYCAYTvDdC3LjfP + CAiUnDujP93E6gdt9TZfdv9+xsyonxCf1sEHRJn6mrv7vcBtOqpiUZRZjdCLKKgLLjopP/5FMa2r + pjpvx8c/WNf5+DWPc/zki737r917xL27BtxEfvklv+T/AZgN+qUUGgAA headers: cache-control: no-cache content-encoding: gzip - content-length: '1166' + content-length: '1182' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:17:57 GMT - elapsed-time: '33' - etag: W/"0x8D91BB334148621" + date: Sat, 08 May 2021 06:23:05 GMT + elapsed-time: '29' + etag: W/"0x8D911E9BAF2F155" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 51b9af87-b98f-11eb-92a5-a0481ca055a9 + request-id: d871c153-afc5-11eb-9eba-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search18931d2e.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + url: https://search18931d2e.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview - request: body: '{"value": [{"hotelId": "1000", "rating": 5, "rooms": [], "hotelName": "Azure Inn", "@search.action": "upload"}, {"hotelId": "1001", "rating": 4, "rooms": @@ -63,9 +63,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search18931d2e.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://search18931d2e.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -78,28 +78,28 @@ interactions: content-encoding: gzip content-length: '193' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:17:57 GMT - elapsed-time: '88' + date: Sat, 08 May 2021 06:23:05 GMT + elapsed-time: '119' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 51de6c68-b98f-11eb-86dd-a0481ca055a9 + request-id: d8a0cce3-afc5-11eb-ad0a-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search18931d2e.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + url: https://search18931d2e.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search18931d2e.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://search18931d2e.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -111,28 +111,28 @@ interactions: content-encoding: gzip content-length: '127' content-type: text/plain - date: Thu, 20 May 2021 17:18:00 GMT - elapsed-time: '131' + date: Sat, 08 May 2021 06:23:08 GMT + elapsed-time: '6' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 53d31812-b98f-11eb-b579-a0481ca055a9 + request-id: daa7c129-afc5-11eb-8e0c-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search18931d2e.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + url: https://search18931d2e.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search18931d2e.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://search18931d2e.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -146,28 +146,28 @@ interactions: content-encoding: gzip content-length: '267' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:18:00 GMT - elapsed-time: '12' + date: Sat, 08 May 2021 06:23:08 GMT + elapsed-time: '9' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 5407e94d-b98f-11eb-b577-a0481ca055a9 + request-id: dace82da-afc5-11eb-99c4-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search18931d2e.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + url: https://search18931d2e.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search18931d2e.search.windows.net/indexes('drgqefsg')/docs('1001')?api-version=2020-06-30 + uri: https://search18931d2e.search.windows.net/indexes('drgqefsg')/docs('1001')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -181,17 +181,17 @@ interactions: content-encoding: gzip content-length: '268' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:18:00 GMT - elapsed-time: '6' + date: Sat, 08 May 2021 06:23:08 GMT + elapsed-time: '4' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 5411ace7-b98f-11eb-b6d9-a0481ca055a9 + request-id: dadb6050-afc5-11eb-b9a5-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search18931d2e.search.windows.net/indexes('drgqefsg')/docs('1001')?api-version=2020-06-30 + url: https://search18931d2e.search.windows.net/indexes('drgqefsg')/docs('1001')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_delete_documents_existing.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_delete_documents_existing.yaml index 4d8008d88ba6..6ebb99ca3b1d 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_delete_documents_existing.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_delete_documents_existing.yaml @@ -10,9 +10,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search94f31ef0.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://search94f31ef0.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -25,28 +25,28 @@ interactions: content-encoding: gzip content-length: '190' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:18:16 GMT - elapsed-time: '122' + date: Sat, 08 May 2021 06:23:24 GMT + elapsed-time: '128' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 5cff3e6b-b98f-11eb-8de9-a0481ca055a9 + request-id: e431d8e9-afc5-11eb-8d4e-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search94f31ef0.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + url: https://search94f31ef0.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search94f31ef0.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://search94f31ef0.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -58,67 +58,67 @@ interactions: content-encoding: gzip content-length: '126' content-type: text/plain - date: Thu, 20 May 2021 17:18:19 GMT - elapsed-time: '5' + date: Sat, 08 May 2021 06:23:27 GMT + elapsed-time: '3' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 5ef8ee6b-b98f-11eb-881f-a0481ca055a9 + request-id: e636b0d3-afc5-11eb-ae4b-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search94f31ef0.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + url: https://search94f31ef0.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search94f31ef0.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30 + uri: https://search94f31ef0.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Thu, 20 May 2021 17:18:19 GMT - elapsed-time: '4' + date: Sat, 08 May 2021 06:23:27 GMT + elapsed-time: '3' expires: '-1' pragma: no-cache - request-id: 5f00c52a-b98f-11eb-ba98-a0481ca055a9 + request-id: e6423a24-afc5-11eb-9f3c-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 404 message: Not Found - url: https://search94f31ef0.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30 + url: https://search94f31ef0.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search94f31ef0.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://search94f31ef0.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Thu, 20 May 2021 17:18:19 GMT + date: Sat, 08 May 2021 06:23:27 GMT elapsed-time: '3' expires: '-1' pragma: no-cache - request-id: 5f0a00c1-b98f-11eb-96a4-a0481ca055a9 + request-id: e64d5d51-afc5-11eb-87ce-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 404 message: Not Found - url: https://search94f31ef0.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + url: https://search94f31ef0.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_delete_documents_missing.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_delete_documents_missing.yaml index f669bd45b3bc..375c1e7af83d 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_delete_documents_missing.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_delete_documents_missing.yaml @@ -10,9 +10,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search75f51e7f.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://search75f51e7f.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -25,28 +25,28 @@ interactions: content-encoding: gzip content-length: '193' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:18:34 GMT - elapsed-time: '102' + date: Sat, 08 May 2021 06:23:44 GMT + elapsed-time: '145' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 680b3119-b98f-11eb-bbf4-a0481ca055a9 + request-id: f019a293-afc5-11eb-b54c-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search75f51e7f.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + url: https://search75f51e7f.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search75f51e7f.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://search75f51e7f.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -58,67 +58,67 @@ interactions: content-encoding: gzip content-length: '126' content-type: text/plain - date: Thu, 20 May 2021 17:18:38 GMT + date: Sat, 08 May 2021 06:23:47 GMT elapsed-time: '4' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 6a0d1c5c-b98f-11eb-a49d-a0481ca055a9 + request-id: f2262245-afc5-11eb-9a03-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search75f51e7f.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + url: https://search75f51e7f.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search75f51e7f.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://search75f51e7f.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Thu, 20 May 2021 17:18:38 GMT - elapsed-time: '3' + date: Sat, 08 May 2021 06:23:47 GMT + elapsed-time: '4' expires: '-1' pragma: no-cache - request-id: 6a1a3bbc-b98f-11eb-93ce-a0481ca055a9 + request-id: f231fd5d-afc5-11eb-967f-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 404 message: Not Found - url: https://search75f51e7f.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + url: https://search75f51e7f.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search75f51e7f.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://search75f51e7f.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Thu, 20 May 2021 17:18:38 GMT - elapsed-time: '4' + date: Sat, 08 May 2021 06:23:47 GMT + elapsed-time: '3' expires: '-1' pragma: no-cache - request-id: 6a218ea5-b98f-11eb-a176-a0481ca055a9 + request-id: f23d40ea-afc5-11eb-afcf-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 404 message: Not Found - url: https://search75f51e7f.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + url: https://search75f51e7f.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_merge_documents_existing.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_merge_documents_existing.yaml index 136871aa283e..7d9c82ef745d 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_merge_documents_existing.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_merge_documents_existing.yaml @@ -10,9 +10,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search76d91e8d.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://search76d91e8d.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -25,28 +25,28 @@ interactions: content-encoding: gzip content-length: '190' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:18:53 GMT - elapsed-time: '136' + date: Sat, 08 May 2021 06:24:03 GMT + elapsed-time: '83' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 734dbb19-b98f-11eb-9791-a0481ca055a9 + request-id: fbab091d-afc5-11eb-b039-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search76d91e8d.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + url: https://search76d91e8d.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search76d91e8d.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://search76d91e8d.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -58,28 +58,28 @@ interactions: content-encoding: gzip content-length: '127' content-type: text/plain - date: Thu, 20 May 2021 17:18:56 GMT - elapsed-time: '5' + date: Sat, 08 May 2021 06:24:07 GMT + elapsed-time: '4' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 7548a50d-b98f-11eb-992b-a0481ca055a9 + request-id: fdb938c7-afc5-11eb-b35a-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search76d91e8d.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + url: https://search76d91e8d.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search76d91e8d.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30 + uri: https://search76d91e8d.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -96,28 +96,28 @@ interactions: content-encoding: gzip content-length: '438' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:18:56 GMT - elapsed-time: '15' + date: Sat, 08 May 2021 06:24:07 GMT + elapsed-time: '8' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 7553a184-b98f-11eb-be4f-a0481ca055a9 + request-id: fdc57497-afc5-11eb-8190-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search76d91e8d.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30 + url: https://search76d91e8d.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search76d91e8d.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://search76d91e8d.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -134,17 +134,17 @@ interactions: content-encoding: gzip content-length: '422' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:18:56 GMT - elapsed-time: '9' + date: Sat, 08 May 2021 06:24:07 GMT + elapsed-time: '4' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 7563ce10-b98f-11eb-a68e-a0481ca055a9 + request-id: fdd143c0-afc5-11eb-876b-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search76d91e8d.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + url: https://search76d91e8d.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_merge_documents_missing.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_merge_documents_missing.yaml index 828227d71a74..4ab43d4f8af4 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_merge_documents_missing.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_merge_documents_missing.yaml @@ -10,9 +10,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search583e1e1c.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://search583e1e1c.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -25,28 +25,28 @@ interactions: content-encoding: gzip content-length: '225' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:19:13 GMT - elapsed-time: '108' + date: Sat, 08 May 2021 06:24:23 GMT + elapsed-time: '89' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 7ed0e947-b98f-11eb-a874-a0481ca055a9 + request-id: 070070b2-afc6-11eb-b2d2-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 207 message: Multi-Status - url: https://search583e1e1c.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + url: https://search583e1e1c.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search583e1e1c.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://search583e1e1c.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -58,53 +58,53 @@ interactions: content-encoding: gzip content-length: '127' content-type: text/plain - date: Thu, 20 May 2021 17:19:16 GMT + date: Sat, 08 May 2021 06:24:26 GMT elapsed-time: '3' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 80cd1aea-b98f-11eb-9f23-a0481ca055a9 + request-id: 08ff12fe-afc6-11eb-9da9-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search583e1e1c.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + url: https://search583e1e1c.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search583e1e1c.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://search583e1e1c.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Thu, 20 May 2021 17:19:16 GMT + date: Sat, 08 May 2021 06:24:26 GMT elapsed-time: '4' expires: '-1' pragma: no-cache - request-id: 80d5be29-b98f-11eb-a753-a0481ca055a9 + request-id: 090998ac-afc6-11eb-bed2-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 404 message: Not Found - url: https://search583e1e1c.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + url: https://search583e1e1c.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search583e1e1c.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://search583e1e1c.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -121,17 +121,17 @@ interactions: content-encoding: gzip content-length: '422' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:19:16 GMT - elapsed-time: '8' + date: Sat, 08 May 2021 06:24:26 GMT + elapsed-time: '9' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 80de7637-b98f-11eb-b6eb-a0481ca055a9 + request-id: 09140cc0-afc6-11eb-915c-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search583e1e1c.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + url: https://search583e1e1c.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_merge_or_upload_documents.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_merge_or_upload_documents.yaml index 11f3ee72015f..9b4854da1e49 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_merge_or_upload_documents.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_merge_or_upload_documents.yaml @@ -10,9 +10,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search95271ee7.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://search95271ee7.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -25,28 +25,28 @@ interactions: content-encoding: gzip content-length: '196' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:19:29 GMT - elapsed-time: '105' + date: Sat, 08 May 2021 06:24:42 GMT + elapsed-time: '112' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 8913b5f5-b98f-11eb-8cc2-a0481ca055a9 + request-id: 1297353a-afc6-11eb-a991-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search95271ee7.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + url: https://search95271ee7.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search95271ee7.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://search95271ee7.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -58,28 +58,28 @@ interactions: content-encoding: gzip content-length: '127' content-type: text/plain - date: Thu, 20 May 2021 17:19:32 GMT - elapsed-time: '3' + date: Sat, 08 May 2021 06:24:45 GMT + elapsed-time: '4' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 8b0a2f11-b98f-11eb-bc01-a0481ca055a9 + request-id: 149b8bc9-afc6-11eb-9dfc-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search95271ee7.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + url: https://search95271ee7.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search95271ee7.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://search95271ee7.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -93,28 +93,28 @@ interactions: content-encoding: gzip content-length: '257' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:19:32 GMT - elapsed-time: '8' + date: Sat, 08 May 2021 06:24:45 GMT + elapsed-time: '6' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 8b132fef-b98f-11eb-95c2-a0481ca055a9 + request-id: 14a6727d-afc6-11eb-be0d-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search95271ee7.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + url: https://search95271ee7.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search95271ee7.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://search95271ee7.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -131,17 +131,17 @@ interactions: content-encoding: gzip content-length: '422' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:19:32 GMT - elapsed-time: '13' + date: Sat, 08 May 2021 06:24:45 GMT + elapsed-time: '6' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 8b1e5385-b98f-11eb-9b5e-a0481ca055a9 + request-id: 14b229b2-afc6-11eb-81cb-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search95271ee7.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + url: https://search95271ee7.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_upload_documents_existing.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_upload_documents_existing.yaml index 2df35c7f9437..e1f7ffaca891 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_upload_documents_existing.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_upload_documents_existing.yaml @@ -11,9 +11,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search96dd1f02.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://search96dd1f02.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -26,17 +26,17 @@ interactions: content-encoding: gzip content-length: '196' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:19:47 GMT - elapsed-time: '151' + date: Sat, 08 May 2021 06:25:00 GMT + elapsed-time: '186' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 933cb9cf-b98f-11eb-aae6-a0481ca055a9 + request-id: 1d2d4397-afc6-11eb-b924-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search96dd1f02.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + url: https://search96dd1f02.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_upload_documents_new.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_upload_documents_new.yaml index 5626463ca7f5..b684b34e0145 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_upload_documents_new.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_index_document_live_async.test_upload_documents_new.yaml @@ -11,9 +11,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search21ce1.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://search21ce1.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -26,28 +26,28 @@ interactions: content-encoding: gzip content-length: '193' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:20:03 GMT - elapsed-time: '114' + date: Sat, 08 May 2021 06:25:17 GMT + elapsed-time: '102' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 9d0833ec-b98f-11eb-b503-a0481ca055a9 + request-id: 2778352a-afc6-11eb-be4f-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search21ce1.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + url: https://search21ce1.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search21ce1.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://search21ce1.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -59,28 +59,28 @@ interactions: content-encoding: gzip content-length: '127' content-type: text/plain - date: Thu, 20 May 2021 17:20:06 GMT - elapsed-time: '4' + date: Sat, 08 May 2021 06:25:20 GMT + elapsed-time: '3' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 9f1038ad-b98f-11eb-b899-a0481ca055a9 + request-id: 29794321-afc6-11eb-abf0-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search21ce1.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + url: https://search21ce1.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search21ce1.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://search21ce1.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -94,28 +94,28 @@ interactions: content-encoding: gzip content-length: '267' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:20:07 GMT - elapsed-time: '11' + date: Sat, 08 May 2021 06:25:20 GMT + elapsed-time: '8' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 9f1ae749-b98f-11eb-9b2a-a0481ca055a9 + request-id: 2984c195-afc6-11eb-8506-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search21ce1.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + url: https://search21ce1.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=none User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search21ce1.search.windows.net/indexes('drgqefsg')/docs('1001')?api-version=2020-06-30 + uri: https://search21ce1.search.windows.net/indexes('drgqefsg')/docs('1001')?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -129,17 +129,17 @@ interactions: content-encoding: gzip content-length: '268' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:20:07 GMT - elapsed-time: '6' + date: Sat, 08 May 2021 06:25:20 GMT + elapsed-time: '5' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 9f3c03d0-b98f-11eb-80f2-a0481ca055a9 + request-id: 29909f32-afc6-11eb-9d54-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search21ce1.search.windows.net/indexes('drgqefsg')/docs('1001')?api-version=2020-06-30 + url: https://search21ce1.search.windows.net/indexes('drgqefsg')/docs('1001')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_autocomplete.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_autocomplete.yaml index 325469fce42a..c1f403dd21e6 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_autocomplete.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_autocomplete.yaml @@ -9,9 +9,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search62221634.search.windows.net/indexes('drgqefsg')/docs/search.post.autocomplete?api-version=2020-06-30 + uri: https://search62221634.search.windows.net/indexes('drgqefsg')/docs/search.post.autocomplete?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -23,17 +23,17 @@ interactions: content-encoding: gzip content-length: '163' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:20:27 GMT - elapsed-time: '168' + date: Sat, 08 May 2021 06:25:35 GMT + elapsed-time: '67' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: ab4a41ef-b98f-11eb-90ce-a0481ca055a9 + request-id: 3292ed17-afc6-11eb-9c7a-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search62221634.search.windows.net/indexes('drgqefsg')/docs/search.post.autocomplete?api-version=2020-06-30 + url: https://search62221634.search.windows.net/indexes('drgqefsg')/docs/search.post.autocomplete?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_counts.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_counts.yaml index da753972cde8..b25ac3ff3f78 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_counts.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_counts.yaml @@ -9,15 +9,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchd5601832.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://searchd5601832.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR5dZ - uc4/evS9X/zR79nkWT2dj5tpVdMne+Od+/u7O/dGH82rNi/PZh89+mh35yP980W2oDYfnVTrZVtf + uc4/evS9X/zR79nkWT2dj5tpVdMne+O9/fs7Bw9GH82rNi/PZh89+mh35yP980W2oDYfnVTrZVtf N8UsT7+Nz+n7Wd5M62LVFtWSWrzOLvN0vUrbKr2/87un1fl52tbZrMDXWZkysGacps/qPE+/Wzwr RulFnWdtWlbTDI3SJaGVzqqrZUv/H6Xn67JM3xbtdJ7TX1dZM8/r9Bems/o6r0fp3v7dB2mzXq2q uh2lk+qqLJYXaVaW+TW9WrTLvGnSab5s6aVsOUsXNNZxiPSzmtD+fdc7O9OH02pZLYom/0H60+vm @@ -25,56 +25,56 @@ interactions: zcjV+fZlQTiP0um6aIplnk6rxaqUVi19XBJV101O4274w4dEDfp7RGjx0JkOdvwEhoGmNEuGBnmb rso1/VxiukECInd+UdXXNPon69lF3tJnbXbREHN8tLe/Pa9oxOd1tWwJTPM2bfL6spjm1GhKk0qT VyxpziaTa/qkzps2W9fZsv3o+6OPVln9lrA4W07L9SwnPjrPSsL1o2ZR4fPjsqyu8HFbr+nTMmva - V/myuuTZf0pIEUK7Dx8+3N6h/336ZmfnEf/vp9APtVlefPSImNSwy0ePfvFH7fUKL72sCkIA+FX1 - rFgSJIxl+8HB+OH+zv7BvdG9++OHO/u7nxKO05q+s28uwd2EeF2t8rot8N4vlg8ffXT68vXnj/bv - 7X360S/5Jb9k9FE2m9FouUFDJM7bY/PBR58+3N1Jn2XXedvmPJ3pqxlBnRYtaPx0Xc+zBf1NpGrz - l3V1WSyJnI8+enFCH05FsOjPr14f09+ripqVJ9UMLfYePNi99xF1XlfVgnoi4aUpMfxLDV4TwxEz - 7Ka/F5EnfZLP0q3jRb4k3sybOwTNa83cbts7HiW2JfEoizbdei0zzW8qgfgF+nOSNfkrQh/qYn+f - /s5nXzJYwuoj1z21bMo8XzWsL6gx/R2dfMNvylKL7G1ef/T9XzLqDlAYNH1F4wfaP7HOSaKooxvG - eUIUn5AcYJBGun8R9UsgNo/X648+dKN+MP70If0djtpiQ01vGraKwsC4eeQdvbwzfnhv78HuDgFj - 5cmK+R51xX+pXj7F2F63GYTRIwJ985N5fZ2uqtW6JK3Kr0BwoVrDpkyvb4NQrNxI14m+kFcLIiKN - kbma3iPRG1QdV8V5QX9O5HMStZ46kKkfoMyQOri/vfNge2c3qg6IEW+vDnb39sa793bvP3gw2v90 - /OmDg/sHu4TlhyuEJRkqwolYhv743q2ncp/64b/MVL5bAR7zXkPfeXNE376sSbtcpxdVNZPZDFvw - LB43sGATMqXOWFEzItD/Lybt4P8Fk3af+uG/dNJOqsX5dfqyzEijBxNC3x0vqxY+y8Y5+2qZZmuy - Jz/307a3s7u3vXNAJP//+LQd3P/0wc4eqWumOU/bHvXDf+m0vaqy6Tz9Ap/QN96c0Hcn8zxbkV8j - U2aU5jg9W55nU3LvMvIl6Qt4Ut6LPJmhGl0QbcgHBQsYFeqgrJf0PTUEGKLq4ExzI/r7vadaPo3O - 9O7DA5rp/e29g+hM79JrX2umH/7QZ/re/j71rXPLM71L/fBfOtPPsuX0Oo1ayCe9SU6L8/S6WpN3 - 8DZPy/W7NZlQbkBO/pt5Tn+QO07hRJotsh8Qrei984K8EBjaqgRrNKuMfpCDkaUU3JQlvZKXKwpl - yLFfTou8viAeIFDkQQuF04JMbV6f59M23d5O6+JiTn434QJ8yJ8vK/L+KaYiWClpE/p1XReEd9ZS - EDIFBMLtu3k6pxeptzqnAII8oxk1JsiMPFjMGzlz6hc52JEcfadyLJNSxJJeVuQCZMWC7Ek3+KHY - gkhDwzijPyqKEtYUtiyyiyXpJPKx0lXRTBHJ4BWKoWb88+GEuCYnxIT1iUwITOg3SxbPJV23BUTl - +cc5xUKkWfFaiski1j/PyHP7fdekrO4B4VWZ09xJ1DOizwnADoVZ1btiUbT850MgTFQjfuWheITD - xyAm0CYqvsCYhYA0g/j+nCIs6X1K2DoigKI0fUZonzOn0GdGaMEN9OdlkV/RD1XWdqRRIVbN3JVi - /TgqxkSDHQqUtvceRMWYxMIwGcRNRfEWYky+7g9XjO/d39vfe/DwU5VcluOH1BH/pXL8Op+SB5Qy - +gOKG2LFr0CmKFFBInMtcpbPiFFJIsCnYBea4byeFpSWyGiCScgrSlbQt4jYSKb5d7ICFF7TFy/y - q/T3qeq34/Q4PaffF8WSmSm7yqhxk74hKfm4SV//onVGZpw4R14nvqrqYkqcA94EIHyMHkhBNOlV - TgJNP8VFYDanP86pd0IIvN7OKTeC+MAiQGNgOBT5EOCM+lxU1NAwNGumGQ2OeGhVUYBDeoq6o2kC - u3qkYgXw/GPHzixbhQpqVgrHe2kLToFkJFYUuBYragCy8XcHNDJHTc47UEPRIk46qenu/XsEhL42 - gwE1SexK+j+NQ0kKVVdXaxoJQWGaIFFCIrii/AVliqgzQo36VOrSy4BJjblLIixZ3AJw09nH7FaR - zBf5+h39SYQlPGg4omaIuL9oXZCE01AJhEErLT+GOiNqCUh6n/7PAZGjMyPj6Ex/E4Ty4+MFQ37I - eIHm4DxVEU9IAeFj+rSjJCjEIlhLySdBcOm9r6MpNtr7B6Qodrd3yd7fJy1B//MVxT69BimhFyDQ - KuwsadSqoyge3Bs/fHB/n9KF+zvjB5/u3D/4WcuqPHiQ3m/n6fElgBEng45mnugTypOE6ZTfhz7c - mE7Z3dnZ29uUThHviyMwpApsfJ9unVD3SH4iVeC9w6J0u2QDpADihh8kU8xdgKY087qmD13igXwq - 8mQ/IPEgfGGY7nJa351dzijlQIrYGwiB9TAA6ialk259AdgkWelPkj0Dyt57NxHAGXWPFD2AN9Dg - YLzTp4HBj1p+PRKMPvrpbLr+wQ+KtF1PiCD47/8BfQWqIicXAAA= + V/myuuTZf0pIEUK7Dx8+3N6h/336ZmfnEf/vp9APtVlefPToHr2m7PLRo1/8UXu9wksvq4IQAH5V + PSuWBAlj2X5wMH64v7N/cG907/744c7+7qeE47Sm7+ybS3A3IV5Xq7xuC7z3i+XDRx+dvnz9+aP9 + e3uffvRLfskvGX2UzWY0Wm7QEInz9th88NGnD3d30mfZdd62OU9n+mpGUKdFCxo/XdfzbEF/E6na + /GVdXRZLIuejj16c0IdTESz686vXx/T3qqJm5Uk1Q4u9Bw92731EnddVtaCeSHhpSgz/UoPXxHDE + DLvp70XkSZ/ks3TreJEviTfz5g5B81ozt9v2jkeJbUk8yqJNt17LTPObSiB+gf6cZE3+itCHutjf + p7/z2ZcMlrD6yHVPLZsyz1cN6wtqTH9HJ9/wm7LUInub1x99/5eMugMUBk1f0fiB9k+sc5Io6uiG + cZ4QxSckBxikke5fRP0SiM3j9fqjD92oH4w/fUh/h6O22FDTm4atojAwbh55Ry/vjh88ONg52FVF + zHr5HvXEf6laPsXQXrcZZNGjAX3zk3l9na6q1bokpcqvQG6hWcOmTK5vg06s20jVibqQVwuiIQ2R + mZreI8kb1BxXxXlBf07kc5K0njaQmR8gzJA2uL+982B7ZzeqDYgPb68Ndvf2xrv3du8/eDDa/3T8 + 6YOD+we7hOWH64Ml2SnCiTiG/vjebWdyn7rhv8xMvlsBHHNeQ995U0TfvqxJt1ynF1U1k8kMW/Ak + HjewXxMypM5UUTOiz/8v5uzg537O7lM3/JfO2Um1OL9OX5YZqfNgPui742XVwmHZOGVfLdNsTcbk + 537W9nZ297Z3Doji/x+ftfsP9h/u3iddzTTnadujfvgvnbZXVTadp1/gE/rGmxP67mSeZytyamTK + jMocp2fL82xKvl1GjiR9ATfKe5EnM1SiC6INOaBgAaNAHZT1kr6nhgBDVB2caW5Ef7/3VMun0Zne + fXhAM72/vXcQnWli+K830w9/2DO9/+m9/QfwRXiqeKZ3qR/+S2f6WbacXqdR+/ikN8lpcZ5eV2ty + Dd7mabl+tyYDyg3Iw38zz+kP8sUplkizRfYDohW9d16QCwIzW5VgjWaV0Q/yLrKUIpuypFfyckVx + DHn1y2mR1xfEAwSK3GehcFqQoc3r83zaptvbaV1czMnpJlyADznzZUWuPwVUBCslbUK/ruuC8M5a + ikCmgEC4fTdP5/Qi9VbnFD2QWzSjxgSZkQeLeSNnTv0iBzuSl+9UjmVSClfSy4ocgKxYkDnpRj4U + WBBpaBhn9EdFIcKaYpZFdrEknUQOVroqminCGLxCAdSMfz6cENfkhJiwPpEJUQn9Zsni+aPrtoCo + PP84p0CINCteSzFZxPrnGbltv++alNU9ILwqc5o7CXlG9DkB2KEYq3pXLIqW/3wIhIlqxK88FI9w + +BjEBNpExRcYsxCQZhDfn1N4Jb1PCVtHBFCUps8I7XPmFPrMCC24gf68LPIr+qHK2o40KsSqmbtS + rB9HxZhosENR0vbeg6gY36fXlMkgbiqKtxBjcnR/mGK8M76///DT3X3ymJldWYwfUj/8l4rx63xK + /k/K2A/obUgVvwKRoiQFScy1iFk+Iz4lgQCbgltogvN6WlBKIqP5JRmvKFFB3yJaI5Hm38kIUGhN + X7zIr9Lfp6rfjtPj9Jx+XxRL5qXsKqPGTfqGhOTjJn39i9YZWXFiHHmd2KqqiykxDlgTgPAxeiD9 + 0KRXOckz/RQPgbmc/jin3gkhsHo7p7wIYgOLAI2B4VDUQ4Az6nNRUUPDz6yYZjQ4YqFVRcENqSnq + jmYJ3OqRiuX/+ceOm1m0CpXTrBSG91IWnP7ISKooaC1W1ABk4+8OaGSOmpxzoIaiRJxwUtPd+/cI + CH1tBgNqktSV9H8ah5IUmq6u1jQSgsI0QZKEJHBFuQvKElFnhBr1qdSllwGTGnOXRFgyuAXgprOP + 2asikS/y9Tv6kwhLeNBwRMsQcX/RuiABp6ESCINWWn4MbUbUEpD0Pv2foyFHZ0bG0Zn+Jgjlx8cL + hvyQ8QLNwXmqIZ6Q/sHH9GlHR1B8RbCWkkuC3NJ7X0dRbDT3D0hP7G7vkrm/T0qC/ufrCTKfLCX0 + AuRZZZ0ljVp19MSDe+OHD+7v79wb7e+MH3y6c//gZy2j8uBBer+dp8eXAEacDDqaeaJPKEcSplJ+ + H/pwYypld2dnb29TKkWcL46/kCawsX26dULdI/GJNIH3DovS7RINkAKIG36QTDF3AZrSzOuaPnRJ + B3KpyJH9gKSD8IVhustpfXd2OaN0A+lhbyAE1sMAqJt0Trr1BWCTZKU/SeYMKHvv3UQAZ9M9UvQA + 3kCDg/FOnwYGP2r59Ugw+uins+n6Bz8o0nY9IYLgv/8HeI4y3SMXAAA= headers: cache-control: no-cache content-encoding: gzip - content-length: '2375' + content-length: '2378' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:20:46 GMT - elapsed-time: '122' + date: Sat, 08 May 2021 06:25:51 GMT + elapsed-time: '171' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: b60d3b65-b98f-11eb-abed-a0481ca055a9 + request-id: 3bb6cfd5-afc6-11eb-968b-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchd5601832.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + url: https://searchd5601832.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview - request: body: '{"count": true, "search": "hotel"}' headers: @@ -85,70 +85,70 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchd5601832.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://searchd5601832.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n - NcvabDyt1sv2o0cPRh9dZuU6/+jR9+irJs/q6XzcTKuaPtkb79zf3925N/poXrV5eTb76NFHuzsf - 6Z8vsgW1+egEcOrrppjl6bfxOX0/y5tpXazaolpSi9fZZZ6uV2lbpfd3fve0Oj9P2zqbFfg6K1MG - 1ozT9Fmd5+l3i2fFKL2o86xNy2qaoVG6JLTSWXW1bOn/o/R8XZbp26KdznP66ypr5nmd/sJ0Vl/n - 9Sjd27/7IG3Wq1VVt6N0Ul2VxfIizcoyv6ZXi3aZN006zZctvZQtZ+mCxjoOkX5WE9q/73pnZ/pw - Wi2rRdHkP0h/et38ovXH+DTf4YE06zot8yad47PzfYzCDWxJf9GYMBwaTdauC0KmrdE0P2jSSZEv - 06Zo1/zBw3Rlv5mtGbk6374sCOdROl0XTbHM02m1WJXSqqWPS6Lquslp3A1/+JCoQX+PCC0eOtPB - jp/AMNCUZsnQIG/TVbmmn0tMN0hA5M4vqvqaRv9kPbvIW/qszS4aYo6P9va35xWN+Lyuli2Bad6m - TV5fFtOcGk1pUmnyiiXN2WRyTZ/UedNm6zojHvv+6KNVVr8lLM6W03I9y4mPzrOScP2oWVT4/Lgs - qyt83NZr+rTMmvZVvqwuefafElKE0O7Dhw+3d+h/n77Z2XnE//sp9ENtlhcfPSImNezy0aNf/FF7 - vcJLL6uCEAB+VT0rlgQJY9l+cDB+uL+zf3BvdO/++OHO/u6nhOO0pu/sm0twNyFeV6u8bgu894vl - w0cfnb58/fmj/Xt7n370S37JLxl9lM1mNFpu0BCJ8/bYfPDRpw93d9Jn2XXetjlPZ/pqRlCnRQsa - P13X82xBfxOp2vxlXV0WSyLno49enNCHLKA8F1+9Pqa/VxU1K0+qGVrsPXiwe+8j6ryuqgX1RMJL - U2L4lxq8JoYjZthNfy8iT/okn6Vbx4t8SbyZN3cImteaud22dzxKbEviURZtuvVaZprfVALxC/Tn - JGvyV4Q+1MX+Pv2dz75ksITVR657atmUeb5qWF9QY/o7OvmG35SlFtnbvP7o+79k1B2gMGj6isYP - tH9inZNEUUc3jPOEKD4hOcAgjXT/IuqXQGwer9cffehG/WD86UP6Oxy1xYaa3jRsFYWBcfPIO3p5 - Z/zw3t6D3R0CxsqTFfM96or/Ur18irG9bjMIo0cE+uYn8/o6XVWrdUlalV+B4EK1hk2ZXt8GoVi5 - ka4TfSGvFkREGiNzNb1HojeoOq6K84L+nMjnJGo9dSBTP0CZIXVwf3vnwfbOblQdECPeXh3s7u2N - d+/t3n/wYLT/6fjTBwf3D3YJyw9XCEsyVIQTsQz98b1bT+U+9cN/mal8twI85r2GvvPmiL59WZN2 - uU4vqmomsxm24Fk8bmDBJmRKnbGiZkSg/19M2sH/CybtPvXDf+mknVSL8+v0ZZmRRg8mhL47XlYt - fJaNc/bVMs3WZE9+7qdtb2d3b3vngEj+//FpO7j/6YOdPVLXTHOetj3qh//SaXtVZdN5+gU+oW+8 - OaHvTuZ5tiK/RqbMKM1xerY8z6bk3mXkS9IX8KS8F3kyQzW6INqQDwoWMCrUQVkv6XtqCDBE1cGZ - 5kb093tPtXwanendhwc00/vbewfRmd6l177WTD/8oc/0vf196lvnlmd6l/rhv3Smn2XL6XUatZBP - epOcFufpdbUm7+Btnpbrd2syodyAnPw385z+IHecwok0W2Q/IFrRe+cFeSEwtFUJ1mhWGf0gByNL - KbgpS3olL1cUypBjv5wWeX1BPECgyIMWCqcFmdq8Ps+nbbq9ndbFxZz8bsIF+JA/X1bk/VNMRbBS - 0ib067ouCO+spSBkCgiE23fzdE4vUm91TgEEeUYzakyQGXmwmDdy5tQvcrAjOfpO5VgmpYglvazI - BciKBdmTbvBDsQWRhoZxRn9UFCWsKWxZZBdL0knkY6WropkiksErFEPN+OfDCXFNTogJ6xOZEJjQ - b5Ysnku6bguIyvOPc4qFSLPitRSTRax/npHn9vuuSVndA8KrMqe5k6hnRJ8TgB0Ks6p3xaJo+c+H - QJioRvzKQ/EIh49BTKBNVHyBMQsBaQbx/TlFWNL7lLB1RABFafqM0D5nTqHPjNCCG+jPyyK/oh+q - rO1Io0KsmrkrxfpxVIyJBjsUKG3vPYiKMYmFYTKIm4riLcSYfN0frhjfu7+3v/fg4acquSzHD6kj - /kvl+HU+JQ8oZfQHFDfEil+BTFGigkTmWuQsnxGjkkSAT8EuNMN5PS0oLZHRBJOQV5SsoG8RsZFM - 8+9kBSi8pi9e5Ffp71PVb8fpcXpOvy+KJTNTdpVR4yZ9Q1LycZO+/kXrjMw4cY68TnxV1cWUOAe8 - CUD4GD2QgmjSq5wEmn6Ki8BsTn+cU++EEHi9nVNuBPGBRYDGwHAo8iHAGfW5qKihYWjWTDMaHPHQ - qqIAh/QUdUfTBHb1SMUK4PnHjp1ZtgoV1KwUjvfSFpwCyUisKHAtVtQAZOPvDmhkjpqcd6CGokWc - dFLT3fv3CAh9bQYDapLYlfR/GoeSFKqurtY0EoLCNEGihERwRfkLyhRRZ4Qa9anUpZcBkxpzl0RY - srgF4Kazj9mtIpkv8vU7+pMIS3jQcETNEHF/0bogCaehEgiDVlp+DHVG1BKQ9D79nwMiR2dGxtGZ - /iYI5cfHC4b8kPECzcF5qiKekALCx/RpR0lQiEWwlpJPguDSe19HU2y09w9IUexu75K9v09agv7n - K4p9eg1SQi9AoFXYWdKoVUdRPLg3fvjg/j6lC/d3xg8+3bl/8LOWVXnwIL3fztPjSwAjTgYdzTzR - J5QnCdMpvw99uDGdsruzs7e3KZ0i3hdHYEgV2Pg+3Tqh7pH8RKrAe4dF6XbJBkgBxA0/SKaYuwBN - aeZ1TR+6xAP5VOTJfkDiQfjCMN3ltL47u5xRyoEUsTcQAuthANRNSifd+gKwSbLSnyR7BpS9924i - gDPqHil6AG+gwcF4p08Dgx+1/HokGH3009l0/YMfFGm7nhBB8N//Ayy4vkg4FwAA + NcvabDyt1sv2o0cPRh9dZuU6/+jR9+irJs/q6XzcTKuaPtkb7+3f3zmgJvOqzcuz2UePPtrd+Uj/ + fJEtqM1HJ4BTXzfFLE+/jc/p+1neTOti1RbVklq8zi7zdL1K2yq9v/O7p9X5edrW2azA11mZMrBm + nKbP6jxPv1s8K0bpRZ1nbVpW0wyN0iWhlc6qq2VL/x+l5+uyTN8W7XSe019XWTPP6/QXprP6Oq9H + 6d7+3Qdps16tqrodpZPqqiyWF2lWlvk1vVq0y7xp0mm+bOmlbDlLFzTWcYj0s5rQ/n3XOzvTh9Nq + WS2KJv9B+tPr5hetP8an+Q4PpFnXaZk36Ryfne9jFG5gS/qLxoTh0Giydl0QMm2NpvlBk06KfJk2 + RbvmDx6mK/vNbM3I1fn2ZUE4j9LpumiKZZ5Oq8WqlFYtfVwSVddNTuNu+MOHRA36e0Ro8dCZDnb8 + BIaBpjRLhgZ5m67KNf1cYrpBAiJ3flHV1zT6J+vZRd7SZ2120RBzfLS3vz2vaMTndbVsCUzzNm3y + +rKY5tRoSpNKk1csac4mk2v6pM6bNlvXGfHY90cfrbL6LWFxtpyW61lOfHSelYTrR82iwufHZVld + 4eO2XtOnZda0r/Jldcmz/5SQIoR2Hz58uL1D//v0zc7OI/7fT6EfarO8+OjRPXpN2eWjR7/4o/Z6 + hZdeVgUhAPyqelYsCRLGsv3gYPxwf2f/4N7o3v3xw5393U8Jx2lN39k3l+BuQryuVnndFnjvF8uH + jz46ffn680f79/Y+/eiX/JJfMvoom81otNygIRLn7bH54KNPH+7upM+y67xtc57O9NWMoE6LFjR+ + uq7n2YL+JlK1+cu6uiyWRM5HH704oQ9ZQHkuvnp9TH+vKmpWnlQztNh78GD33kfUeV1VC+qJhJem + xPAvNXhNDEfMsJv+XkSe9Ek+S7eOF/mSeDNv7hA0rzVzu23veJTYlsSjLNp067XMNL+pBOIX6M9J + 1uSvCH2oi/19+juffclgCauPXPfUsinzfNWwvqDG9Hd08g2/KUstsrd5/dH3f8moO0Bh0PQVjR9o + /8Q6J4mijm4Y5wlRfEJygEEa6f5F1C+B2Dxerz/60I36wfjTh/R3OGqLDTW9adgqCgPj5pF39PLu + +MGDg52DXVXErJfvUU/8l6rlUwztdZtBFj0a0Dc/mdfX6aparUtSqvwK5BaaNWzK5Po26MS6jVSd + qAt5tSAa0hCZqek9krxBzXFVnBf050Q+J0nraQOZ+QHCDGmD+9s7D7Z3dqPagPjw9tpgd29vvHtv + 9/6DB6P9T8efPji4f7BLWH64PliSnSKciGPoj+/ddib3qRv+y8zkuxXAMec19J03RfTty5p0y3V6 + UVUzmcywBU/icQP7NSFD6kwVNSP6/P9izg5+7ufsPnXDf+mcnVSL8+v0ZZmROg/mg747XlYtHJaN + U/bVMs3WZEx+7mdtb2d3b3vngCj+//FZu/9g/+HufdLVTHOetj3qh//SaXtVZdN5+gU+oW+8OaHv + TuZ5tiKnRqbMqMxxerY8z6bk22XkSNIXcKO8F3kyQyW6INqQAwoWMArUQVkv6XtqCDBE1cGZ5kb0 + 93tPtXwanendhwc00/vbewfRmSaG/3oz/fCHPdP7n97bfwBfhKeKZ3qX+uG/dKafZcvpdRq1j096 + k5wW5+l1tSbX4G2elut3azKg3IA8/DfznP4gX5xiiTRbZD8gWtF75wW5IDCzVQnWaFYZ/SDvIksp + silLeiUvVxTHkFe/nBZ5fUE8QKDIfRYKpwUZ2rw+z6dtur2d1sXFnJxuwgX4kDNfVuT6U0BFsFLS + JvTrui4I76ylCGQKCITbd/N0Ti9Sb3VO0QO5RTNqTJAZebCYN3Lm1C9ysCN5+U7lWCalcCW9rMgB + yIoFmZNu5EOBBZGGhnFGf1QUIqwpZllkF0vSSeRgpauimSKMwSsUQM3458MJcU1OiAnrE5kQldBv + liyeP7puC4jK849zCoRIs+K1FJNFrH+ekdv2+65JWd0Dwqsyp7mTkGdEnxOAHYqxqnfFomj5z4dA + mKhG/MpD8QiHj0FMoE1UfIExCwFpBvH9OYVX0vuUsHVEAEVp+ozQPmdOoc+M0IIb6M/LIr+iH6qs + 7UijQqyauSvF+nFUjIkGOxQlbe89iIrxfXpNmQzipqJ4CzEmR/eHKcY74/v7Dz/d3SePmdmVxfgh + 9cN/qRi/zqfk/6SM/YDehlTxKxApSlKQxFyLmOUz4lMSCLApuIUmOK+nBaUkMppfkvGKEhX0LaI1 + Emn+nYwAhdb0xYv8Kv19qvrtOD1Oz+n3RbFkXsquMmrcpG9ISD5u0te/aJ2RFSfGkdeJraq6mBLj + gDUBCB+jB9IPTXqVkzzTT/EQmMvpj3PqnRACq7dzyosgNrAI0BgYDkU9BDijPhcVNTT8zIppRoMj + FlpVFNyQmqLuaJbArR6pWP6ff+y4mUWrUDnNSmF4L2XB6Y+MpIqC1mJFDUA2/u6ARuaoyTkHaihK + xAknNd29f4+A0NdmMKAmSV1J/6dxKEmh6epqTSMhKEwTJElIAleUu6AsEXVGqFGfSl16GTCpMXdJ + hCWDWwBuOvuYvSoS+SJfv6M/ibCEBw1HtAwR9xetCxJwGiqBMGil5cfQZkQtAUnv0/85GnJ0ZmQc + nelvglB+fLxgyA8ZL9AcnKca4gnpH3xMn3Z0BMVXBGspuSTILb33dRTFRnP/gPTE7vYumfv7pCTo + f76eIPPJUkIvQJ5V1lnSqFVHTzy4N3744P7+zr3R/s74wac79w9+1jIqDx6k99t5enwJYMTJoKOZ + J/qEciRhKuX3oQ83plJ2d3b29jalUsT54vgLaQIb26dbJ9Q9Ep9IE3jvsCjdLtEAKYC44QfJFHMX + oCnNvK7pQ5d0IJeKHNkPSDoIXximu5zWd2eXM0o3kB72BkJgPQyAuknnpFtfADZJVvqTZM6Asvfe + TQRwNt0jRQ/gDTQ4GO/0aWDwo5ZfjwSjj346m65/8IMibdcTIgj++38AcJ2CajQXAAA= headers: cache-control: no-cache content-encoding: gzip - content-length: '2385' + content-length: '2387' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:20:46 GMT - elapsed-time: '15' + date: Sat, 08 May 2021 06:25:51 GMT + elapsed-time: '7' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: b675e844-b98f-11eb-85f3-a0481ca055a9 + request-id: 3bf9986d-afc6-11eb-8b80-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchd5601832.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + url: https://searchd5601832.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_coverage.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_coverage.yaml index 49d2718d1e01..ec4085c6a0e5 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_coverage.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_coverage.yaml @@ -9,15 +9,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search6a118e2.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://search6a118e2.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR5dZ - uc4/evS9X/zR79nkWT2dj5tpVdMne+Od+/u7O/dGH82rNi/PZh89+mh35yP980W2oDYfnVTrZVtf + uc4/evS9X/zR79nkWT2dj5tpVdMne+O9/fs7Bw9GH82rNi/PZh89+mh35yP980W2oDYfnVTrZVtf N8UsT7+Nz+n7Wd5M62LVFtWSWrzOLvN0vUrbKr2/87un1fl52tbZrMDXWZkysGacps/qPE+/Wzwr RulFnWdtWlbTDI3SJaGVzqqrZUv/H6Xn67JM3xbtdJ7TX1dZM8/r9Bems/o6r0fp3v7dB2mzXq2q uh2lk+qqLJYXaVaW+TW9WrTLvGnSab5s6aVsOUsXNNZxiPSzmtD+fdc7O9OH02pZLYom/0H60+vm @@ -25,56 +25,56 @@ interactions: zcjV+fZlQTiP0um6aIplnk6rxaqUVi19XBJV101O4274w4dEDfp7RGjx0JkOdvwEhoGmNEuGBnmb rso1/VxiukECInd+UdXXNPon69lF3tJnbXbREHN8tLe/Pa9oxOd1tWwJTPM2bfL6spjm1GhKk0qT VyxpziaTa/qkzps2W9fZsv3o+6OPVln9lrA4W07L9SwnPjrPSsL1o2ZR4fPjsqyu8HFbr+nTMmva - V/myuuTZf0pIEUK7Dx8+3N6h/336ZmfnEf/vp9APtVlefPSImNSwy0ePfvFH7fUKL72sCkIA+FX1 - rFgSJIxl+8HB+OH+zv7BvdG9++OHO/u7nxKO05q+s28uwd2EeF2t8rot8N4vlg8ffXT68vXnj/bv - 7X360S/5Jb9k9FE2m9FouUFDJM7bY/PBR58+3N1Jn2XXedvmPJ3pqxlBnRYtaPx0Xc+zBf1NpGrz - l3V1WSyJnI8+enFCH05FsOjPr14f09+ripqVJ9UMLfYePNi99xF1XlfVgnoi4aUpMfxLDV4TwxEz - 7Ka/F5EnfZLP0q3jRb4k3sybOwTNa83cbts7HiW2JfEoizbdei0zzW8qgfgF+nOSNfkrQh/qYn+f - /s5nXzJYwuoj1z21bMo8XzWsL6gx/R2dfMNvylKL7G1ef/T9XzLqDlAYNH1F4wfaP7HOSaKooxvG - eUIUn5AcYJBGun8R9UsgNo/X648+dKN+MP70If0djtpiQ01vGraKwsC4eeQdvbwzfnhv78HuDgFj - 5cmK+R51xX+pXj7F2F63GYTRIwJ985N5fZ2uqtW6JK3Kr0BwoVrDpkyvb4NQrNxI14m+kFcLIiKN - kbma3iPRG1QdV8V5QX9O5HMStZ46kKkfoMyQOri/vfNge2c3qg6IEW+vDnb39sa793bvP3gw2v90 - /OmDg/sHu4TlhyuEJRkqwolYhv743q2ncp/64b/MVL5bAR7zXkPfeXNE376sSbtcpxdVNZPZDFvw - LB43sGATMqXOWFEzItD/Lybt4P8Fk3af+uG/dNJOqsX5dfqyzEijBxNC3x0vqxY+y8Y5+2qZZmuy - Jz/307a3s7u3vXNAJP//+LQd3P/0wc4eqWumOU/bHvXDf+m0vaqy6Tz9Ap/QN96c0Hcn8zxbkV8j - U2aU5jg9W55nU3LvMvIl6Qt4Ut6LPJmhGl0QbcgHBQsYFeqgrJf0PTUEGKLq4ExzI/r7vadaPo3O - 9O7DA5rp/e29g+hM79JrX2umH/7QZ/re/j71rXPLM71L/fBfOtPPsuX0Oo1ayCe9SU6L8/S6WpN3 - 8DZPy/W7NZlQbkBO/pt5Tn+QO07hRJotsh8Qrei984K8EBjaqgRrNKuMfpCDkaUU3JQlvZKXKwpl - yLFfTou8viAeIFDkQQuF04JMbV6f59M23d5O6+JiTn434QJ8yJ8vK/L+KaYiWClpE/p1XReEd9ZS - EDIFBMLtu3k6pxeptzqnAII8oxk1JsiMPFjMGzlz6hc52JEcfadyLJNSxJJeVuQCZMWC7Ek3+KHY - gkhDwzijPyqKEtYUtiyyiyXpJPKx0lXRTBHJ4BWKoWb88+GEuCYnxIT1iUwITOg3SxbPJV23BUTl - +cc5xUKkWfFaiski1j/PyHP7fdekrO4B4VWZ09xJ1DOizwnADoVZ1btiUbT850MgTFQjfuWheITD - xyAm0CYqvsCYhYA0g/j+nCIs6X1K2DoigKI0fUZonzOn0GdGaMEN9OdlkV/RD1XWdqRRIVbN3JVi - /TgqxkSDHQqUtvceRMWYxMIwGcRNRfEWYky+7g9XjO/d39vfe/DwU5VcluOH1BH/pXL8Op+SB5Qy - +gOKG2LFr0CmKFFBInMtcpbPiFFJIsCnYBea4byeFpSWyGiCScgrSlbQt4jYSKb5d7ICFF7TFy/y - q/T3qeq34/Q4PaffF8WSmSm7yqhxk74hKfm4SV//onVGZpw4R14nvqrqYkqcA94EIHyMHkhBNOlV - TgJNP8VFYDanP86pd0IIvN7OKTeC+MAiQGNgOBT5EOCM+lxU1NAwNGumGQ2OeGhVUYBDeoq6o2kC - u3qkYgXw/GPHzixbhQpqVgrHe2kLToFkJFYUuBYragCy8XcHNDJHTc47UEPRIk46qenu/XsEhL42 - gwE1SexK+j+NQ0kKVVdXaxoJQWGaIFFCIrii/AVliqgzQo36VOrSy4BJjblLIixZ3AJw09nH7FaR - zBf5+h39SYQlPGg4omaIuL9oXZCE01AJhEErLT+GOiNqCUh6n/7PAZGjMyPj6Ex/E4Ty4+MFQ37I - eIHm4DxVEU9IAeFj+rSjJCjEIlhLySdBcOm9r6MpNtr7B6Qodrd3yd7fJy1B//MVxT69BimhFyDQ - KuwsadSqoyge3Bs/fHB/n9KF+zvjB5/u3D/4WcuqPHiQ3m/n6fElgBEng45mnugTypOE6ZTfhz7c - mE7Z3dnZ29uUThHviyMwpApsfJ9unVD3SH4iVeC9w6J0u2QDpADihh8kU8xdgKY087qmD13igXwq - 8mQ/IPEgfGGY7nJa351dzijlQIrYGwiB9TAA6ialk259AdgkWelPkj0Dyt57NxHAGXWPFD2AN9Dg - YLzTp4HBj1p+PRKMPvrpbLr+wQ+KtF1PiCD47/8BfQWqIicXAAA= + V/myuuTZf0pIEUK7Dx8+3N6h/336ZmfnEf/vp9APtVlefPToHr2m7PLRo1/8UXu9wksvq4IQAH5V + PSuWBAlj2X5wMH64v7N/cG907/744c7+7qeE47Sm7+ybS3A3IV5Xq7xuC7z3i+XDRx+dvnz9+aP9 + e3uffvRLfskvGX2UzWY0Wm7QEInz9th88NGnD3d30mfZdd62OU9n+mpGUKdFCxo/XdfzbEF/E6na + /GVdXRZLIuejj16c0IdTESz686vXx/T3qqJm5Uk1Q4u9Bw92731EnddVtaCeSHhpSgz/UoPXxHDE + DLvp70XkSZ/ks3TreJEviTfz5g5B81ozt9v2jkeJbUk8yqJNt17LTPObSiB+gf6cZE3+itCHutjf + p7/z2ZcMlrD6yHVPLZsyz1cN6wtqTH9HJ9/wm7LUInub1x99/5eMugMUBk1f0fiB9k+sc5Io6uiG + cZ4QxSckBxikke5fRP0SiM3j9fqjD92oH4w/fUh/h6O22FDTm4atojAwbh55Ry/vjh88ONg52FVF + zHr5HvXEf6laPsXQXrcZZNGjAX3zk3l9na6q1bokpcqvQG6hWcOmTK5vg06s20jVibqQVwuiIQ2R + mZreI8kb1BxXxXlBf07kc5K0njaQmR8gzJA2uL+982B7ZzeqDYgPb68Ndvf2xrv3du8/eDDa/3T8 + 6YOD+we7hOWH64Ml2SnCiTiG/vjebWdyn7rhv8xMvlsBHHNeQ995U0TfvqxJt1ynF1U1k8kMW/Ak + HjewXxMypM5UUTOiz/8v5uzg537O7lM3/JfO2Um1OL9OX5YZqfNgPui742XVwmHZOGVfLdNsTcbk + 537W9nZ297Z3Doji/x+ftfsP9h/u3iddzTTnadujfvgvnbZXVTadp1/gE/rGmxP67mSeZytyamTK + jMocp2fL82xKvl1GjiR9ATfKe5EnM1SiC6INOaBgAaNAHZT1kr6nhgBDVB2caW5Ef7/3VMun0Zne + fXhAM72/vXcQnWli+K830w9/2DO9/+m9/QfwRXiqeKZ3qR/+S2f6WbacXqdR+/ikN8lpcZ5eV2ty + Dd7mabl+tyYDyg3Iw38zz+kP8sUplkizRfYDohW9d16QCwIzW5VgjWaV0Q/yLrKUIpuypFfyckVx + DHn1y2mR1xfEAwSK3GehcFqQoc3r83zaptvbaV1czMnpJlyADznzZUWuPwVUBCslbUK/ruuC8M5a + ikCmgEC4fTdP5/Qi9VbnFD2QWzSjxgSZkQeLeSNnTv0iBzuSl+9UjmVSClfSy4ocgKxYkDnpRj4U + WBBpaBhn9EdFIcKaYpZFdrEknUQOVroqminCGLxCAdSMfz6cENfkhJiwPpEJUQn9Zsni+aPrtoCo + PP84p0CINCteSzFZxPrnGbltv++alNU9ILwqc5o7CXlG9DkB2KEYq3pXLIqW/3wIhIlqxK88FI9w + +BjEBNpExRcYsxCQZhDfn1N4Jb1PCVtHBFCUps8I7XPmFPrMCC24gf68LPIr+qHK2o40KsSqmbtS + rB9HxZhosENR0vbeg6gY36fXlMkgbiqKtxBjcnR/mGK8M76///DT3X3ymJldWYwfUj/8l4rx63xK + /k/K2A/obUgVvwKRoiQFScy1iFk+Iz4lgQCbgltogvN6WlBKIqP5JRmvKFFB3yJaI5Hm38kIUGhN + X7zIr9Lfp6rfjtPj9Jx+XxRL5qXsKqPGTfqGhOTjJn39i9YZWXFiHHmd2KqqiykxDlgTgPAxeiD9 + 0KRXOckz/RQPgbmc/jin3gkhsHo7p7wIYgOLAI2B4VDUQ4Az6nNRUUPDz6yYZjQ4YqFVRcENqSnq + jmYJ3OqRiuX/+ceOm1m0CpXTrBSG91IWnP7ISKooaC1W1ABk4+8OaGSOmpxzoIaiRJxwUtPd+/cI + CH1tBgNqktSV9H8ah5IUmq6u1jQSgsI0QZKEJHBFuQvKElFnhBr1qdSllwGTGnOXRFgyuAXgprOP + 2asikS/y9Tv6kwhLeNBwRMsQcX/RuiABp6ESCINWWn4MbUbUEpD0Pv2foyFHZ0bG0Zn+Jgjlx8cL + hvyQ8QLNwXmqIZ6Q/sHH9GlHR1B8RbCWkkuC3NJ7X0dRbDT3D0hP7G7vkrm/T0qC/ufrCTKfLCX0 + AuRZZZ0ljVp19MSDe+OHD+7v79wb7e+MH3y6c//gZy2j8uBBer+dp8eXAEacDDqaeaJPKEcSplJ+ + H/pwYypld2dnb29TKkWcL46/kCawsX26dULdI/GJNIH3DovS7RINkAKIG36QTDF3AZrSzOuaPnRJ + B3KpyJH9gKSD8IVhustpfXd2OaN0A+lhbyAE1sMAqJt0Trr1BWCTZKU/SeYMKHvv3UQAZ9M9UvQA + 3kCDg/FOnwYGP2r59Ugw+uins+n6Bz8o0nY9IYLgv/8HeI4y3SMXAAA= headers: cache-control: no-cache content-encoding: gzip - content-length: '2375' + content-length: '2378' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:21:04 GMT - elapsed-time: '102' + date: Sat, 08 May 2021 06:26:06 GMT + elapsed-time: '136' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: c0e03a5e-b98f-11eb-bedf-a0481ca055a9 + request-id: 44fa46e0-afc6-11eb-83b4-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search6a118e2.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + url: https://search6a118e2.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview - request: body: '{"minimumCoverage": 50.0, "search": "hotel"}' headers: @@ -85,15 +85,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search6a118e2.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://search6a118e2.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n - k2f1dD6eVpd5nV3kHz3a3dkZ74w+uszKNf31PdekmVY1fbI33rm/v7tzb/TRvGrz8mz20aOPdnc+ + k2f1dD6eVpd5nV3kHz3a3dkZ74w+uszKNf31PdekmVY1fbI33tu/v3PwYPTRvGrz8mz20aOPdnc+ 0j9fZAtq89FJtV629XVTzPL02/icvp/lzbQuVm1RLanF6+wyT9ertK3S+zu/e1qdn6dtnc0KfJ2V KQNrxmn6rM7z9LvFs2KUXtR51qZlNc3QKF0SWumsulq29P9Rer4uy/Rt0U7nOf11lTXzvE5/YTqr r/N6lO7t332QNuvVqqrbUTqprspieZFmZZlf06tFu8ybJp3my5ZeypazdEFjHYdIP6sJ7d93vbMz @@ -101,54 +101,54 @@ interactions: yJdpU7Rr/uBhurLfzNaMXJ1vXxaE8yidroumWObptFqsSmnV0sclUXXd5DTuhj98SNSgv0eEFg+d 6WDHT2AYaEqzZGiQt+mqXNPPJaYbJCBy5xdVfU2jf7KeXeQtfdZmFw0xx0d7+9vzikZ8XlfLlsA0 b9Mmry+LaU6NpjSpNHnFkuZsMrmmT+q8abN1nS3bj74/+miV1W8Ji7PltFzPcuKj86wkXD9qFhU+ - Py7L6goft/WaPi2zpn2VL6tLnv2nhBQhtPvw4cPtHfrfp292dh7x/34K/VCb5cVHj4hJDbt89OgX - f9Rer/DSy6ogBIBfVc+KJUHCWLYfHIwf7u/sH9wb3bs/frizv/sp4Tit6Tv75hLcTYjX1Sqv2wLv - /WL58NFHpy9ff/5o/97epx/9kl/yS0YfZbMZjZYbNETivD02H3z06cPdnfRZdp23bc7Tmb6aEdRp - 0YLGT9f1PFvQ30SqNn9ZV5fFksj56KMXJ/ThVASL/vzq9TH9vaqoWXlSzdBi78GD3XsfUed1VS2o - JxJemhLDv9TgNTEcMcNu+nsRedIn+SzdOl7kS+LNvLlD0LzWzO22veNRYlsSj7Jo063XMtP8phKI - X6A/J1mTvyL0oS729+nvfPYlgyWsPnLdU8umzPNVw/qCGtPf0ck3/KYstcje5vVH3/8lo+4AhUHT - VzR+oP0T65wkijq6YZwnRPEJyQEGaaT7F1G/BGLzeL3+6EM36gfjTx/S3+GoLTbU9KZhqygMjJtH - 3tHLO+OH9/Ye7O4QMFaerJjvUVf8l+rlU4ztdZtBGD0i0Dc/mdfX6aparUvSqvwKBBeqNWzK9Po2 - CMXKjXSd6At5tSAi0hiZq+k9Er1B1XFVnBf050Q+J1HrqQOZ+gHKDKmD+9s7D7Z3dqPqgBjx9upg - d29vvHtv9/6DB6P9T8efPji4f7BLWH64QliSoSKciGXoj+/deir3qR/+y0zluxXgMe819J03R/Tt - y5q0y3V6UVUzmc2wBc/icQMLNiFT6owVNSMC/f9i0g7+XzBp96kf/ksn7aRanF+nL8uMNHowIfTd - 8bJq4bNsnLOvlmm2Jnvycz9tezu7e9s7B0Ty/49P28H9Tx/s7JG6ZprztO1RP/yXTturKpvO0y/w - CX3jzQl9dzLPsxX5NTJlRmmO07PleTYl9y4jX5K+gCflvciTGarRBdGGfFCwgFGhDsp6Sd9TQ4Ah - qg7ONDeiv997quXT6EzvPjygmd7f3juIzvQuvfa1ZvrhD32m7+3vU986tzzTu9QP/6Uz/SxbTq/T - qIV80pvktDhPr6s1eQdv87Rcv1uTCeUG5OS/mef0B7njFE6k2SL7AdGK3jsvyAuBoa1KsEazyugH - ORhZSsFNWdIrebmiUIYc++W0yOsL4gECRR60UDgtyNTm9Xk+bdPt7bQuLubkdxMuwIf8+bIi759i - KoKVkjahX9d1QXhnLQUhU0Ag3L6bp3N6kXqrcwogyDOaUWOCzMiDxbyRM6d+kYMdydF3KscyKUUs - 6WVFLkBWLMiedIMfii2INDSMM/qjoihhTWHLIrtYkk4iHytdFc0UkQxeoRhqxj8fTohrckJMWJ/I - hMCEfrNk8VzSdVtAVJ5/nFMsRJoVr6WYLGL984w8t993TcrqHhBelTnNnUQ9I/qcAOxQmFW9KxZF - y38+BMJENeJXHopHOHwMYgJtouILjFkISDOI788pwpLep4StIwIoStNnhPY5cwp9ZoQW3EB/Xhb5 - Ff1QZW1HGhVi1cxdKdaPo2JMNNihQGl770FUjEksDJNB3FQUbyHG5Ov+cMX43v29/b0HDz9VyWU5 - fkgd8V8qx6/zKXlAKaM/oLghVvwKZIoSFSQy1yJn+YwYlSQCfAp2oRnO62lBaYmMJpiEvKJkBX2L - iI1kmn8nK0DhNX3xIr9Kf5+qfjtOj9Nz+n1RLJmZsquMGjfpG5KSj5v09S9aZ2TGiXPkdeKrqi6m - xDngTQDCx+iBFESTXuUk0PRTXARmc/rjnHonhMDr7ZxyI4gPLAI0BoZDkQ8BzqjPRUUNDUOzZprR - 4IiHVhUFOKSnqDuaJrCrRypWAM8/duzMslWooGalcLyXtuAUSEZiRYFrsaIGIBt/d0Ajc9TkvAM1 - FC3ipJOa7t6/R0DoazMYUJPErqT/0ziUpFB1dbWmkRAUpgkSJSSCK8pfUKaIOiPUqE+lLr0MmNSY - uyTCksUtADedfcxuFcl8ka/f0Z9EWMKDhiNqhoj7i9YFSTgNlUAYtNLyY6gzopaApPfp/xwQOToz - Mo7O9DdBKD8+XjDkh4wXaA7OUxXxhBQQPqZPO0qCQiyCtZR8EgSX3vs6mmKjvX9AimJ3e5fs/X3S - EvQ/X1Hs02uQEnoBAq3CzpJGrTqK4sG98cMH9/cpXbi/M37w6c79g5+1rMqDB+n9dp4eXwIYcTLo - aOaJPqE8SZhO+X3ow43pFMqE7u1tSqeI98URGFIFNr5Pt06oeyQ/kSrw3mFRul2yAVIAccMPkinm - LkBTmnld04cu8UA+FXmyH5B4EL4wTHc5re/OLmeUciBF7A2EwHoYAHWT0km3vgBskqz0J8meAWXv - vZsI4Iy6R4oewBtocDDe6dPA4Ectvx4JRh/9dDZd/+AHRdquJ0QQ/Pf/AHSyli5AFwAA + Py7L6goft/WaPi2zpn2VL6tLnv2nhBQhtPvw4cPtHfrfp292dh7x/34K/VCb5cVHj+7Ra8ouHz36 + xR+11yu89LIqCAHgV9WzYkmQMJbtBwfjh/s7+wf3Rvfujx/u7O9+SjhOa/rOvrkEdxPidbXK67bA + e79YPnz00enL158/2r+39+lHv+SX/JLRR9lsRqPlBg2ROG+PzQcfffpwdyd9ll3nbZvzdKavZgR1 + WrSg8dN1Pc8W9DeRqs1f1tVlsSRyPvroxQl9OBXBoj+/en1Mf68qalaeVDO02HvwYPfeR9R5XVUL + 6omEl6bE8C81eE0MR8ywm/5eRJ70ST5Lt44X+ZJ4M2/uEDSvNXO7be94lNiWxKMs2nTrtcw0v6kE + 4hfoz0nW5K8IfaiL/X36O599yWAJq49c99SyKfN81bC+oMb0d3TyDb8pSy2yt3n90fd/yag7QGHQ + 9BWNH2j/xDoniaKObhjnCVF8QnKAQRrp/kXUL4HYPF6vP/rQjfrB+NOH9Hc4aosNNb1p2CoKA+Pm + kXf08u74wYODnYNdVcSsl+9RT/yXquVTDO11m0EWPRrQNz+Z19fpqlqtS1Kq/ArkFpo1bMrk+jbo + xLqNVJ2oC3m1IBrSEJmp6T2SvEHNcVWcF/TnRD4nSetpA5n5AcIMaYP72zsPtnd2o9qA+PD22mB3 + b2+8e2/3/oMHo/1Px58+OLh/sEtYfrg+WJKdIpyIY+iP7912JvepG/7LzOS7FcAx5zX0nTdF9O3L + mnTLdXpRVTOZzLAFT+JxA/s1IUPqTBU1I/r8/2LODn7u5+w+dcN/6ZydVIvz6/RlmZE6D+aDvjte + Vi0clo1T9tUyzdZkTH7uZ21vZ3dve+eAKP7/8Vm7/2D/4e590tVMc562PeqH/9Jpe1Vl03n6BT6h + b7w5oe9O5nm2IqdGpsyozHF6tjzPpuTbZeRI0hdwo7wXeTJDJbog2pADChYwCtRBWS/pe2oIMETV + wZnmRvT3e0+1fBqd6d2HBzTT+9t7B9GZJob/ejP98Ic90/uf3tt/AF+Ep4pnepf64b90pp9ly+l1 + GrWPT3qTnBbn6XW1JtfgbZ6W63drMqDcgDz8N/Oc/iBfnGKJNFtkPyBa0XvnBbkgMLNVCdZoVhn9 + IO8iSymyKUt6JS9XFMeQV7+cFnl9QTxAoMh9FgqnBRnavD7Pp226vZ3WxcWcnG7CBfiQM19W5PpT + QEWwUtIm9Ou6LgjvrKUIZAoIhNt383ROL1JvdU7RA7lFM2pMkBl5sJg3cubUL3KwI3n5TuVYJqVw + Jb2syAHIigWZk27kQ4EFkYaGcUZ/VBQirClmWWQXS9JJ5GClq6KZIozBKxRAzfjnwwlxTU6ICesT + mRCV0G+WLJ4/um4LiMrzj3MKhEiz4rUUk0Wsf56R2/b7rklZ3QPCqzKnuZOQZ0SfE4AdirGqd8Wi + aPnPh0CYqEb8ykPxCIePQUygTVR8gTELAWkG8f05hVfS+5SwdUQARWn6jNA+Z06hz4zQghvoz8si + v6IfqqztSKNCrJq5K8X6cVSMiQY7FCVt7z2IivF9ek2ZDOKmongLMSZH94cpxjvj+/sPP93dJ4+Z + 2ZXF+CH1w3+pGL/Op+T/pIz9gN6GVPErEClKUpDEXIuY5TPiUxIIsCm4hSY4r6cFpSQyml+S8YoS + FfQtojUSaf6djACF1vTFi/wq/X2q+u04PU7P6fdFsWReyq4yatykb0hIPm7S179onZEVJ8aR14mt + qrqYEuOANQEIH6MH0g9NepWTPNNP8RCYy+mPc+qdEAKrt3PKiyA2sAjQGBgORT0EOKM+FxU1NPzM + imlGgyMWWlUU3JCaou5olsCtHqlY/p9/7LiZRatQOc1KYXgvZcHpj4ykioLWYkUNQDb+7oBG5qjJ + OQdqKErECSc13b1/j4DQ12YwoCZJXUn/p3EoSaHp6mpNIyEoTBMkSUgCV5S7oCwRdUaoUZ9KXXoZ + MKkxd0mEJYNbAG46+5i9KhL5Il+/oz+JsIQHDUe0DBH3F60LEnAaKoEwaKXlx9BmRC0BSe/T/zka + cnRmZByd6W+CUH58vGDIDxkv0BycpxriCekffEyfdnQExVcEaym5JMgtvfd1FMVGc/+A9MTu9i6Z + +/ukJOh/vp4g88lSQi9AnlXWWdKoVUdPPLg3fvjg/v7OvdH+zvjBpzv3D37WMioPHqT323l6fAlg + xMmgo5kn+oRyJGEq5fehDzemUigLure3KZUizhfHX0gT2Ng+3Tqh7pH4RJrAe4dF6XaJBkgBxA0/ + SKaYuwBNaeZ1TR+6pAO5VOTIfkDSQfjCMN3ltL47u5xRuoH0sDcQAuthANRNOifd+gKwSbLSnyRz + BpS9924igLPpHil6AG+gwcF4p08Dgx+1/HokGH3009l0/YMfFGm7nhBB8N//A26sGg48FwAA headers: cache-control: no-cache content-encoding: gzip - content-length: '2388' + content-length: '2391' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:21:04 GMT - elapsed-time: '10' + date: Sat, 08 May 2021 06:26:06 GMT + elapsed-time: '8' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: c12cd3b1-b98f-11eb-a2ce-a0481ca055a9 + request-id: 4535306a-afc6-11eb-9974-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search6a118e2.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + url: https://search6a118e2.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_facets_none.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_facets_none.yaml index 94f756b8fa65..0d7430f8cc3d 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_facets_none.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_facets_none.yaml @@ -9,39 +9,39 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search53351a1b.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://search53351a1b.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR5dZ - uc4/evS9X/zR79nkWT2dj5tpVdMne+P7D/f2DnY+HX00r9q8fJEt6NOPTqr1sq2vm2KWp9/G5x+N - PprlzbQuVm1RLanF6+wyT9ertK3S+zu/e1qdn6dtnc0KfJ2VKQNrxmn6rM7z9LvFs2KUXtR51qZl - Nc3QKF0SIumsulq29P9Rer4uy/Rt0U7nOf11lTXzvE5/YTqrr/N6lO7t332QNuvVqqrbUTqprspi - eZFmZZlf06tFu8ybJp3my5ZeypazdEGjGxPS1Fd+UdXXhPGT9ewibz/6JaMeEXbGn97feXD/wX5I - hNNptaxet9k1wQkH/5N5fZ2uqtW6pCHwK2mxJFJcLanpB3X5blVjJK+qatEQrLDbl3XettfpRVXN - pFdq8SG9nVSL8+v0ZZlNc4IU9nW8rFrMwNfp7P7+wf7+zoOws2fZcnqdRsn5JG9a6cOQMS3O0+tq - nZbF2zwt1+/WRG9uQCz1Zp7TH2C/bJlmi+wH4IRieV4sCyLOqqrKUZqlzSqjH8QJWUpsV5b0Sl6u - iMlSmtVpkdcXOYNy/Fg06Sqvz/Npm25vp3VxMW899pyWVZMTbuC5lChDv67rgvDOWuL7KSAQbt/N - 0zm9SL3V+bRaLHJCoJ0TZEa+w5DPeVwf/ZLv/5L/B9RDv7ahAwAA + uc4/evS9X/zR79nkWT2dj5tpVdMne+N7B/f2Htz7dPTRvGrz8kW2oE8/OqnWy7a+bopZnn4bn380 + +miWN9O6WLVFtaQWr7PLPF2v0rZK7+/87ml1fp62dTYr8HVWpgysGafpszrP0+8Wz4pRelHnWZuW + 1TRDo3RJiKSz6mrZ0v9H6fm6LNO3RTud5/TXVdbM8zr9hemsvs7rUbq3f/dB2qxXq6puR+mkuiqL + 5UWalWV+Ta8W7TJvmnSaL1t6KVvO0gWNbkxIU1/5RVVfE8ZP1rOLvP3ol4x6RNgd7+zt3T/YfxgS + 4XRaLavXbXZNcMLB/2ReX6erarUuaQj8SlosiRRXS2r6QV2+W9UYyauqWjQEK+z2ZZ237XV6UVUz + 6ZVafEhvJ9Xi/Dp9WWbTnCCFfR0vqxYz8P6d7YwfPDx48OD+g7CzZ9lyep1Gyfkkb1rpw5AxLc7T + 62qdlsXbPC3X79ZEb25ALPVmntMfYL9smWaL7AfghGJ5XiwLIs6qqspRmqXNKqMfxAlZSmxXlvRK + Xq6IyVKa1WmR1xc5g3L8WDTpKq/P82mbbm+ndXExbz32nJZVkxNu4LmUKEO/ruuC8M5a4vspIBBu + 383TOb1IvdX5tFosckKgnRNkRr7DkM95XB/9ku//kv8HlvLJE6EDAAA= headers: cache-control: no-cache content-encoding: gzip - content-length: '609' + content-length: '611' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:21:22 GMT - elapsed-time: '133' + date: Sat, 08 May 2021 06:26:22 GMT + elapsed-time: '130' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: cc0407a9-b98f-11eb-a9a7-a0481ca055a9 + request-id: 4deb794c-afc6-11eb-8e0f-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search53351a1b.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + url: https://search53351a1b.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_facets_result.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_facets_result.yaml index 0ad1aaa9f25c..731388d52adc 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_facets_result.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_facets_result.yaml @@ -9,40 +9,40 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search88e11b0a.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://search88e11b0a.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n k2f1dD4+z6Z523z06Bd/NM3a/KKqrz969D36o1ov248e7Y8+uszKdf7Ro4+erGcXefvRLxnZL3fd - l8/X79b05i/5/i+xnxEQ00czrWr6ZG98/+He3sHOp6OP5lWbly+yBX360Qmg1ddNMcvTb+Pzj0Yf - zfJmWhertqiW1OJ1dpmn61XaVun9nd89rc7P07bOZgW+zsqUgTXjNH1W53n63eJZMUov6jxr07Ki - QVGjdEmIpLPqatnS/0fp+bos07dFO53n9NdV1szzOv2F6ay+zutRurd/90HarFerqm5H6aS6Kovl - RZqVZX5NrxbtMm+adJovW3opW87SBY1uTEhTX0pAn1gdIuyMP72/8+D+A6Is461EOJ1Wy+p1m10T - nHDwP5nX1+mqWq1LGgK/khZLIsXVkpp+UJfvVjVG8qqqFg3BCrt9Wedte51eVNVMeqUWH9LbSbU4 - v05flsRuBCns63hZtZiBr9PZ/f2D/f2dB2Fnz7Ll9DqNkvNJ3rTShyFjWpyn19U6LYu3eVoyI0sD - Yqk385z+APtlyzRbZD8AJxTL82JZEHFWVVWO0ixtVhn9IE7IUmK7sqRX8nJFTJbSrE6LvL7IGZTj - x6JJV3l9nk/bdHs7rYuLeeux57SsmpxwA8+lRBn6dV0XhHfWEt9PAYFw+26ezulF6q3Op9VikRMC - 7ZwgM/IdhnQC+v8AASkgEfsDAAA= + l8/X79b05i/5/i+xnxEQ00czrWr6ZG987+De3oN7n44+mldtXr7IFvTpRyeAVl83xSxPv43PPxp9 + NMubaV2s2qJaUovX2WWerldpW6X3d373tDo/T9s6mxX4OitTBtaM0/RZnefpd4tnxSi9qPOsTcuK + BkWN0iUhks6qq2VL/x+l5+uyTN8W7XSe019XWTPP6/QXprP6Oq9H6d7+3Qdps16tqrodpZPqqiyW + F2lWlvk1vVq0y7xp0mm+bOmlbDlLFzS6MSFNfSkBfWJ1iLA73tnbu3+w/zAkwum0Wlav2+ya4ISD + /8m8vk5X1Wpd0hD4lbRYEimultT0g7p8t6oxkldVtWgIVtjtyzpv2+v0oqpm0iu1+JDeTqrF+XX6 + siR2I0hhX8fLqsUMvH9nO+MHDw8ePLj/IOzsWbacXqdRcj7Jm1b6MGRMi/P0ulqnZfE2T0tmZGlA + LPVmntMfYL9smWaL7AfghGJ5XiwLIs6qqspRmqXNKqMfxAlZSmxXlvRKXq6IyVKa1WmR1xc5g3L8 + WDTpKq/P82mbbm+ndXExbz32nJZVkxNu4LmUKEO/ruuC8M5a4vspIBBu383TOb1IvdX5tFosckKg + nRNkRr7DkE5A/x9DmFa0+wMAAA== headers: cache-control: no-cache content-encoding: gzip - content-length: '647' + content-length: '646' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:21:39 GMT - elapsed-time: '145' + date: Sat, 08 May 2021 06:26:35 GMT + elapsed-time: '165' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: d68d7ab9-b98f-11eb-ae51-a0481ca055a9 + request-id: 562f415c-afc6-11eb-8d44-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search88e11b0a.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + url: https://search88e11b0a.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_filter.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_filter.yaml index 4ed107a63d31..817e9e00b900 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_filter.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_filter.yaml @@ -10,36 +10,36 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchd523181c.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://searchd523181c.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR5dZ - uc4/evS9X/zR79nkWT2dj5tpVdMnO+NP7+88uP9gf/TRvGrz8kW2oE8/On23qvOmSV9V1aL5aPTR - LG+mdbFqi2pJ376s87a9Ti+qapbyW9RimrX5RVVf09dP1rOLvP3ol4xu3du0Wlav2+ya4IQ9/WRe - X6erarUus1q6Sotl2lZXS2p6qy73xvcf7u0d7HwadnlSrZdtfd0Uszz9Nj4neGHXr7PLPF2vqLP0 - /s7vnlbn52lbZ7MCX2elINOM0/RZnefpd4tnxSi9qPOsTcuKEKNG6ZIQSWeEK/AdpefrskzfFu10 - ntNfV1kzz+v0F6az+jqvR+ne/t0HabNeraq6HaWT6qoslhdpVpb5Nb1atEtMxzRftvRStpylCxrd - mJCmvm4mwgDdT6rF+XX6ssymOUEKh3+8rFogeNMkf/+X/D+3bKcKXgIAAA== + uc4/evS9X/zR79nkWT2dj5tpVdMnu+Odvb37B/sPRx/NqzYvX2QL+vSj03erOm+a9FVVLZqPRh/N + 8mZaF6u2qJb07cs6b9vr9KKqZim/RS2mWZtfVPU1ff1kPbvI249+yejWvU2rZfW6za4JTtjTT+b1 + dbqqVusyq6WrtFimbXW1pKa36nJvfO/g3t6De5+GXZ5U62VbXzfFLE+/jc8JXtj16+wyT9cr6iy9 + v/O7p9X5edrW2azA11kpyDTjNH1W53n63eJZMUov6jxr07IixKhRuiRE0hnhCnxH6fm6LNO3RTud + 5/TXVdbM8zr9hemsvs7rUbq3f/dB2qxXq6puR+mkuiqL5UWalWV+Ta8W7RLTMc2XLb2ULWfpgkY3 + JqSpr5uJMED3k2pxfp2+LLNpTpDC4R8vqxYI3jTJ3/8l/w87XRrPXgIAAA== headers: cache-control: no-cache content-encoding: gzip content-length: '442' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:21:58 GMT - elapsed-time: '158' + date: Sat, 08 May 2021 06:26:50 GMT + elapsed-time: '75' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: e0f0c739-b98f-11eb-8739-a0481ca055a9 + request-id: 5ee70187-afc6-11eb-b408-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchd523181c.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + url: https://searchd523181c.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_filter_array.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_filter_array.yaml index 13534560d129..65e75ced83d4 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_filter_array.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_filter_array.yaml @@ -10,36 +10,36 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search6e521a9a.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://search6e521a9a.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR5dZ - uc4/evS9X/zR79nkWT2dj5tpVdMnO+NP7+88uP9gf/TRvGrz8kW2oE8/On23qvOmSV9V1aL5aPTR - LG+mdbFqi2pJ376s87a9Ti+qapbyW9RimrX5RVVf09dP1rOLvP3ol4xu3du0Wlav2+ya4IQ9/WRe - X6erarUus1q6Sotl2lZXS2p6qy73xvcf7u0d7HwadnlSrZdtfd0Uszz9Nj4neGHXr7PLPF2vqLP0 - /s7vnlbn52lbZ7MCX2elINOM0/RZnefpd4tnxSi9qPOsTcuKEKNG6ZIQSWeEK/AdpefrskzfFu10 - ntNfV1kzz+v0F6az+jqvR+ne/t0HabNeraq6HaWT6qoslhdpVpb5Nb1atEtMxzRftvRStpylCxrd - mJCmvm4mwgDdT6rF+XX6ssymOUEKh3+8rFogeNMkf/+X/D+3bKcKXgIAAA== + uc4/evS9X/zR79nkWT2dj5tpVdMnu+Odvb37B/sPRx/NqzYvX2QL+vSj03erOm+a9FVVLZqPRh/N + 8mZaF6u2qJb07cs6b9vr9KKqZim/RS2mWZtfVPU1ff1kPbvI249+yejWvU2rZfW6za4JTtjTT+b1 + dbqqVusyq6WrtFimbXW1pKa36nJvfO/g3t6De5+GXZ5U62VbXzfFLE+/jc8JXtj16+wyT9cr6iy9 + v/O7p9X5edrW2azA11kpyDTjNH1W53n63eJZMUov6jxr07IixKhRuiRE0hnhCnxH6fm6LNO3RTud + 5/TXVdbM8zr9hemsvs7rUbq3f/dB2qxXq6puR+mkuiqL5UWalWV+Ta8W7RLTMc2XLb2ULWfpgkY3 + JqSpr5uJMED3k2pxfp2+LLNpTpDC4R8vqxYI3jTJ3/8l/w87XRrPXgIAAA== headers: cache-control: no-cache content-encoding: gzip content-length: '442' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:22:15 GMT - elapsed-time: '91' + date: Sat, 08 May 2021 06:27:05 GMT + elapsed-time: '140' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: eb393a36-b98f-11eb-9b01-a0481ca055a9 + request-id: 6821d398-afc6-11eb-a3ad-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search6e521a9a.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + url: https://search6e521a9a.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_simple.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_simple.yaml index 98eb5b35bf8c..65ef61cbc0bd 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_simple.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_simple.yaml @@ -9,15 +9,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchd56a1820.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://searchd56a1820.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR5dZ - uc4/evS9X/zR79nkWT2dj5tpVdMne+Od+/u7O/dGH82rNi/PZh89+mh35yP980W2oDYfnVTrZVtf + uc4/evS9X/zR79nkWT2dj5tpVdMne+O9/fs7Bw9GH82rNi/PZh89+mh35yP980W2oDYfnVTrZVtf N8UsT7+Nz+n7Wd5M62LVFtWSWrzOLvN0vUrbKr2/87un1fl52tbZrMDXWZkysGacps/qPE+/Wzwr RulFnWdtWlbTDI3SJaGVzqqrZUv/H6Xn67JM3xbtdJ7TX1dZM8/r9Bems/o6r0fp3v7dB2mzXq2q uh2lk+qqLJYXaVaW+TW9WrTLvGnSab5s6aVsOUsXNNZxiPSzmtD+fdc7O9OH02pZLYom/0H60+vm @@ -25,56 +25,56 @@ interactions: zcjV+fZlQTiP0um6aIplnk6rxaqUVi19XBJV101O4274w4dEDfp7RGjx0JkOdvwEhoGmNEuGBnmb rso1/VxiukECInd+UdXXNPon69lF3tJnbXbREHN8tLe/Pa9oxOd1tWwJTPM2bfL6spjm1GhKk0qT VyxpziaTa/qkzps2W9fZsv3o+6OPVln9lrA4W07L9SwnPjrPSsL1o2ZR4fPjsqyu8HFbr+nTMmva - V/myuuTZf0pIEUK7Dx8+3N6h/336ZmfnEf/vp9APtVlefPSImNSwy0ePfvFH7fUKL72sCkIA+FX1 - rFgSJIxl+8HB+OH+zv7BvdG9++OHO/u7nxKO05q+s28uwd2EeF2t8rot8N4vlg8ffXT68vXnj/bv - 7X360S/5Jb9k9FE2m9FouUFDJM7bY/PBR58+3N1Jn2XXedvmPJ3pqxlBnRYtaPx0Xc+zBf1NpGrz - l3V1WSyJnI8+enFCH05FsOjPr14f09+ripqVJ9UMLfYePNi99xF1XlfVgnoi4aUpMfxLDV4TwxEz - 7Ka/F5EnfZLP0q3jRb4k3sybOwTNa83cbts7HiW2JfEoizbdei0zzW8qgfgF+nOSNfkrQh/qYn+f - /s5nXzJYwuoj1z21bMo8XzWsL6gx/R2dfMNvylKL7G1ef/T9XzLqDlAYNH1F4wfaP7HOSaKooxvG - eUIUn5AcYJBGun8R9UsgNo/X648+dKN+MP70If0djtpiQ01vGraKwsC4eeQdvbwzfnhv78HuDgFj - 5cmK+R51xX+pXj7F2F63GYTRIwJ985N5fZ2uqtW6JK3Kr0BwoVrDpkyvb4NQrNxI14m+kFcLIiKN - kbma3iPRG1QdV8V5QX9O5HMStZ46kKkfoMyQOri/vfNge2c3qg6IEW+vDnb39sa793bvP3gw2v90 - /OmDg/sHu4TlhyuEJRkqwolYhv743q2ncp/64b/MVL5bAR7zXkPfeXNE376sSbtcpxdVNZPZDFvw - LB43sGATMqXOWFEzItD/Lybt4P8Fk3af+uG/dNJOqsX5dfqyzEijBxNC3x0vqxY+y8Y5+2qZZmuy - Jz/307a3s7u3vXNAJP//+LQd3P/0wc4eqWumOU/bHvXDf+m0vaqy6Tz9Ap/QN96c0Hcn8zxbkV8j - U2aU5jg9W55nU3LvMvIl6Qt4Ut6LPJmhGl0QbcgHBQsYFeqgrJf0PTUEGKLq4ExzI/r7vadaPo3O - 9O7DA5rp/e29g+hM79JrX2umH/7QZ/re/j71rXPLM71L/fBfOtPPsuX0Oo1ayCe9SU6L8/S6WpN3 - 8DZPy/W7NZlQbkBO/pt5Tn+QO07hRJotsh8Qrei984K8EBjaqgRrNKuMfpCDkaUU3JQlvZKXKwpl - yLFfTou8viAeIFDkQQuF04JMbV6f59M23d5O6+JiTn434QJ8yJ8vK/L+KaYiWClpE/p1XReEd9ZS - EDIFBMLtu3k6pxeptzqnAII8oxk1JsiMPFjMGzlz6hc52JEcfadyLJNSxJJeVuQCZMWC7Ek3+KHY - gkhDwzijPyqKEtYUtiyyiyXpJPKx0lXRTBHJ4BWKoWb88+GEuCYnxIT1iUwITOg3SxbPJV23BUTl - +cc5xUKkWfFaiski1j/PyHP7fdekrO4B4VWZ09xJ1DOizwnADoVZ1btiUbT850MgTFQjfuWheITD - xyAm0CYqvsCYhYA0g/j+nCIs6X1K2DoigKI0fUZonzOn0GdGaMEN9OdlkV/RD1XWdqRRIVbN3JVi - /TgqxkSDHQqUtvceRMWYxMIwGcRNRfEWYky+7g9XjO/d39vfe/DwU5VcluOH1BH/pXL8Op+SB5Qy - +gOKG2LFr0CmKFFBInMtcpbPiFFJIsCnYBea4byeFpSWyGiCScgrSlbQt4jYSKb5d7ICFF7TFy/y - q/T3qeq34/Q4PaffF8WSmSm7yqhxk74hKfm4SV//onVGZpw4R14nvqrqYkqcA94EIHyMHkhBNOlV - TgJNP8VFYDanP86pd0IIvN7OKTeC+MAiQGNgOBT5EOCM+lxU1NAwNGumGQ2OeGhVUYBDeoq6o2kC - u3qkYgXw/GPHzixbhQpqVgrHe2kLToFkJFYUuBYragCy8XcHNDJHTc47UEPRIk46qenu/XsEhL42 - gwE1SexK+j+NQ0kKVVdXaxoJQWGaIFFCIrii/AVliqgzQo36VOrSy4BJjblLIixZ3AJw09nH7FaR - zBf5+h39SYQlPGg4omaIuL9oXZCE01AJhEErLT+GOiNqCUh6n/7PAZGjMyPj6Ex/E4Ty4+MFQ37I - eIHm4DxVEU9IAeFj+rSjJCjEIlhLySdBcOm9r6MpNtr7B6Qodrd3yd7fJy1B//MVxT69BimhFyDQ - KuwsadSqoyge3Bs/fHB/n9KF+zvjB5/u3D/4WcuqPHiQ3m/n6fElgBEng45mnugTypOE6ZTfhz7c - mE7Z3dnZ29uUThHviyMwpApsfJ9unVD3SH4iVeC9w6J0u2QDpADihh8kU8xdgKY087qmD13igXwq - 8mQ/IPEgfGGY7nJa351dzijlQIrYGwiB9TAA6ialk259AdgkWelPkj0Dyt57NxHAGXWPFD2AN9Dg - YLzTp4HBj1p+PRKMPvrpbLr+wQ+KtF1PiCD47/8BfQWqIicXAAA= + V/myuuTZf0pIEUK7Dx8+3N6h/336ZmfnEf/vp9APtVlefPToHr2m7PLRo1/8UXu9wksvq4IQAH5V + PSuWBAlj2X5wMH64v7N/cG907/744c7+7qeE47Sm7+ybS3A3IV5Xq7xuC7z3i+XDRx+dvnz9+aP9 + e3uffvRLfskvGX2UzWY0Wm7QEInz9th88NGnD3d30mfZdd62OU9n+mpGUKdFCxo/XdfzbEF/E6na + /GVdXRZLIuejj16c0IdTESz686vXx/T3qqJm5Uk1Q4u9Bw92731EnddVtaCeSHhpSgz/UoPXxHDE + DLvp70XkSZ/ks3TreJEviTfz5g5B81ozt9v2jkeJbUk8yqJNt17LTPObSiB+gf6cZE3+itCHutjf + p7/z2ZcMlrD6yHVPLZsyz1cN6wtqTH9HJ9/wm7LUInub1x99/5eMugMUBk1f0fiB9k+sc5Io6uiG + cZ4QxSckBxikke5fRP0SiM3j9fqjD92oH4w/fUh/h6O22FDTm4atojAwbh55Ry/vjh88ONg52FVF + zHr5HvXEf6laPsXQXrcZZNGjAX3zk3l9na6q1bokpcqvQG6hWcOmTK5vg06s20jVibqQVwuiIQ2R + mZreI8kb1BxXxXlBf07kc5K0njaQmR8gzJA2uL+982B7ZzeqDYgPb68Ndvf2xrv3du8/eDDa/3T8 + 6YOD+we7hOWH64Ml2SnCiTiG/vjebWdyn7rhv8xMvlsBHHNeQ995U0TfvqxJt1ynF1U1k8kMW/Ak + HjewXxMypM5UUTOiz/8v5uzg537O7lM3/JfO2Um1OL9OX5YZqfNgPui742XVwmHZOGVfLdNsTcbk + 537W9nZ297Z3Doji/x+ftfsP9h/u3iddzTTnadujfvgvnbZXVTadp1/gE/rGmxP67mSeZytyamTK + jMocp2fL82xKvl1GjiR9ATfKe5EnM1SiC6INOaBgAaNAHZT1kr6nhgBDVB2caW5Ef7/3VMun0Zne + fXhAM72/vXcQnWli+K830w9/2DO9/+m9/QfwRXiqeKZ3qR/+S2f6WbacXqdR+/ikN8lpcZ5eV2ty + Dd7mabl+tyYDyg3Iw38zz+kP8sUplkizRfYDohW9d16QCwIzW5VgjWaV0Q/yLrKUIpuypFfyckVx + DHn1y2mR1xfEAwSK3GehcFqQoc3r83zaptvbaV1czMnpJlyADznzZUWuPwVUBCslbUK/ruuC8M5a + ikCmgEC4fTdP5/Qi9VbnFD2QWzSjxgSZkQeLeSNnTv0iBzuSl+9UjmVSClfSy4ocgKxYkDnpRj4U + WBBpaBhn9EdFIcKaYpZFdrEknUQOVroqminCGLxCAdSMfz6cENfkhJiwPpEJUQn9Zsni+aPrtoCo + PP84p0CINCteSzFZxPrnGbltv++alNU9ILwqc5o7CXlG9DkB2KEYq3pXLIqW/3wIhIlqxK88FI9w + +BjEBNpExRcYsxCQZhDfn1N4Jb1PCVtHBFCUps8I7XPmFPrMCC24gf68LPIr+qHK2o40KsSqmbtS + rB9HxZhosENR0vbeg6gY36fXlMkgbiqKtxBjcnR/mGK8M76///DT3X3ymJldWYwfUj/8l4rx63xK + /k/K2A/obUgVvwKRoiQFScy1iFk+Iz4lgQCbgltogvN6WlBKIqP5JRmvKFFB3yJaI5Hm38kIUGhN + X7zIr9Lfp6rfjtPj9Jx+XxRL5qXsKqPGTfqGhOTjJn39i9YZWXFiHHmd2KqqiykxDlgTgPAxeiD9 + 0KRXOckz/RQPgbmc/jin3gkhsHo7p7wIYgOLAI2B4VDUQ4Az6nNRUUPDz6yYZjQ4YqFVRcENqSnq + jmYJ3OqRiuX/+ceOm1m0CpXTrBSG91IWnP7ISKooaC1W1ABk4+8OaGSOmpxzoIaiRJxwUtPd+/cI + CH1tBgNqktSV9H8ah5IUmq6u1jQSgsI0QZKEJHBFuQvKElFnhBr1qdSllwGTGnOXRFgyuAXgprOP + 2asikS/y9Tv6kwhLeNBwRMsQcX/RuiABp6ESCINWWn4MbUbUEpD0Pv2foyFHZ0bG0Zn+Jgjlx8cL + hvyQ8QLNwXmqIZ6Q/sHH9GlHR1B8RbCWkkuC3NJ7X0dRbDT3D0hP7G7vkrm/T0qC/ufrCTKfLCX0 + AuRZZZ0ljVp19MSDe+OHD+7v79wb7e+MH3y6c//gZy2j8uBBer+dp8eXAEacDDqaeaJPKEcSplJ+ + H/pwYypld2dnb29TKkWcL46/kCawsX26dULdI/GJNIH3DovS7RINkAKIG36QTDF3AZrSzOuaPnRJ + B3KpyJH9gKSD8IVhustpfXd2OaN0A+lhbyAE1sMAqJt0Trr1BWCTZKU/SeYMKHvv3UQAZ9M9UvQA + 3kCDg/FOnwYGP2r59Ugw+uins+n6Bz8o0nY9IYLgv/8HeI4y3SMXAAA= headers: cache-control: no-cache content-encoding: gzip - content-length: '2375' + content-length: '2378' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:22:31 GMT - elapsed-time: '136' + date: Sat, 08 May 2021 06:27:21 GMT + elapsed-time: '92' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: f51296f7-b98f-11eb-a220-a0481ca055a9 + request-id: 71852c4e-afc6-11eb-ad54-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchd56a1820.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + url: https://searchd56a1820.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview - request: body: '{"search": "motel"}' headers: @@ -85,51 +85,51 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchd56a1820.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://searchd56a1820.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR5dZ - uc4/evS9X/zR79nkWT2dj5tpVdMnD8YPH+7u7O+NPppXbV6ezT569NHeR/rXi2xBTT56VWXTefoF - PqFvZnkzrYtVW1RL+u5knmervGlTfiEtlmlbXS3H6dnyPJu2ozRLF/hiHL74rKZXv/37rnd2zvfp - 27TMqVmxbNLpPK/TfJleFmWZOyjrJX1PDQFmmrX5RVVfE4Qn69lF3tJnbXbR0Og+4kb090S++P7o - o1VWvy2WF2fLabme5TS6tl7no4+aRYWPj8uyunKfllnTvsqX1WUGJJ9SR9TJ7sODve2d/e29gzc7 - O4/4fz9FXdTUZnnx0aNdeq0inOiFjx794o/a6xVeekmjAWLTqqpnxZIgAb/t3b298e693fsPHoz2 - H44/fXBw/2CXkJzW9K19dwmqE+Z1tcrrtsCbv1g+fPTR6cvXnz/av7f36Ue/5Jf8ktFH2WxW5w01 - WK7LknCqqgX98b3v/5JRb6J3xg93Hu7sP3xwXyeXp/ohdcR/6VS/zqd13qaM/sCMv5nnZrKbtJjl - WVlep0yCfJZWNP/0/SIjRphWi0VeT4usTLO6zevrtDrnb6dFe82cQr8T+9QtvniRX6W/T1W/HafH - 6Tn9viiWa6Jaml1l1LhJ3xSL/OMmff2L1lmdp9lyJq8XTVvVxTSd5suWPidA+Bg9EO816VVeUu9N - WtGndboqsymBpEY0vJwo11LrrCV03+YWARoDwzkm5ItpRn0uKmqYtW1NvFhcSufTilhoVZVFm9FI - C0wTmNMjFfP484/njsvRXzHD3/nDrMwXhHLaFO1aPkmbdZ2WWbqqi+W0WFEDkI2/O6CROWrm6SxH - Q5YRCMuqzImaU2q6e/8eAaGvzWBAzV+0zkv6P41DSdrkaVtXaxoJQWGapLN12uaLVZPS5BNQpaZS - l14GTGrMXRJhSVQLwE1nH2dratmkZZGv39GfRFjCg4ZT8w8i7i9aF+l5RUMlEAattPx4TVQmaglI - ep/+vyrXNN+WzoyMozP9TRDKj48XDPkh4wWag/OMQqjWLT6mT41KWFUVeDgraoK1nNFMVUsILr1X - EZ3z+iKP6onzrGxIJVDv+Px2iuLBzvbO7vYuKYr7pCXof76i2KfXICX0AgRahZ0ljVp1FMWDe2OS - 1P2de6P9nfGDT3fuH3xKSH64nvjFHzU0XXl7bD746NMHD9L77Tw9vgQw4mTQ0cwTfdK0hNPLurok - rgTkF78PfTit1sQgaPnV62P6e1VRs/KkmqHF7s7O3t5H1KtRR7/YFwtqIGo7fUVfj9Ld9CfWOTHx - E9IeWyfUfVPM8jsE03uHRelkni0mxJSY/elDmrxqgakGhIsaIkk8km5BCiBu+EEyxdwFaEozr2v6 - cJI1+Ssa3kePSBk/pL/z2ZfcIWH9kYcYNW3KPF81Jxj3R4/IWsb5wjDd5bS+O7ucfcSK2BsIgfUw - AOq/FwFBF+nWF4BNkpX+ZJFfAWXvvZsI0Iq0HTQ+KXoAb6DBwXinTwODH7X8eiQYffTT2XT9gx8U - abueEEHw3/8DYWfq0JAIAAA= + uc4/evS9X/zR79nkWT2dj5tpVdMnB+N7Dz7dPbg3+mhetXl5Nvvo0Ud7H+lfL7IFNfnoVZVN5+kX + +IS+meXNtC5WbVEt6buTeZ6t8qZN+YW0WKZtdbUcp2fL82zajtIsXeCLcfjis5pe/fbvu97ZOd+n + b9Myp2bFskmn87xO82V6WZRl7qCsl/Q9NQSYadbmF1V9TRCerGcXeUuftdlFQ6P7iBvR3xP54vuj + j1ZZ/bZYXpwtp+V6ltPo2nqdjz5qFhU+Pi7L6sp9WmZN+ypfVpcZkHxKHVEnuw8P9rZ39rf3Dt7s + 7Dzi//0UdVFTm+XFR4926bWKcKIXPnr0iz9qr1d46SWNBohNq6qeFUuCBPy2d/f2xrv3du8/eDDa + fzj+9MHB/YNdQnJa07f23SWoTpjX1Sqv2wJv/mL58NFHpy9ff/5o/97epx/9kl/yS0YfZbNZnTfU + YLkuS8Kpqhb0x/e+/0tGvYneGR+gt3sPdG55ph9SP/yXzvTrfFrnbcrYD0z4m3lu5rpJi1meleV1 + yhTIZ2lF00/fLzLig2m1WOT1tMjKNKvbvL5Oq3P+dlq018wo9DtxT93iixf5Vfr7VPXbcXqcntPv + i2K5JqKl2VVGjZv0TbHIP27S179ondV5mi1n8nrRtFVdTNNpvmzpcwKEj9EDsV6TXuUl9d6kFX1a + p6symxJIakTDy4lwLbXOWkL3bW4RoDEwnGNCvphm1OeiooZZ29bEisWldD6tiINWVVm0GY20wCyB + Nz1SMYs//3jumBz9FTP8nT/MynxBKKdN0a7lk7RZ12mZpau6WE6LFTUA2fi7AxqZo2aeznI0ZBGB + rKzKnKg5paa79+8REPraDAbU/EXrvKT/0ziUpE2etnW1ppEQFKZJOlunbb5YNSlNPgFVaip16WXA + pMbcJRGWJLUA3HT2cbamlk1aFvn6Hf1JhCU8aDg1/yDi/qJ1kZ5XNFQCYdBKy4/XRGWiloCk9+n/ + q3JN823pzMg4OtPfBKH8+HjBkB8yXqA5OM/og2rd4mP61GiEVVWBh7OiJljLGc1UtYTc0nsV0Tmv + L/KomjjPyoY0AvWOz2+nJx7sbO/sbu+SnrhPSoL+5+uJfXoNUkIvQJ5V1lnSqFVHTzy4N3744P7+ + zr3R/s74wac79w8+JSQ/XE384o8amq68PTYffPTpgwfp/XaeHl8CGHEy6GjmiT5pWsLpZV1dElcC + 8ovfhz6cVmtiELT86vUx/b2qqFl5Us3QYndnZ2/vI+rVaKNf7IsFNRCtnb6ir0fpbvoT65yY+Alp + j60T6r4pZvkdgum9w6J0Ms8WE2JKzP70IU1etcBUA8JFDZEkHkm3IAUQN/wgmWLuAjSlmdc1fTjJ + mvwVDe+jR6SLH9Lf+exL7pCw/shDjJo2ZZ6vmhOM+6NHe/R3lC8M011O67uzy9lHrIe9gRBYDwOg + /nsREHSRbn0B2CRZ6U8W+RVQ9t67iQCtSNtB45OiB/AGGhyMd/o0MPhRy69HgtFHP51N1z/4QZG2 + 6wkRBP/9P4cSAOePCAAA headers: cache-control: no-cache content-encoding: gzip - content-length: '1271' + content-length: '1269' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:22:31 GMT - elapsed-time: '8' + date: Sat, 08 May 2021 06:27:21 GMT + elapsed-time: '6' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: f55d0cac-b98f-11eb-9652-a0481ca055a9 + request-id: 71bed8e1-afc6-11eb-8f91-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchd56a1820.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + url: https://searchd56a1820.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_simple_with_top.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_simple_with_top.yaml index 096ae5b32acd..6cd89665333b 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_simple_with_top.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_get_search_simple_with_top.yaml @@ -9,15 +9,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchc16d1bed.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://searchc16d1bed.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR5dZ - uc4/evS9X/zR79nkWT2dj5tpVdMne+Od+/u7O/dGH82rNi/PZh89+mh35yP980W2oDYfnVTrZVtf + uc4/evS9X/zR79nkWT2dj5tpVdMne+O9/fs7Bw9GH82rNi/PZh89+mh35yP980W2oDYfnVTrZVtf N8UsT7+Nz+n7Wd5M62LVFtWSWrzOLvN0vUrbKr2/87un1fl52tbZrMDXWZkysGacps/qPE+/Wzwr RulFnWdtWlbTDI3SJaGVzqqrZUv/H6Xn67JM3xbtdJ7TX1dZM8/r9Bems/o6r0fp3v7dB2mzXq2q uh2lk+qqLJYXaVaW+TW9WrTLvGnSab5s6aVsOUsXNNZxiPSzmtD+fdc7O9OH02pZLYom/0H60+vm @@ -25,35 +25,35 @@ interactions: zcjV+fZlQTiP0um6aIplnk6rxaqUVi19XBJV101O4274w4dEDfp7RGjx0JkOdvwEhoGmNEuGBnmb rso1/VxiukECInd+UdXXNPon69lF3tJnbXbREHN8tLe/Pa9oxOd1tWwJTPM2bfL6spjm1GhKk0qT VyxpziaTa/qkzps2W9fZsv3o+6OPVln9lrA4W07L9SwnPjrPSsL1o2ZR4fPjsqyu8HFbr+nTMmva - V/myuuTZf0pIEUK7Dx8+3N6h/336ZmfnEf/vp9APtVlefPSImNSwy0ePfvFH7fUKL72sCkIA+FX1 - rFgSJIxl+8HB+OH+zv7BvdG9++OHO/u7nxKO05q+s28uwd2EeF2t8rot8N4vlg8ffXT68vXnj/bv - 7X360S/5Jb9k9FE2m9FouUFDJM7bY/PBR58+3N1Jn2XXedvmPJ3pqxlBnRYtaPx0Xc+zBf1NpGrz - l3V1WSyJnI8+enFCH05FsOjPr14f09+ripqVJ9UMLfYePNi99xF1XlfVgnoi4aUpMfxLDV4TwxEz - 7Ka/F5EnfZLP0q3jRb4k3sybOwTNa83cbts7HiW2JfEoizbdei0zzW8qgfgF+nOSNfkrQh/qYn+f - /s5nXzJYwuoj1z21bMo8XzWsL6gx/R2dfMNvylKL7G1ef/T9XzLqDlAYNH1F4wfaP7HOSaKooxvG - eUIUn5AcYJBGun8R9UsgNo/X648+dKN+MP70If0djtpiQ01vGraKwsC4eeQdvbwzfnhv78HuDgFj - 5cmK+R51xX+pXj7F2F63GYTRIwJ985N5fZ2uqtW6JK3Kr0BwoVrDpkyvb4NQrNxI14m+kFcLIiKN - kbma3iPRG1QdV8V5QX9O5HMStZ46kKkfoMyQOri/vfNge2c3qg6IEW+vDnb39sa793bvP3gw2v90 - /OmDg/sHu4TlhyuEJRkqwolYhv743q2ncp/64b/MVL5bAR7zXkPfeXNE376sSbtcpxdVNZPZDFvw - LB43sGATMqXOWFEzItD/Lybt4Gdz0r7/S/4flZ/utCMJAAA= + V/myuuTZf0pIEUK7Dx8+3N6h/336ZmfnEf/vp9APtVlefPToHr2m7PLRo1/8UXu9wksvq4IQAH5V + PSuWBAlj2X5wMH64v7N/cG907/744c7+7qeE47Sm7+ybS3A3IV5Xq7xuC7z3i+XDRx+dvnz9+aP9 + e3uffvRLfskvGX2UzWY0Wm7QEInz9th88NGnD3d30mfZdd62OU9n+mpGUKdFCxo/XdfzbEF/E6na + /GVdXRZLIuejj16c0IdTESz686vXx/T3qqJm5Uk1Q4u9Bw92731EnddVtaCeSHhpSgz/UoPXxHDE + DLvp70XkSZ/ks3TreJEviTfz5g5B81ozt9v2jkeJbUk8yqJNt17LTPObSiB+gf6cZE3+itCHutjf + p7/z2ZcMlrD6yHVPLZsyz1cN6wtqTH9HJ9/wm7LUInub1x99/5eMugMUBk1f0fiB9k+sc5Io6uiG + cZ4QxSckBxikke5fRP0SiM3j9fqjD92oH4w/fUh/h6O22FDTm4atojAwbh55Ry/vjh88ONg52FVF + zHr5HvXEf6laPsXQXrcZZNGjAX3zk3l9na6q1bokpcqvQG6hWcOmTK5vg06s20jVibqQVwuiIQ2R + mZreI8kb1BxXxXlBf07kc5K0njaQmR8gzJA2uL+982B7ZzeqDYgPb68Ndvf2xrv3du8/eDDa/3T8 + 6YOD+we7hOWH64Ml2SnCiTiG/vjebWdyn7rhv8xMvlsBHHNeQ995U0TfvqxJt1ynF1U1k8kMW/Ak + HjewXxMypM5UUTOiz/8v5uzgZ3POvv9L/h8LWTeLIQkAAA== headers: cache-control: no-cache content-encoding: gzip - content-length: '1175' + content-length: '1174' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:22:48 GMT - elapsed-time: '110' + date: Sat, 08 May 2021 06:27:38 GMT + elapsed-time: '85' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: ff6df442-b98f-11eb-b54b-a0481ca055a9 + request-id: 7b2070dc-afc6-11eb-91ae-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchc16d1bed.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + url: https://searchc16d1bed.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview - request: body: '{"search": "motel", "top": 3}' headers: @@ -64,51 +64,51 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchc16d1bed.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://searchc16d1bed.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR5dZ - uc4/evS9X/zR79nkWT2dj5tpVdMnD8YPH+7u7O+NPppXbV6ezT569NHeR/rXi2xBTT56VWXTefoF - PqFvZnkzrYtVW1RL+u5knmervGlTfiEtlmlbXS3H6dnyPJu2ozRLF/hiHL74rKZXv/37rnd2zvfp - 27TMqVmxbNLpPK/TfJleFmWZOyjrJX1PDQFmmrX5RVVfE4Qn69lF3tJnbXbR0Og+4kb090S++P7o - o1VWvy2WF2fLabme5TS6tl7no4+aRYWPj8uyunKfllnTvsqX1WUGJJ9SR9TJ7sODve2d/e29gzc7 - O4/4fz9FXdTUZnnx0aNdeq0inOiFjx794o/a6xVeekmjAWLTqqpnxZIgAb/t3b298e693fsPHoz2 - H44/fXBw/2CXkJzW9K19dwmqE+Z1tcrrtsCbv1g+fPTR6cvXnz/av7f36Ue/5Jf8ktFH2WxW5w01 - WK7LknCqqgX98b3v/5JRb6J3xg93Hu7sP3xwXyeXp/ohdcR/6VS/zqd13qaM/sCMv5nnZrKbtJjl - WVlep0yCfJZWNP/0/SIjRphWi0VeT4usTLO6zevrtDrnb6dFe82cQr8T+9QtvniRX6W/T1W/HafH - 6Tn9viiWa6Jaml1l1LhJ3xSL/OMmff2L1lmdp9lyJq8XTVvVxTSd5suWPidA+Bg9EO816VVeUu9N - WtGndboqsymBpEY0vJwo11LrrCV03+YWARoDwzkm5ItpRn0uKmqYtW1NvFhcSufTilhoVZVFm9FI - C0wTmNMjFfP484/njsvRXzHD3/nDrMwXhHLaFO1aPkmbdZ2WWbqqi+W0WFEDkI2/O6CROWrm6SxH - Q5YRCMuqzImaU2q6e/8eAaGvzWBAzV+0zkv6P41DSdrkaVtXaxoJQWGapLN12uaLVZPS5BNQpaZS - l14GTGrMXRJhSVQLwE1nH2dratmkZZGv39GfRFjCg4ZT8w8i7i9aF+l5RUMlEAattPx4TVQmaglI - ep/+vyrXNN+WzoyMozP9TRDKj48XDPkh4wWag/OMQqjWLT6mT41KWFUVeDgraoK1nNFMVUsILr1X - EZ3z+iKP6onzrGxIJVDv+Px2iuLBzvbO7vYuKYr7pCXof76i2KfXICX0AgRahZ0ljVp1FMWDe2OS - 1P2de6P9nfGDT3fuH3xKSH64nvjFHzU0XXl7bD746NMHD9L77Tw9vgQw4mTQ0cwTfdK0hNPLurok - rgTkF78PfTit1sQgaPnV62P6e1VRs/KkmqHF7s7O3t5H1KtRR7/YFwtqIGo7fUVfj9Ld9CfWOTHx - E9IeWyfUfVPM8jsE03uHRelkni0mxJSY/elDmrxqgakGhIsaIkk8km5BCiBu+EEyxdwFaEozr2v6 - cJI1+Ssa3kePSBk/pL/z2ZfcIWH9kYcYNW3KPF81Jxj3R4/IWsb5wjDd5bS+O7ucfcSK2BsIgfUw - AOq/FwFBF+nWF4BNkpX+ZJFfAWXvvZsI0Iq0HTQ+KXoAb6DBwXinTwODH7X8eiQYffTT2XT9gx8U - abueEEHw3/8DYWfq0JAIAAA= + uc4/evS9X/zR79nkWT2dj5tpVdMnB+N7Dz7dPbg3+mhetXl5Nvvo0Ud7H+lfL7IFNfnoVZVN5+kX + +IS+meXNtC5WbVEt6buTeZ6t8qZN+YW0WKZtdbUcp2fL82zajtIsXeCLcfjis5pe/fbvu97ZOd+n + b9Myp2bFskmn87xO82V6WZRl7qCsl/Q9NQSYadbmF1V9TRCerGcXeUuftdlFQ6P7iBvR3xP54vuj + j1ZZ/bZYXpwtp+V6ltPo2nqdjz5qFhU+Pi7L6sp9WmZN+ypfVpcZkHxKHVEnuw8P9rZ39rf3Dt7s + 7Dzi//0UdVFTm+XFR4926bWKcKIXPnr0iz9qr1d46SWNBohNq6qeFUuCBPy2d/f2xrv3du8/eDDa + fzj+9MHB/YNdQnJa07f23SWoTpjX1Sqv2wJv/mL58NFHpy9ff/5o/97epx/9kl/yS0YfZbNZnTfU + YLkuS8Kpqhb0x/e+/0tGvYneGR+gt3sPdG55ph9SP/yXzvTrfFrnbcrYD0z4m3lu5rpJi1meleV1 + yhTIZ2lF00/fLzLig2m1WOT1tMjKNKvbvL5Oq3P+dlq018wo9DtxT93iixf5Vfr7VPXbcXqcntPv + i2K5JqKl2VVGjZv0TbHIP27S179ondV5mi1n8nrRtFVdTNNpvmzpcwKEj9EDsV6TXuUl9d6kFX1a + p6symxJIakTDy4lwLbXOWkL3bW4RoDEwnGNCvphm1OeiooZZ29bEisWldD6tiINWVVm0GY20wCyB + Nz1SMYs//3jumBz9FTP8nT/MynxBKKdN0a7lk7RZ12mZpau6WE6LFTUA2fi7AxqZo2aeznI0ZBGB + rKzKnKg5paa79+8REPraDAbU/EXrvKT/0ziUpE2etnW1ppEQFKZJOlunbb5YNSlNPgFVaip16WXA + pMbcJRGWJLUA3HT2cbamlk1aFvn6Hf1JhCU8aDg1/yDi/qJ1kZ5XNFQCYdBKy4/XRGWiloCk9+n/ + q3JN823pzMg4OtPfBKH8+HjBkB8yXqA5OM/og2rd4mP61GiEVVWBh7OiJljLGc1UtYTc0nsV0Tmv + L/KomjjPyoY0AvWOz2+nJx7sbO/sbu+SnrhPSoL+5+uJfXoNUkIvQJ5V1lnSqFVHTzy4N3744P7+ + zr3R/s74wac79w8+JSQ/XE384o8amq68PTYffPTpgwfp/XaeHl8CGHEy6GjmiT5pWsLpZV1dElcC + 8ovfhz6cVmtiELT86vUx/b2qqFl5Us3QYndnZ2/vI+rVaKNf7IsFNRCtnb6ir0fpbvoT65yY+Alp + j60T6r4pZvkdgum9w6J0Ms8WE2JKzP70IU1etcBUA8JFDZEkHkm3IAUQN/wgmWLuAjSlmdc1fTjJ + mvwVDe+jR6SLH9Lf+exL7pCw/shDjJo2ZZ6vmhOM+6NHe/R3lC8M011O67uzy9lHrIe9gRBYDwOg + /nsREHSRbn0B2CRZ6U8W+RVQ9t67iQCtSNtB45OiB/AGGhyMd/o0MPhRy69HgtFHP51N1z/4QZG2 + 6wkRBP/9P4cSAOePCAAA headers: cache-control: no-cache content-encoding: gzip - content-length: '1271' + content-length: '1269' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:22:48 GMT - elapsed-time: '10' + date: Sat, 08 May 2021 06:27:38 GMT + elapsed-time: '6' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: ffa7a1e3-b98f-11eb-9f3e-a0481ca055a9 + request-id: 7b5658a7-afc6-11eb-a484-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchc16d1bed.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + url: https://searchc16d1bed.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_suggest.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_suggest.yaml index 1c13e8063139..063b0fea0c9d 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_suggest.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_client_search_live_async.test_suggest.yaml @@ -9,9 +9,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchf7671424.search.windows.net/indexes('drgqefsg')/docs/search.post.suggest?api-version=2020-06-30 + uri: https://searchf7671424.search.windows.net/indexes('drgqefsg')/docs/search.post.suggest?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -24,17 +24,17 @@ interactions: content-encoding: gzip content-length: '216' content-type: application/json; odata.metadata=none - date: Thu, 20 May 2021 17:23:06 GMT - elapsed-time: '179' + date: Sat, 08 May 2021 06:27:51 GMT + elapsed-time: '207' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 09f0b04c-b990-11eb-8baa-a0481ca055a9 + request-id: 83ac1db3-afc6-11eb-82cd-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchf7671424.search.windows.net/indexes('drgqefsg')/docs/search.post.suggest?api-version=2020-06-30 + url: https://searchf7671424.search.windows.net/indexes('drgqefsg')/docs/search.post.suggest?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_create_datasource_async.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_create_datasource_async.yaml index acc69ff37080..0036754c4da4 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_create_datasource_async.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_create_datasource_async.yaml @@ -11,28 +11,28 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchb0841f28.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searchb0841f28.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchb0841f28.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB3F8F3EE3A\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchb0841f28.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EA71C6EFA2\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '391' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:23:23 GMT - elapsed-time: '33' - etag: W/"0x8D91BB3F8F3EE3A" + date: Sat, 08 May 2021 06:28:06 GMT + elapsed-time: '63' + etag: W/"0x8D911EA71C6EFA2" expires: '-1' - location: https://searchb0841f28.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + location: https://searchb0841f28.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 1433d580-b990-11eb-90fb-a0481ca055a9 + request-id: 8ce97e26-afc6-11eb-9bae-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searchb0841f28.search.windows.net/datasources?api-version=2020-06-30 + url: https://searchb0841f28.search.windows.net/datasources?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_create_or_update_datasource_async.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_create_or_update_datasource_async.yaml index 0144b2ad7f9d..d6088152f02e 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_create_or_update_datasource_async.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_create_or_update_datasource_async.yaml @@ -11,67 +11,67 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchfed3234a.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searchfed3234a.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchfed3234a.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB403ADFD1B\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchfed3234a.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EA7B5A7956\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '391' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:23:41 GMT - elapsed-time: '48' - etag: W/"0x8D91BB403ADFD1B" + date: Sat, 08 May 2021 06:28:23 GMT + elapsed-time: '82' + etag: W/"0x8D911EA7B5A7956" expires: '-1' - location: https://searchfed3234a.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + location: https://searchfed3234a.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 1f0750cc-b990-11eb-ac58-a0481ca055a9 + request-id: 968431ee-afc6-11eb-8eac-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searchfed3234a.search.windows.net/datasources?api-version=2020-06-30 + url: https://searchfed3234a.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchfed3234a.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searchfed3234a.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns7P89m9vXv72Vj+HF8Vy1l11YyXeXv3d1vkbYa3fxz/ - NNW6nubNR6OPLrNynX/06HsWODW7IMi/70c77w6ePtx98mR/597x02dPd5/8vh9R+2W2oOYfNdli - VebbeENg0VezvJnWxaotquVHj5brshx91F6v0Dr7wbrOJ2U1oVbNeiKfSotpnc/yZVtkZfPRo1/8 - EQ1tmU8B4nVbF0vCBM1+CbWjMWfFMq/RyiDBw3TfjD76Reu8vrbvALuTeba8yJ/mrUB9WZXFVFtI - g6d5meObgSb5clpf85h+r1w//CXf/yX/Dwa+dgSLAQAA + NNW6nubNR6OPLrNynX/06HsWODW7IMi/70c77w6ePtzdPT1+8OT+8YOH9z/9fT+i9stsQc0/arLF + qsy38YbAoq9meTOti1VbVMuPHi3XZTn6qL1eoXX2g3WdT8pqQq2a9UQ+lRbTOp/ly7bIyuajR7/4 + IxraMp8CxOu2LpaECZr9EmpHY86KZV6jlUGCh+m+GX30i9Z5fW3fAXYn82x5kT/NW4H6siqLqbaQ + Bk/zMsc3A03y5bS+5jH9Xrl++Eu+/0v+H3wg40eLAQAA headers: cache-control: no-cache content-encoding: gzip content-length: '375' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:23:41 GMT - elapsed-time: '32' + date: Sat, 08 May 2021 06:28:23 GMT + elapsed-time: '19' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 1f3da3d2-b990-11eb-9b9a-a0481ca055a9 + request-id: 96b3a5b5-afc6-11eb-84ac-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchfed3234a.search.windows.net/datasources?api-version=2020-06-30 + url: https://searchfed3234a.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: '{"name": "sample-datasource", "description": "updated", "type": "azureblob", "credentials": {"connectionString": "DefaultEndpointsProtocol=https;AccountName=storagename;AccountKey=NzhL3hKZbJBuJ2484dPTR+xF30kYaWSSCbs2BzLgVVI1woqeST/1IgqaLm6QAOTxtGvxctSNbIR/1hW8yH+bJg==;EndpointSuffix=core.windows.net"}, @@ -86,111 +86,111 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://searchfed3234a.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + uri: https://searchfed3234a.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns7P89m9vXv72Vj+HF8Vy1l11YyXeXv3d1vkbYa3fxz/ - NNW6nubN3d8tX7ZFe/3RyICmRhcE9/f9aOfdwdOHu0+e7O/ce7q7++Tpzu/7EbVaZoucvm6yxarM + NNW6nubN3d8tX7ZFe/3RyICmRhcE9/f9aOfdwdOHu7unxw+ePHh4+vTZ3u/7EbVaZoucvm6yxarM t/GGQKKvZnkzrYtVW1RLarFe0Zf5jD5vr1d4JfvBus4nZTWhj5r1RD5drsty9NG0zmfAIyubjx79 4o9odMt8Cjiv27pYEjpo9kuoHQ07K5Z5jVYGkxwjdd+MPvpF67y+tu8QFtnJPFte5E/zVqC+rMpi - qi2kwdO8zPHNQJN8Oa2veWC/V64f/pL/B65iyaqMAQAA + qi2kwdO8zPHNQJN8Oa2veWC/V64f/pL/B2AnqqyMAQAA headers: cache-control: no-cache content-encoding: gzip content-length: '375' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:23:42 GMT - elapsed-time: '48' - etag: W/"0x8D91BB403D11BD0" + date: Sat, 08 May 2021 06:28:23 GMT + elapsed-time: '28' + etag: W/"0x8D911EA7B79EDF2" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 1f4cbe3a-b990-11eb-907d-a0481ca055a9 + request-id: 96bf1780-afc6-11eb-ba09-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchfed3234a.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + url: https://searchfed3234a.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchfed3234a.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searchfed3234a.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns7P89m9vXv72Vj+HF8Vy1l11YyXeXv3d1vkbYa3fxz/ - NNW6nubNR6OPLrNynX/06HsWODW7IMi/70c77w6ePtx98mR/597T3d0nT3d+34+o/TJbUPOPmmyx + NNW6nubNR6OPLrNynX/06HsWODW7IMi/70c77w6ePtzdPT1+8OTBw9Onz/Z+34+o/TJbUPOPmmyx KvNtvCGw6KtZ3kzrYtUW1ZJarFf0ZT6jz9vrFV7JfrCu80lZTeijZj2RT5frshx9NK3zWb5si6xs Pnr0iz+i8S3zKeC8butiSeig2S+hdjTwrFjmNVoZTHKM1X0z+ugXrfP62r5DWGQn82x5kT/NW4H6 - siqLqbaQBk/zMsc3A03y5bS+5oH9Xrl++Eu+/0v+H5hFmiGQAQAA + siqLqbaQBk/zMsc3A03y5bS+5oH9Xrl++Eu+/0v+HyQMVXKQAQAA headers: cache-control: no-cache content-encoding: gzip content-length: '381' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:23:42 GMT + date: Sat, 08 May 2021 06:28:23 GMT elapsed-time: '11' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 1f61f3e3-b990-11eb-aa70-a0481ca055a9 + request-id: 96ccacac-afc6-11eb-8ecc-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchfed3234a.search.windows.net/datasources?api-version=2020-06-30 + url: https://searchfed3234a.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchfed3234a.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + uri: https://searchfed3234a.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns7P89m9vXv72Vj+HF8Vy1l11YyXeXv3d1vkbYa3fxz/ - NNW6nubN3d8tX7ZFe/3RyICmRhcE9/f9aOfdwdOHu0+e7O/ce7q7++Tpzu/7EbVaZoucvm6yxarM + NNW6nubN3d8tX7ZFe/3RyICmRhcE9/f9aOfdwdOHu7unxw+ePHh4+vTZ3u/7EbVaZoucvm6yxarM t/GGQKKvZnkzrYtVW1RLarFe0Zf5jD5vr1d4JfvBus4nZTWhj5r1RD5drsty9NG0zmfAIyubjx79 4o9odMt8Cjiv27pYEjpo9kuoHQ07K5Z5jVYGkxwjdd+MPvpF67y+tu8QFtnJPFte5E/zVqC+rMpi - qi2kwdO8zPHNQJN8Oa2veWC/V64f/pL/B65iyaqMAQAA + qi2kwdO8zPHNQJN8Oa2veWC/V64f/pL/B2AnqqyMAQAA headers: cache-control: no-cache content-encoding: gzip content-length: '375' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:23:42 GMT - elapsed-time: '9' - etag: W/"0x8D91BB403D11BD0" + date: Sat, 08 May 2021 06:28:23 GMT + elapsed-time: '5' + etag: W/"0x8D911EA7B79EDF2" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 1f80a041-b990-11eb-ba1a-a0481ca055a9 + request-id: 96d71c65-afc6-11eb-bbac-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchfed3234a.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + url: https://searchfed3234a.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_create_or_update_datasource_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_create_or_update_datasource_if_unchanged.yaml index 66851facc59a..8fbd7b15c9c4 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_create_or_update_datasource_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_create_or_update_datasource_if_unchanged.yaml @@ -11,30 +11,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search802607.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search802607.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search802607.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB40EA34AFF\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search802607.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EA850A42F4\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '389' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:24:00 GMT - elapsed-time: '43' - etag: W/"0x8D91BB40EA34AFF" + date: Sat, 08 May 2021 06:28:40 GMT + elapsed-time: '54' + etag: W/"0x8D911EA850A42F4" expires: '-1' - location: https://search802607.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + location: https://search802607.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 2a009c71-b990-11eb-8225-a0481ca055a9 + request-id: a0340523-afc6-11eb-bb09-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search802607.search.windows.net/datasources?api-version=2020-06-30 + url: https://search802607.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: '{"name": "sample-datasource", "description": "updated", "type": "azureblob", "credentials": {"connectionString": "DefaultEndpointsProtocol=https;AccountName=storagename;AccountKey=NzhL3hKZbJBuJ2484dPTR+xF30kYaWSSCbs2BzLgVVI1woqeST/1IgqaLm6QAOTxtGvxctSNbIR/1hW8yH+bJg==;EndpointSuffix=core.windows.net"}, @@ -49,42 +49,42 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search802607.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + uri: https://search802607.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4PdvY+3Xkwlj/GV8VyVl0142Xe3v3dFnmb4d0fxz9N - ta6neXP3d8uXbdFefzQygKnRBUH9fT/aeXfw9OHukyf7O6dP9naPn9z/fT+iVstskdPXTbZYlfk2 - 3hBI9NUsb6Z1sWqLakkt1iv6Mp/R5+31Cq9kP1jX+aSsJvRRs57Ip8t1WY4+mtb5DHhkZfPRo1/8 - EY1tmU8B53VbF0tCB81+CbWjQWfFMq/RymCSY6Tum9FHv2id19f2HcIiO5lny4v8ad4K1JdVWUy1 - hTR4mpc5vhloki+n9TUP7PfK9cNf8v8AZlMkXooBAAA= + ta6neXP3d8uXbdFefzQygKnRBUH9fT/aeXfw9OHu7unxwf3dJ/ef7u78vh9Rq2W2yOnrJlusynwb + bwgk+mqWN9O6WLVFtaQW6xV9mc/o8/Z6hVeyH6zrfFJWE/qoWU/k0+W6LEcfTet8Bjyysvno0S/+ + iMa2zKeA87qtiyWhg2a/hNrRoLNimddoZTDJMVL3zeijX7TO62v7DmGRncyz5UX+NG8F6suqLKba + Qho8zcsc3ww0yZfT+poH9nvl+uEv+X8AnksceooBAAA= headers: cache-control: no-cache content-encoding: gzip content-length: '374' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:24:00 GMT - elapsed-time: '42' - etag: W/"0x8D91BB40EB21AB5" + date: Sat, 08 May 2021 06:28:40 GMT + elapsed-time: '31' + etag: W/"0x8D911EA851B5D10" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 2a32f7e6-b990-11eb-b965-a0481ca055a9 + request-id: a060b99a-afc6-11eb-8d55-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search802607.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + url: https://search802607.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview - request: body: '{"name": "sample-datasource", "description": "changed", "type": "azureblob", "credentials": {"connectionString": "DefaultEndpointsProtocol=https;AccountName=storagename;AccountKey=NzhL3hKZbJBuJ2484dPTR+xF30kYaWSSCbs2BzLgVVI1woqeST/1IgqaLm6QAOTxtGvxctSNbIR/1hW8yH+bJg==;EndpointSuffix=core.windows.net"}, - "container": {"name": "searchcontainer"}, "@odata.etag": "\"0x8D91BB40EA34AFF\""}' + "container": {"name": "searchcontainer"}, "@odata.etag": "\"0x8D911EA850A42F4\""}' headers: Accept: - application/json;odata.metadata=minimal @@ -93,13 +93,13 @@ interactions: Content-Type: - application/json If-Match: - - '"0x8D91BB40EA34AFF"' + - '"0x8D911EA850A42F4"' Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search802607.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + uri: https://search802607.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview response: body: string: '{"error":{"code":"","message":"The precondition given in one of the @@ -110,16 +110,16 @@ interactions: content-language: en content-length: '160' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:24:00 GMT - elapsed-time: '11' + date: Sat, 08 May 2021 06:28:40 GMT + elapsed-time: '8' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 2a42884e-b990-11eb-b286-a0481ca055a9 + request-id: a06ea2ba-afc6-11eb-9ae7-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 412 message: Precondition Failed - url: https://search802607.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + url: https://search802607.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_delete_datasource_async.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_delete_datasource_async.yaml index 6c508eccdb35..96d828fb21ed 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_delete_datasource_async.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_delete_datasource_async.yaml @@ -11,100 +11,100 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchb0601f27.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searchb0601f27.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchb0601f27.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB4190789A7\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchb0601f27.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EA8EDC1972\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '391' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:24:17 GMT - elapsed-time: '58' - etag: W/"0x8D91BB4190789A7" + date: Sat, 08 May 2021 06:28:56 GMT + elapsed-time: '59' + etag: W/"0x8D911EA8EDC1972" expires: '-1' - location: https://searchb0601f27.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + location: https://searchb0601f27.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 3466f6f4-b990-11eb-97e5-a0481ca055a9 + request-id: a9fd22cd-afc6-11eb-8a1f-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searchb0601f27.search.windows.net/datasources?api-version=2020-06-30 + url: https://searchb0601f27.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchb0601f27.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searchb0601f27.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4nO5/u7J7vPRjLn+OrYjmrrprxMm/v/m6LvM3w9o/j - n6Za19O8+Wj00WVWrvOPHn3PAqdmFwT59/1o593B04e7T57s7z7ceXDw8PjB7/sRtV9mC2r+UZMt - VmW+jTcEFn01y5tpXazaolp+9Gi5LsvRR+31Cq2zH6zrfFJWE2rVrCfyqbSY1vksX7ZFVjYfPfrF - H9HQlvkUIF63dbEkTNDsl1A7GnNWLPMarQwSPEz3zeijX7TO62v7DrA7mWfLi/xp3grUl1VZTLWF - NHialzm+GWiSL6f1NY/p98r1w1/y/V/y/wCrgfL5iwEAAA== + n6Za19O8+Wj00WVWrvOPHn3PAqdmFwT59/1o593B04e7u6fHB6dPT3YfPtj7fT+i9stsQc0/arLF + qsy38YbAoq9meTOti1VbVMuPHi3XZTn6qL1eoXX2g3WdT8pqQq2a9UQ+lRbTOp/ly7bIyuajR7/4 + IxraMp8CxOu2LpaECZr9EmpHY86KZV6jlUGCh+m+GX30i9Z5fW3fAXYn82x5kT/NW4H6siqLqbaQ + Bk/zMsc3A03y5bS+5jH9Xrl++Eu+/0v+H1i5mqeLAQAA headers: cache-control: no-cache content-encoding: gzip - content-length: '376' + content-length: '375' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:24:17 GMT - elapsed-time: '20' + date: Sat, 08 May 2021 06:28:56 GMT + elapsed-time: '16' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 34999fa7-b990-11eb-acab-a0481ca055a9 + request-id: aa32e99e-afc6-11eb-8343-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchb0601f27.search.windows.net/datasources?api-version=2020-06-30 + url: https://searchb0601f27.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://searchb0601f27.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + uri: https://searchb0601f27.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache - date: Thu, 20 May 2021 17:24:17 GMT - elapsed-time: '24' + date: Sat, 08 May 2021 06:28:56 GMT + elapsed-time: '46' expires: '-1' pragma: no-cache - request-id: 34adeaf7-b990-11eb-a7e2-a0481ca055a9 + request-id: aa3fe1a8-afc6-11eb-abc0-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 204 message: No Content - url: https://searchb0601f27.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + url: https://searchb0601f27.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchb0601f27.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searchb0601f27.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -117,17 +117,17 @@ interactions: content-encoding: gzip content-length: '202' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:24:18 GMT - elapsed-time: '15' + date: Sat, 08 May 2021 06:28:56 GMT + elapsed-time: '12' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 34c36ec6-b990-11eb-9f5a-a0481ca055a9 + request-id: aa510334-afc6-11eb-8cfd-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchb0601f27.search.windows.net/datasources?api-version=2020-06-30 + url: https://searchb0601f27.search.windows.net/datasources?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_delete_datasource_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_delete_datasource_if_unchanged.yaml index 1be0d811582d..766063d7c9eb 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_delete_datasource_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_delete_datasource_if_unchanged.yaml @@ -11,30 +11,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search950921e4.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search950921e4.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search950921e4.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB423B932CA\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search950921e4.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EA994717B9\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '391' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:24:35 GMT - elapsed-time: '71' - etag: W/"0x8D91BB423B932CA" + date: Sat, 08 May 2021 06:29:14 GMT + elapsed-time: '70' + etag: W/"0x8D911EA994717B9" expires: '-1' - location: https://search950921e4.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + location: https://search950921e4.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 3f205441-b990-11eb-8868-a0481ca055a9 + request-id: b46e71a2-afc6-11eb-a04d-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search950921e4.search.windows.net/datasources?api-version=2020-06-30 + url: https://search950921e4.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: '{"name": "sample-datasource", "description": "updated", "type": "azureblob", "credentials": {"connectionString": "DefaultEndpointsProtocol=https;AccountName=storagename;AccountKey=NzhL3hKZbJBuJ2484dPTR+xF30kYaWSSCbs2BzLgVVI1woqeST/1IgqaLm6QAOTxtGvxctSNbIR/1hW8yH+bJg==;EndpointSuffix=core.windows.net"}, @@ -49,49 +49,49 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search950921e4.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + uri: https://search950921e4.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4f3t95uLeb74/lz/FVsZxVV814mbd3f7dF3mZ4+8fx - T1Ot62ne3P3d8mVbtNcfjQxoanRBcH/fj3beHTx9uPvkyf7evZP9e7v7u7/vR9RqmS1y+rrJFqsy + T1Ot62ne3P3d8mVbtNcfjQxoanRBcH/fj3beHTx9uLt7evzw4f2T+7v7O7/vR9RqmS1y+rrJFqsy 38YbAom+muXNtC5WbVEtqcV6RV/mM/q8vV7hlewH6zqflNWEPmrWE/l0uS7L0UfTOp8Bj6xsPnr0 iz+i0S3zKeC8butiSeig2S+hdjTsrFjmNVoZTHKM1H0z+ugXrfP62r5DWGQn82x5kT/NW4H6siqL - qbaQBk/zMsc3A03y5bS+5oH9Xrl++Ev+H6Mcb7CMAQAA + qbaQBk/zMsc3A03y5bS+5oH9Xrl++Ev+H4Msbl2MAQAA headers: cache-control: no-cache content-encoding: gzip content-length: '375' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:24:35 GMT - elapsed-time: '32' - etag: W/"0x8D91BB423C43141" + date: Sat, 08 May 2021 06:29:14 GMT + elapsed-time: '63' + etag: W/"0x8D911EA995C5140" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 3f48eae8-b990-11eb-ad98-a0481ca055a9 + request-id: b49d992b-afc6-11eb-badd-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search950921e4.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + url: https://search950921e4.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal If-Match: - - '"0x8D91BB423B932CA"' + - '"0x8D911EA994717B9"' User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://search950921e4.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + uri: https://search950921e4.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview response: body: string: '{"error":{"code":"","message":"The precondition given in one of the @@ -102,16 +102,16 @@ interactions: content-language: en content-length: '160' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:24:35 GMT - elapsed-time: '5' + date: Sat, 08 May 2021 06:29:14 GMT + elapsed-time: '6' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 3f540e71-b990-11eb-8c0d-a0481ca055a9 + request-id: b4b1c62b-afc6-11eb-af1f-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 412 message: Precondition Failed - url: https://search950921e4.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + url: https://search950921e4.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_get_datasource_async.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_get_datasource_async.yaml index c04c9ee97ba5..12248e4f13e5 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_get_datasource_async.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_get_datasource_async.yaml @@ -11,66 +11,66 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search54ec1df4.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search54ec1df4.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search54ec1df4.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB42D7FDCCA\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search54ec1df4.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EAA2E3A3F8\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '391' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:24:52 GMT - elapsed-time: '38' - etag: W/"0x8D91BB42D7FDCCA" + date: Sat, 08 May 2021 06:29:29 GMT + elapsed-time: '66' + etag: W/"0x8D911EAA2E3A3F8" expires: '-1' - location: https://search54ec1df4.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + location: https://search54ec1df4.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 48efc530-b990-11eb-9c60-a0481ca055a9 + request-id: be073f5c-afc6-11eb-8cfb-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search54ec1df4.search.windows.net/datasources?api-version=2020-06-30 + url: https://search54ec1df4.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search54ec1df4.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + uri: https://search54ec1df4.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns7v7+fT3dn5/lj+HF8Vy1l11YyXeXv3d1vkbYa3fxz/ - NNW6nubN3d8tX7ZFe/3RyICmRhcE9/f9aOfdwdOHu0+e7O89ffDs6cnJ8e/7EbVaZoucvm6yxarM - t/GGQKKvZnkzrYtVW1TLjx4t12U5+qi9XqF19oN1nU/KakKtmvVEPpUW0zqfAYWsbD569Is/ooEt - 8ylAvG7rYkmYoNkvoXY04qxY5jVaGSR4kO6b0Ue/aJ3X1/YdYHcyz5YX+dO8Fagvq7KYagtp8DQv - c3wz0CRfTutrHtPvleuHv+T/AUGfhPqHAQAA + NNW6nubN3d8tX7ZFe/3RyICmRhcE9/f9aOfdwdOHu7unx8d7p/eO7z07+H0/olbLbJHT1022WJX5 + Nt4QSPTVLG+mdbFqi2r50aPluixHH7XXK7TOfrCu80lZTahVs57Ip9JiWuczoJCVzUePfvFHNLBl + PgWI121dLAkTNPsl1I5GnBXLvEYrgwQP0n0z+ugXrfP62r4D7E7m2fIif5q3AvVlVRZTbSENnuZl + jm8GmuTLaX3NY/q9cv3wl/w/NtCF6YcBAAA= headers: cache-control: no-cache content-encoding: gzip - content-length: '369' + content-length: '368' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:24:52 GMT - elapsed-time: '17' - etag: W/"0x8D91BB42D7FDCCA" + date: Sat, 08 May 2021 06:29:29 GMT + elapsed-time: '15' + etag: W/"0x8D911EAA2E3A3F8" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 490faa08-b990-11eb-80e4-a0481ca055a9 + request-id: be3af6e7-afc6-11eb-9716-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search54ec1df4.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + url: https://search54ec1df4.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_list_datasource_async.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_list_datasource_async.yaml index 8da8313c69f3..94d156b3caf0 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_list_datasource_async.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_data_source_live_async.test_list_datasource_async.yaml @@ -11,30 +11,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search74a71e70.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search74a71e70.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search74a71e70.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB43778EA61\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search74a71e70.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EAAC4D7E05\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '391' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:25:08 GMT - elapsed-time: '71' - etag: W/"0x8D91BB43778EA61" + date: Sat, 08 May 2021 06:29:46 GMT + elapsed-time: '57' + etag: W/"0x8D911EAAC4D7E05" expires: '-1' - location: https://search74a71e70.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + location: https://search74a71e70.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 52dd9445-b990-11eb-b8f3-a0481ca055a9 + request-id: c7715cb7-afc6-11eb-ad1f-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search74a71e70.search.windows.net/datasources?api-version=2020-06-30 + url: https://search74a71e70.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: '{"name": "another-sample", "type": "azureblob", "credentials": {"connectionString": "DefaultEndpointsProtocol=https;AccountName=storagename;AccountKey=NzhL3hKZbJBuJ2484dPTR+xF30kYaWSSCbs2BzLgVVI1woqeST/1IgqaLm6QAOTxtGvxctSNbIR/1hW8yH+bJg==;EndpointSuffix=core.windows.net"}, @@ -47,66 +47,66 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search74a71e70.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search74a71e70.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search74a71e70.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB4378C9CFC\"","name":"another-sample","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search74a71e70.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EAAC60BB60\"","name":"another-sample","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '388' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:25:08 GMT - elapsed-time: '35' - etag: W/"0x8D91BB4378C9CFC" + date: Sat, 08 May 2021 06:29:46 GMT + elapsed-time: '66' + etag: W/"0x8D911EAAC60BB60" expires: '-1' - location: https://search74a71e70.search.windows.net/datasources('another-sample')?api-version=2020-06-30 + location: https://search74a71e70.search.windows.net/datasources('another-sample')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 530c1e7e-b990-11eb-9cd3-a0481ca055a9 + request-id: c7a43464-afc6-11eb-9d8b-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search74a71e70.search.windows.net/datasources?api-version=2020-06-30 + url: https://search74a71e70.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search74a71e70.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search74a71e70.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4f7GcPdvMHO2P5c3xVLGfVVTNe5u3d322Rtxne/nH8 - 01Trepo3H40+uszKdf7Ro+9Z4NTsgiD/vh/tvDt4+nD3yZP9ew8OTh6ePDv5fT+i9stsQc0/ypZV + 01Trepo3H40+uszKdf7Ro+9Z4NTsgiD/vh/tvDt4+nB39/T4+OTTnSdPPt35fT+i9stsQc0/ypZV O8/r7SZbrMqcPp/lzbQuVm1RLT96tFyX5eij9nrFTX+wrvNJWU2oVbOeyKfSYlrns3zZFlnZfPTo F39E41rmU4B43dbFktBAs19C7WjAWbHMa7RSDGSM7pvRR79ondfX9h0M5mSeLS/yp3krUF9WZTHV - FtLgaV7m+GagSb6c1tc8pt8r1w9/yWgjpR4cnB5/uutTSii0jTeE6vTVzxtiff+X/D+/W7ZItQIA + FtLgaV7m+GagSb6c1tc8pt8r1w9/yWgjpfafPjjdue9TSii0jTeE6vTVzxtiff+X/D/xIxd7tQIA AA== headers: cache-control: no-cache content-encoding: gzip content-length: '400' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:25:08 GMT - elapsed-time: '18' + date: Sat, 08 May 2021 06:29:46 GMT + elapsed-time: '34' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 531c4b0f-b990-11eb-9b74-a0481ca055a9 + request-id: c7b87e55-afc6-11eb-baba-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search74a71e70.search.windows.net/datasources?api-version=2020-06-30 + url: https://search74a71e70.search.windows.net/datasources?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_analyze_text.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_analyze_text.yaml index 999d6fb8704f..cf59691d5ba5 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_analyze_text.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_analyze_text.yaml @@ -9,34 +9,34 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search4cbf15dc.search.windows.net/indexes('drgqefsg')/search.analyze?api-version=2020-06-30 + uri: https://search4cbf15dc.search.windows.net/indexes('drgqefsg')/search.analyze?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns73p5Pz3fuz6Vj+HF8Vy1l11YyXeXv3d1vkbYa3f/yL - YlpXTXXejo9/sK7z8Wtp/JN7O3s7v//Op7//vZ3x8TIrr3+Qv8qbddl+NPqord7my+ajR9/7xfIr - 9Vwt848b+qpps7r98vy8yQmfndFH+XJm/ro/+mhVNUVbVPTCzi8ZuZfbq6r76oPg1V2C5N7d/SXf - /yX/D4Ujad/9AAAA + YlpXTXXejo9/sK7z8Wtp/JN7O3s7v//Op7//vZ3f/2WdXxb51fh4mZXXP8hf5c26bD8afdRWb/Nl + 89Gj7/1i+ZUwqJb5xw191bRZ3X55ft7khNfO6KN8OTN/3R99tKqaoi0qemHnl4zcy+1V1X31QfDq + LkFy7+7+ku//kv8Hv/2b5QUBAAA= headers: cache-control: no-cache content-encoding: gzip - content-length: '297' + content-length: '305' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:25:29 GMT - elapsed-time: '63' + date: Sat, 08 May 2021 06:30:03 GMT + elapsed-time: '25' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 5f4d4344-b990-11eb-9c8d-a0481ca055a9 + request-id: d1bd6b94-afc6-11eb-ae0b-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search4cbf15dc.search.windows.net/indexes('drgqefsg')/search.analyze?api-version=2020-06-30 + url: https://search4cbf15dc.search.windows.net/indexes('drgqefsg')/search.analyze?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_create_index.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_create_index.yaml index c4e16353060c..22c62875e8f3 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_create_index.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_create_index.yaml @@ -14,28 +14,28 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search4bde15af.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search4bde15af.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search4bde15af.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB44E8B9957\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"baseRate","type":"Edm.Double","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]}],"scoringProfiles":[{"name":"MyProfile","functionAggregation":null,"text":null,"functions":[]}],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' + string: '{"@odata.context":"https://search4bde15af.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911EAC2C4F30B\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"normalizer":null,"synonymMaps":[]},{"name":"baseRate","type":"Edm.Double","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"normalizer":null,"synonymMaps":[]}],"scoringProfiles":[{"name":"MyProfile","functionAggregation":null,"text":null,"functions":[]}],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"normalizers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' headers: cache-control: no-cache - content-length: '967' + content-length: '1020' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:25:47 GMT - elapsed-time: '1089' - etag: W/"0x8D91BB44E8B9957" + date: Sat, 08 May 2021 06:30:23 GMT + elapsed-time: '823' + etag: W/"0x8D911EAC2C4F30B" expires: '-1' - location: https://search4bde15af.search.windows.net/indexes('hotels')?api-version=2020-06-30 + location: https://search4bde15af.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 6957c225-b990-11eb-bb43-a0481ca055a9 + request-id: dd789142-afc6-11eb-89a1-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search4bde15af.search.windows.net/indexes?api-version=2020-06-30 + url: https://search4bde15af.search.windows.net/indexes?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_create_or_update_index.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_create_or_update_index.yaml index d20e89e59e0a..0b72cb7be365 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_create_or_update_index.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_create_or_update_index.yaml @@ -16,30 +16,30 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search3b9d19d1.search.windows.net/indexes('hotels')?api-version=2020-06-30 + uri: https://search3b9d19d1.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search3b9d19d1.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB4591196A4\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"baseRate","type":"Edm.Double","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]}],"scoringProfiles":[],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' + string: '{"@odata.context":"https://search3b9d19d1.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911EACEFA2F23\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"normalizer":null,"synonymMaps":[]},{"name":"baseRate","type":"Edm.Double","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"normalizer":null,"synonymMaps":[]}],"scoringProfiles":[],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"normalizers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' headers: cache-control: no-cache - content-length: '893' + content-length: '946' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:26:05 GMT - elapsed-time: '1165' - etag: W/"0x8D91BB4591196A4" + date: Sat, 08 May 2021 06:30:44 GMT + elapsed-time: '444' + etag: W/"0x8D911EACEFA2F23" expires: '-1' - location: https://search3b9d19d1.search.windows.net/indexes('hotels')?api-version=2020-06-30 + location: https://search3b9d19d1.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 73d500a5-b990-11eb-843a-a0481ca055a9 + request-id: e9e8cdc0-afc6-11eb-93dc-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search3b9d19d1.search.windows.net/indexes('hotels')?api-version=2020-06-30 + url: https://search3b9d19d1.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview - request: body: '{"name": "hotels", "fields": [{"name": "hotelId", "type": "Edm.String", "key": true, "retrievable": true, "searchable": false, "filterable": false, @@ -57,40 +57,40 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search3b9d19d1.search.windows.net/indexes('hotels')?api-version=2020-06-30 + uri: https://search3b9d19d1.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns7vTR7Odul/Y/lzfFUsZ9VVM17m7d3fbZG3Gd7+cfow - f5c3d3+3fNkW7fVHIwOWGlwQzN/3o513B08f7j55sn//4fHDnWdPn/6+H1GrZbbI6et51eZlQ3/P - 8vNsXbavp1VdLC9e1tV5UVKD5bosRx+dF3k5az569L1fHLx3NqMX2+sVPjidLcavW7xLnwnG2QQQ - zrOyyQGibPM6+KjOqX1+KZ+19Zo+aqq6lb+1zXk2pYH4n7zNr01rHvvxMiuvf5DXBlfpu/tp1vm7 - uV5Wy+vFF9kKw/r+LxnZkU2yJn+VtTkNwxva02oNJOhFBh9g9M0OTX//Bsf2ffoomFZ8bMf7xbV+ - SoM7Xy+nbVEtjy8u6vwiw68GqLCo/G6aAQ6DJ+jNlyv96Bd/lJVldZXPvqyLiwKffO+jb31ErRbZ - u+OL/Gz5OieWBzt9uvNLCLX1xUXeEAHpg+9RKzMa/bOt3ubLovP3M6a4fkKzUQcf5Mtpfc3Y/F4g - qODcFIuizGqICGGoMqIT/ONfFNO6aqrzdnz8g3Wdj18zncdPvti7/9q9RxO0a8BN5Jdf8kv+Hxne - LjfHAwAA + f5c3d3+3fNkW7fVHIwOWGlwQzN/3o513B08f7u6eHp88u7dz8GR///f9iFots0VOX8+rNi8b+nuW + n2frsn09repiefGyrs6Lkhos12U5+ui8yMtZ89Gj7/3i4L2zGb3YXq/wwelsMX7d4l36TDDOJoBw + npVNDhBlm9fBR3VO7fNL+ayt1/RRU9Wt/K1tzrMpDcT/5G1+bVrz2I+XWXn9g7w2uErf3U+zzt/L + ql5kZeF90lwvq+X14otshYF+/5eM7FgnWZO/ytqcBuYN9mm1Blr0IncY4PjNDlZ//1kd7ffpo2Dq + 8bGlwBfX+ikN93y9nLZFtTy+uKjziwy/GqDCxvK7aQY4DJ6gN1+u9KNf/FFWltVVPvuyLi4KfPK9 + j771EbVaZO+OL/Kz5eucxAIs9+nOLyHU1hcXeUMkpQ++R63M+PRPNzz9oK3e5svu3894UvQTmrA6 + +CBfTutrRu/3As1lEE2xKMqshlwRyipYygM//kUxraumOm/Hxz9Y1/n4NU/F+MkXe/dfu/doDncN + uIn88kt+yf8D8H5Lu/wDAAA= headers: cache-control: no-cache content-encoding: gzip - content-length: '576' + content-length: '587' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:26:05 GMT - elapsed-time: '954' - etag: W/"0x8D91BB459A90FDD" + date: Sat, 08 May 2021 06:30:44 GMT + elapsed-time: '256' + etag: W/"0x8D911EACF308B44" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 74a15099-b990-11eb-8412-a0481ca055a9 + request-id: ea5247ed-afc6-11eb-84c7-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search3b9d19d1.search.windows.net/indexes('hotels')?api-version=2020-06-30 + url: https://search3b9d19d1.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_create_or_update_indexes_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_create_or_update_indexes_if_unchanged.yaml index 6f3109d27b34..807aad4ea2a4 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_create_or_update_indexes_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_create_or_update_indexes_if_unchanged.yaml @@ -12,30 +12,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchefa91fe3.search.windows.net/indexes?api-version=2020-06-30 + uri: https://searchefa91fe3.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchefa91fe3.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB46454761A\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"baseRate","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":null,"text":null,"functions":[]}],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' + string: '{"@odata.context":"https://searchefa91fe3.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911EADBBBE602\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"normalizer":null,"synonymMaps":[]},{"name":"baseRate","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":null,"text":null,"functions":[]}],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"normalizers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' headers: cache-control: no-cache - content-length: '961' + content-length: '1014' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:26:23 GMT - elapsed-time: '1155' - etag: W/"0x8D91BB46454761A" + date: Sat, 08 May 2021 06:31:05 GMT + elapsed-time: '493' + etag: W/"0x8D911EADBBBE602" expires: '-1' - location: https://searchefa91fe3.search.windows.net/indexes('hotels')?api-version=2020-06-30 + location: https://searchefa91fe3.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 7f1bf690-b990-11eb-a933-a0481ca055a9 + request-id: f69fc800-afc6-11eb-bf9f-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searchefa91fe3.search.windows.net/indexes?api-version=2020-06-30 + url: https://searchefa91fe3.search.windows.net/indexes?api-version=2020-06-30-Preview - request: body: '{"name": "hotels", "fields": [{"name": "hotelId", "type": "Edm.String", "key": true, "retrievable": true, "searchable": false}, {"name": "baseRate", @@ -51,46 +51,46 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://searchefa91fe3.search.windows.net/indexes('hotels')?api-version=2020-06-30 + uri: https://searchefa91fe3.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns7z8+zh7nl+byx/jq+K5ay6asbLvL37uy3yNsPbP04f - 5u/y5u7vli/bor3+aGTAUoMLgvn7frTz7uDpw90nT/Y/3X92sP/0wYPf9yNqtcwWOX09r9q8bOjv - GXW3LtvX06oulhcv6+q8KKnBcl2Wo4/Oi7ycNR89+t4vDt47m9GL7fUKH5zOFuPXLd6lzwTjbAII - 51nZ5ABRtnktH7X1mj6pc2qeX/ofNVXd+n+fZ1MahvfB2/za/MoDP15m5fUP8togKh13P806fzfX - y2p5vfgiW2FM3/8lIzusSdbkr7I2pzF443parYEDvcjgBaFvflwK8Rsc2Pfpo2BC+ePRR/RZ8+Wq - LaolffCLP8rKsrrKZ1/WxUWBT7730bc+olaL7N3xRX62fJ0Ti2L6P935JQRwfXGRNzRm+gCwDA76 - Z1u9zZdF5+9nTCT9hAhYBx/ky2l9zdj8XiCDDqVYFGVWg6UJQ+VpnZMf/6KY1lVTnbfj4x+s63z8 - mqkzfvLF3v3X7j0i664BN5Fffskv+X8ACHEHIXcDAAA= + 5u/y5u7vli/bor3+aGTAUoMLgvn7frTz7uDpw93d0+OnT57t7T7ZOfl9P6JWy2yR09fzqs3Lhv6e + UXfrsn09repiefGyrs6Lkhos12U5+ui8yMtZ89Gj7/3i4L2zGb3YXq/wwelsMX7d4l36TDDOJoBw + npVNDhBlm9fyUVuv6ZM6p+b5pf9RU9Wt//d5NqVheB+8za/Nrzzw42VWXv8grw2i0nH306zz97Kq + F1lZeJ8018tqeb34IlthlN//JSM70EnW5K+yNqdReSN9Wq2BFb3IHQqK3/xIFeLP6lC/Tx8Fk84f + jz6iz5ovV21RLemDX/xRVpbVVT77si4uCnzyvY++9RG1WmTvji/ys+XrnNgYLPLpzi8hgOuLi7wh + KtAHgGWw0j8dUvpBW73Nl92/nzEd9ROicR18kC+n9TWj93uBUjq2YlGUWQ05IJRVEHTafvyLYlpX + TXXejo9/sK7z8Wsm4PjJF3v3X7v3iPK7BtxEfvklv+T/ATOuuZmsAwAA headers: cache-control: no-cache content-encoding: gzip - content-length: '545' + content-length: '555' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:26:25 GMT - elapsed-time: '1031' - etag: W/"0x8D91BB464F84D77" + date: Sat, 08 May 2021 06:31:05 GMT + elapsed-time: '258' + etag: W/"0x8D911EADBF21B0C" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 7fe4ec9f-b990-11eb-907c-a0481ca055a9 + request-id: f7133581-afc6-11eb-8571-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchefa91fe3.search.windows.net/indexes('hotels')?api-version=2020-06-30 + url: https://searchefa91fe3.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview - request: body: '{"name": "hotels", "fields": [{"name": "hotelId", "type": "Edm.String", "key": true, "retrievable": true, "searchable": false}, {"name": "baseRate", "type": "Edm.Double", "retrievable": true}], "scoringProfiles": [], "corsOptions": - {"allowedOrigins": ["*"], "maxAgeInSeconds": 60}, "@odata.etag": "\"0x8D91BB46454761A\""}' + {"allowedOrigins": ["*"], "maxAgeInSeconds": 60}, "@odata.etag": "\"0x8D911EADBBBE602\""}' headers: Accept: - application/json;odata.metadata=minimal @@ -99,13 +99,13 @@ interactions: Content-Type: - application/json If-Match: - - '"0x8D91BB46454761A"' + - '"0x8D911EADBBBE602"' Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://searchefa91fe3.search.windows.net/indexes('hotels')?api-version=2020-06-30 + uri: https://searchefa91fe3.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview response: body: string: '{"error":{"code":"","message":"The precondition given in one of the @@ -116,16 +116,16 @@ interactions: content-language: en content-length: '160' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:26:25 GMT - elapsed-time: '32' + date: Sat, 08 May 2021 06:31:05 GMT + elapsed-time: '17' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 808894cd-b990-11eb-888d-a0481ca055a9 + request-id: f74580ad-afc6-11eb-b5c2-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 412 message: Precondition Failed - url: https://searchefa91fe3.search.windows.net/indexes('hotels')?api-version=2020-06-30 + url: https://searchefa91fe3.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_delete_indexes.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_delete_indexes.yaml index 399f81affb2c..9ef02a144eda 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_delete_indexes.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_delete_indexes.yaml @@ -5,33 +5,33 @@ interactions: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://search785e1686.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://search785e1686.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache - date: Thu, 20 May 2021 17:26:43 GMT - elapsed-time: '567' + date: Sat, 08 May 2021 06:31:23 GMT + elapsed-time: '180' expires: '-1' pragma: no-cache - request-id: 8acff689-b990-11eb-8cb3-a0481ca055a9 + request-id: 01e13d3a-afc7-11eb-952e-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 204 message: No Content - url: https://search785e1686.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + url: https://search785e1686.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search785e1686.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search785e1686.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -44,17 +44,17 @@ interactions: content-encoding: gzip content-length: '200' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:26:48 GMT - elapsed-time: '35' + date: Sat, 08 May 2021 06:31:28 GMT + elapsed-time: '34' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 8e3cbba0-b990-11eb-a1fe-a0481ca055a9 + request-id: 051f10d1-afc7-11eb-bb2c-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search785e1686.search.windows.net/indexes?api-version=2020-06-30 + url: https://search785e1686.search.windows.net/indexes?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_delete_indexes_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_delete_indexes_if_unchanged.yaml index f5f7e975aa0f..c18e0b56830a 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_delete_indexes_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_delete_indexes_if_unchanged.yaml @@ -12,30 +12,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchc1c41bc0.search.windows.net/indexes?api-version=2020-06-30 + uri: https://searchc1c41bc0.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchc1c41bc0.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB47CF05578\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"baseRate","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":null,"text":null,"functions":[]}],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' + string: '{"@odata.context":"https://searchc1c41bc0.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911EAF4E7AE37\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"normalizer":null,"synonymMaps":[]},{"name":"baseRate","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":null,"text":null,"functions":[]}],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"normalizers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' headers: cache-control: no-cache - content-length: '961' + content-length: '1014' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:27:05 GMT - elapsed-time: '1173' - etag: W/"0x8D91BB47CF05578" + date: Sat, 08 May 2021 06:31:47 GMT + elapsed-time: '790' + etag: W/"0x8D911EAF4E7AE37" expires: '-1' - location: https://searchc1c41bc0.search.windows.net/indexes('hotels')?api-version=2020-06-30 + location: https://searchc1c41bc0.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 97b55a2f-b990-11eb-afde-a0481ca055a9 + request-id: 0fa26d57-afc7-11eb-b8ac-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searchc1c41bc0.search.windows.net/indexes?api-version=2020-06-30 + url: https://searchc1c41bc0.search.windows.net/indexes?api-version=2020-06-30-Preview - request: body: '{"name": "hotels", "fields": [{"name": "hotelId", "type": "Edm.String", "key": true, "retrievable": true, "searchable": false}, {"name": "baseRate", @@ -51,52 +51,52 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://searchc1c41bc0.search.windows.net/indexes('hotels')?api-version=2020-06-30 + uri: https://searchc1c41bc0.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns6nu9P93cl0Zyx/jq+K5ay6asbLvL37uy3yNsPbP04f - 5u/y5u7vli/bor3+aGTAUoMLgvn7frTz7uDpw90nT/YfPN1/+HRnd+f3/YhaLbNFTl/PqzYvG/p7 - lp9n67J9Pa3qYnnxsq7Oi5IaLNdlOfrovMjLWfPRo+/94uC9sxm92F6v8MHpbDF+3eJd+kwwziaA - cJ6VTQ4QZZvX8lFbr+mTOqfm+aX/UVPVrf/3eTalYXgfvM2vza888ONlVl7/IK8NotJx99Os83dz - vayW14svshXG9P1fMrLDmmRN/iprcxqDN66n1Ro40IsMXhD65selEL/BgX2fPgomlD8efUSfNV+u - 2qJa0ge/+KOsLKurfPZlXVwU+OR7H33rI2q1yN4dX+Rny9c5sSim/9OdX0IA1xcXeUNjpg8Ay+Cg - f7bV23xZdP5+xkTST4iAdfBBvpzW14zN7wUy6FCKRVFmNViaMFSe1jn58S+KaV011Xk7Pv7Bus7H - r5k64ydf7N1/7d4jsu4acBP55Zf8kv8HtfoGzXcDAAA= + 5u/y5u7vli/bor3+aGTAUoMLgvn7frTz7uDpw93d0+Nn93eO7+0c7/y+H1GrZbbI6et51eZlQ3/P + 8vNsXbavp1VdLC9e1tV5UVKD5bosRx+dF3k5az569L1fHLx3NqMX2+sVPjidLcavW7xLnwnG2QQQ + zrOyyQGibPNaPmrrNX1S59Q8v/Q/aqq69f8+z6Y0DO+Dt/m1+ZUHfrzMyusf5LVBVDrufpp1/l5W + 9SIrC++T5npZLa8XX2QrjPL7v2RkBzrJmvxV1uY0Km+kT6s1sKIXuUNB8ZsfqUL8WR3q9+mjYNL5 + 49FH9Fnz5aotqiV98Is/ysqyuspnX9bFRYFPvvfRtz6iVovs3fFFfrZ8nRMbg0U+3fklBHB9cZE3 + RAX6ALAMVvqnQ0o/aKu3+bL79zOmo35CNK6DD/LltL5m9H4vUErHViyKMqshB4SyCoJO249/UUzr + qqnO2/HxD9Z1Pn7NBBw/+WLv/mv3HlF+14CbyC+/5Jf8P0h+xPWsAwAA headers: cache-control: no-cache content-encoding: gzip - content-length: '545' + content-length: '555' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:27:05 GMT - elapsed-time: '534' - etag: W/"0x8D91BB47D49D010" + date: Sat, 08 May 2021 06:31:47 GMT + elapsed-time: '131' + etag: W/"0x8D911EAF50A30A0" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 9880c143-b990-11eb-8df6-a0481ca055a9 + request-id: 103fc924-afc7-11eb-9601-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchc1c41bc0.search.windows.net/indexes('hotels')?api-version=2020-06-30 + url: https://searchc1c41bc0.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal If-Match: - - '"0x8D91BB47CF05578"' + - '"0x8D911EAF4E7AE37"' User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://searchc1c41bc0.search.windows.net/indexes('hotels')?api-version=2020-06-30 + uri: https://searchc1c41bc0.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview response: body: string: '{"error":{"code":"","message":"The precondition given in one of the @@ -107,16 +107,16 @@ interactions: content-language: en content-length: '160' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:27:05 GMT - elapsed-time: '20' + date: Sat, 08 May 2021 06:31:47 GMT + elapsed-time: '15' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 98d9ddc1-b990-11eb-b4af-a0481ca055a9 + request-id: 105e6d32-afc7-11eb-9675-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 412 message: Precondition Failed - url: https://searchc1c41bc0.search.windows.net/indexes('hotels')?api-version=2020-06-30 + url: https://searchc1c41bc0.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_get_index.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_get_index.yaml index 32a9c5880a88..93ccb255d039 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_get_index.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_get_index.yaml @@ -5,50 +5,50 @@ interactions: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchc3d147b.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://searchc3d147b.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns6n92a7+w8mY/lrfFUsZ9VVM17m7d3fbZG3GV7+cfow - f5c3d3+3fNkW7fVHIwOVGlwQyN/3o513B08f7j55sn+w/+zTZ09Pnvy+H1GrZbbI6etZffGL8vPm - gj6Z5efZumxfT6u6WF68rKvzoqQmy3VZjj46L/Jy1nz06Hu/2Lw5r9q8PJvRi+31Ch+czhbj1y3e - pc8E52wCCOdZ2eQAUbZ5LR+19Zo+qXNqnl/6HzVV3fp/n2dTGoj3wdv82vzKQz9eZuX1D/LaICod - dz/NOn8318tqeb34IlthTN//JaNwWC/w+80DEzQ+dFxKHh6Y/v6zMrJZ3kzrYtUW1ZLG8f5jU9w2 - Dk7b/CyM7qN8OS7X03yJibnVIJ/V1PL/c8M8r28zzGnW5hdVDXF//xHKJxsHKH9745MPPnh48vfw - uEhnNYS/jumkKst8irnccsO7Q99LNz5m7zk+HcMPf4CrrH5LgzhbTsv1LO9ozydVVeYZpFO6EcwU - nfccofz9wx9gs6gwwOOyrK7y/x+Or8ya9lW+rC4z8OVTkkMajjdGfPKmWORfnp83eUvfSYeCoyL2 - /5Gh1jREVife8M6W7b09+khgCzqKw/9HRlVWpDxp6mgQ3rg+z6uLOlvNr19WxfJnadoUzM/6CLPZ - rM4bT49igCfVYlXm797gE8Kq5841bZ3n7XHsVdG79JkgJoPR0Xkk0SFtpIm2+TkgylSc4/cflnyy - cVTytzco+eBnfUxNS8qGHPXLYjnFrP7/anDTar1s///n4awqmrXypJr9/2TC/LHVVbXwdEfHffM0 - EHy4vgryfHf6XoHgzVvSRge3kTjaxqOOfvLB5PlRgOIPk4f1dUYnn7zn4KTFB49N/h4e1CRr8lek - cmkQ3sCeVmsgQS8yeMFI0fj/zMjy2ZfMk574Ymz/P5i0pszzVXMCa0Lj8Mb2zbmy5q0f/th+SMGW - eeuHPsD/n+YD6D/6MEi04gs77CVBzRvw6/l6yQM+vrio8wsJXGje1wv6TpLG0oNpJ2DYtnISM4h3 - KLLJ61VVyt/0VYGO6Aul76wg30RcyUlFfspHj/bGOwSbcJkvERZoZ4vsYlm0lL8wH9gXH/3ij+r8 - PK9z+oMjqZdZTWhQtwR+cU24GNg08qf2rd2dnfHOLyE8kLIGSKEQEagxaok/JqKtLy6IMnlNn9BA - lV6cv5ap+AKeFcVAPAPUydnyvHj3RdZO5/QHWlXrepo/A4EAwrfH9K3L/jICAiXnzujPtnqbL4vO - 38+Y0/QTYsI6+IAIUV8z9N8LrKSDKBZFmdWISIhgmq/XOfjxL4ppXTXVeTs+/sG6zseveVjjJ1/s - 3X/t3iPW3DXgJvLLL/kl/w/UvDTtUhgAAA== + f5c3d3+3fNkW7fVHIwOVGlwQyN/3o513B08f7u6eHj87efbg/unp09/3I2q1zBY5fT2rL35Rft5c + 0Cez/Dxbl+3raVUXy4uXdXVelNRkuS7L0UfnRV7Omo8efe8XmzfnVZuXZzN6sb1e4YPT2WL8usW7 + 9JngnE0A4Twrmxwgyjav5aO2XtMndU7N80v/o6aqW//v82xKA/E+eJtfm1956MfLrLz+QV4bRKXj + 7qdZ5+9lVS+ysvA+aa6X1fJ68UW2wii//0tG4UBf4PebhyqIfehIlWA8VP39hzTWWd5M62LVFtWS + Rvb+o1VsNw5X2/wsjPejfDku19N8ian6msN+VtO7/58b+Hn99QY+zdr8oqqhNt5/zPLJxiHL396I + 5YMPHrD8/T4jJW3Y0Ih0lCdVWeZTzPeWG/Ad+l469nF9zxHrqP7fMORVVr+lYZ0tp+V6lnc09ZOq + KvMMUi4dC66K4HuOWf7+f8OQm0WFIR+XZXWV/7wYcZk17at8WV1m4OanJM80QG/U+ORNsci/PD9v + 8pa+ExQEa0X1/7ODr2nQrKi8AZ8t23t79JH0JggqVv+fHWdZkaKm6aVheSP9PK8u6mw1v35ZFcuf + palVMD8HY85mszpvPJ2NIZ9Ui1WZv3uDTwjPnlPatHWet8exV0XH02eCqgxPx+sRSQe5kUra5v8V + ZJqK0//+A5VPNo5T/vaGKR/8HIyyaUmNUUhyWSynmPn/nw93Wq2X7c8Hr2xV0cyWJ9Xs/7eT6o+2 + rqqFp5U6Tqin2+CJ9pWbF6XQ9woEb96SWjrcjeTSNh699JMPJtiPgrP3HTgP9OuMVz55z+FKiw8e + rfz9PsOcZE3+itQ7Dcsb6tNqDbToRe5QcFTE/j881nz2JXOypwYw2v9fTmxT5vmqOYEto5F5o/3m + XHTz1v8bRvtDCj3NW/8vGPLPm5wK/UcfBolxfGEJsaR+8gZcfr5eMgmOLy7q/EKCNuKN9YK+kyS/ + 9GDaCRi29ZxiDmI9iuryelWV8jd9VaAj+kIpPivIexKHeFKRJ/XRo73xDsEmXOZLBEDa2SK7WBYt + 5YDMB/bFR7/4ozo/z+uc/uAo8mVWExrULYFfXBMuBjaN/Kl9a3dnZ7zzSwgPLDEApFCICNQY9cYf + E9HWFxdEmbymT2igSi9eb5DJ+QK+H0V7PCfUydnyvHj3RdZO5/QHWlXrepo/A4EAwvcG6FuXm2cE + BErOndGfbmL1g7Z6my+7fz9jZtRPiE/r4AOiTH3N3f1e4DYdVbEoyqxG6EUU1AUXnZQf/6KY1lVT + nbfj4x+s63z8msc5fvLF3v3X7j3i3l0DbiK//JJf8v8Ag3yZcRMaAAA= headers: cache-control: no-cache content-encoding: gzip - content-length: '1165' + content-length: '1181' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:27:22 GMT - elapsed-time: '23' - etag: W/"0x8D91BB484F6FDCB" + date: Sat, 08 May 2021 06:32:05 GMT + elapsed-time: '25' + etag: W/"0x8D911EAFCF75EED" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: a29075d6-b990-11eb-a5cf-a0481ca055a9 + request-id: 1a7509aa-afc7-11eb-b1b2-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchc3d147b.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + url: https://searchc3d147b.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_get_index_statistics.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_get_index_statistics.yaml index 6ea5c6404a19..3eed1105c9e3 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_get_index_statistics.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_get_index_statistics.yaml @@ -5,33 +5,33 @@ interactions: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search9691925.search.windows.net/indexes('drgqefsg')/search.stats?api-version=2020-06-30 + uri: https://search9691925.search.windows.net/indexes('drgqefsg')/search.stats?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4ffvpw9+He/bH8Nb4qlrPqqhkv8/bu77bI2wwv//gX - xbSumuq8HR//YF3n49fS+Cf3dvZ2fv+dT3//ezvjs+Usf/e6zdqiaYtp89Hoo1k1XS/yZXtSrZfU - 787oo6at6uwif138IKe/f8n/A1bsFAScAAAA + xbSumuq8HR//YF3n49fS+Cf3dvZ2fv+dT3//ezu//8s6vyzyq/HZcpa/e91mbdG0xbT5aPTRrJqu + F/myPanWS+p/Z/RR01Z1dpG/Ln6Q09+/5P8B+noHx6QAAAA= headers: cache-control: no-cache content-encoding: gzip - content-length: '255' + content-length: '263' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:27:39 GMT - elapsed-time: '41' + date: Sat, 08 May 2021 06:32:22 GMT + elapsed-time: '24' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: ace9300a-b990-11eb-898f-a0481ca055a9 + request-id: 24c06dae-afc7-11eb-80b5-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search9691925.search.windows.net/indexes('drgqefsg')/search.stats?api-version=2020-06-30 + url: https://search9691925.search.windows.net/indexes('drgqefsg')/search.stats?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_get_service_statistics.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_get_service_statistics.yaml index 7227a6ab9589..36d91a0aeebe 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_get_service_statistics.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_get_service_statistics.yaml @@ -5,36 +5,36 @@ interactions: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search3d4a19fe.search.windows.net/servicestats?api-version=2020-06-30 + uri: https://search3d4a19fe.search.windows.net/servicestats?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns7vzfaz3Yfn+Vj+HF8Vy1l11YyXeXv3d1vkbYa3f/yL - YlpXTXXejo9/sK7z8Wtp/JN7O3s7v//Op7//vR36qL4spvnrNmuLpi2mzUejj6bVmnqtm48e/eKP - ZtV0vciX7Qk+wwfrJrvIP3q0M/roF62rNvvo0XJdlr9k9BEhkL/Lm+F292yj+oZWwP11ta6nN4Fr - 2qqmj18XP6CvIm3u7+3vHRzs7KDp9bJaXi++yFY8rF5TBve2KMsm3zDWe7+EmpXFomgZyiJ796zI - y1nzMq/PMLSPHu3u7FBz88WLnGi6vHiar9q534ZbnFSLVZnTj7LMp21RLfkVD9Z+0O7LyU9Ts+Zs - 6V5A26c6QYQcdf1Lfsn/A6XvaWk7AgAA + YlpXTXXejo9/sK7z8Wtp/JN7O3s7v//Op7//vZ3f/2WdXxb5FX1VXxbT/HWbtUXTFtPmo9FH02pN + vdfNR49+8Uezarpe5Mv2BJ/hg3WTXeQfPdoZffSL1lWbffRouS7LXzL6iBDJ3+XNcLt7tlF9QyuM + 4XW1rqc3gWvaqqaPXxc/oK8ibe7v7e8dHOzsoOn1slpeL77IVjysXlMG97YoyybfMNZ7v4SalcWi + aBnKInv3rMjLWfMyr88wtI8e7e7sUHPzxYucaLq8eJqv2rnfhlucVItVmdOPssynbVEt+RUP1n7Q + 7svJT1Oz5mzpXkDbpzpBhBx1/Ut+yf8DBnOc9EMCAAA= headers: cache-control: no-cache content-encoding: gzip - content-length: '423' + content-length: '431' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:27:50 GMT - elapsed-time: '57' + date: Sat, 08 May 2021 06:32:32 GMT + elapsed-time: '64' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: b386f2dd-b990-11eb-a293-a0481ca055a9 + request-id: 2ad56dec-afc7-11eb-be72-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search3d4a19fe.search.windows.net/servicestats?api-version=2020-06-30 + url: https://search3d4a19fe.search.windows.net/servicestats?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_list_indexes.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_list_indexes.yaml index 0b990c4f2b6f..e91103c2b56a 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_list_indexes.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_list_indexes.yaml @@ -5,49 +5,49 @@ interactions: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search4ce615cf.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search4ce615cf.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns73p/mnu/en52P5c3xVLGfVVTNe5u3d322Rtxne/nH6 - MH+XNx+NPrrMynX+0aPvWcDU5IKg/r4f7bw7ePpw98mT/YfPTvYfPLx//Pt+RO2X2YKafzSrL35R + MH+XNx+NPrrMynX+0aPvWcDU5IKg/r4f7bw7ePpwd/f0ye6Dg/0HT598+vt+RO2X2YKafzSrL35R ft5c0Cez/Dxbl+3raVUXy4uXdXVelNRkuS7L0UfnRV7OGoavb86rNi/PZvRie73CB6ezxfh1i3fp M8E6mwDCeVY2OUCUbV7LR229pk/qnJrnl/5HTVW3/t/n2ZQG4n3wNr82v/Lgj5dZef2DvDaISsfd - T7PO3831slpeL77IVhjT93/JKBzWC/x+88AEjQ8dl5KHB6a//6yMbJY307pYtUW1pHG8/9gUt42D - 0zY/C6P7KF+Oy/U0X2JibjXIZzW1/P/cMM/r2wxzmrX5RVVfU6P3H6F8snGA8rc3Pvngg4cnfw+P - i3QWlJmO6aQqy3yKudxyw7tD30s3PmbvOT4dww9/gKusfkuDOFtOy/Us72jPJ1VV5hmkU7oRzBSd - 9xyh/P3DH2CzqDDA47KsrvL/H46vzJr2Vb6sLjPw5VOSQxqON0Z88qZY5F+enzd5S99Jh4KjIvb/ - kaHWNERWJ97wzpbtvT36SGALOorD/0dGVVakPGnqaBDeuD7Pq4s6W82vX1bF8mdp2hTMz/oIs9ms - zhtPj2KAJ9ViVebv3uATwqrnzjVtneftcexV0bv0mSAmg9HReSTRIW2kibb5OSDKtGj/f2ctm5aU - DTnql8Vyiln9/9XgptV62f7/z8NZVTRr5Uk1+//JhPljq6tq4emOjvvmaSD4cH0V5Pnu9L0CwZu3 - pI0ObiNxtI1HHf3kg8nzowDFHyYP6+uMTj55z8FJiw8em/w9PKhJ1uSvSOXSILyBPa3WQIJeZPCC - kaLx/5mR5bMvmSc98cXY/n8waU2Z56vmBNaExuGN7ZtzZc1bP/yx/ZCCLfPWD32A/z/NB9B/9GGQ - aMUXdthLgpo34Nfz9ZIHfHxxUecXErjQvK8X9J3kjaUH007AsG3lJGYQ71Bkk9erqpS/6asCHdEX - St9ZQb6JuJKTivyUjx7tjXcINuEyXyIs0M4W2cWyaCl/YT6wLz76xR/V+Xle5/QHR1Ivs5rQoG4J - /OKacDGwaeRP7Vu7OzvjnV9CeCBlDZBCISJQY9QSf0xEW19cEGXymj6hgSq9OH8tU/EFPCuKgXgG - qJOz5Xnx7ousnc7pD7Sq1vU0fwYCAYRvj+lbl/1lBARKzp3Rn231Nl8Wnb+fMafpJ8SEdfABEaK+ - Zui/F1hJB1EsijKrEZEQwTRfr3Pw418U07pqqvN2fPyDdZ2PX/Owxk++2Lv/2r1HrLlrwE3kl1/y - S77/S/4f3NjYKlcYAAA= + T7PO38uqXmRl4X3SXC+r5fXii2yFUX7/l4zCgb7A7zcPVRD70JEqwXio+vsPaayzvJnWxaotqiWN + 7P1Hq9huHK62+VkY70f5clyup/kSU/U1h/2spnf/Pzfw8/rrDXyatflFVV/Ta+8/Zvlk45Dlb2/E + 8sEHD1j+fp+RkjaEmtRRnlRlmU8x31tuwHfoe+nYx/U9R6yj+n/DkFdZ/ZaGdbaclutZ3tHUT6qq + zDNIuXQsuCqC7zlm+fv/DUNuFhWGfFyW1VX+82LEZda0r/JldZmBm5+SPNMAvVHjkzfFIv/y/LzJ + W/pOUBCsFdX/zw6+pkGzovIGfLZs7+3RR9KbIKhY/X92nGVFipqml4bljfTzvLqos9X8+mVVLH+W + plbB/ByMOZvN6rzxdDaGfFItVmX+7g0+ITx7TmnT1nneHsdeFR1PnwmqMjwdr0ckHeRGKmmb/1eQ + aVq0Pw+sd9OSGqOQ5LJYTjHz/z8f7rRaL9ufD17ZqqKZLU+q2f9vJ9UfbV1VC08rdZxQT7fBE+0r + Ny9Koe8VCN68JbV0uBvJpW08euknH0ywHwVn7ztwHujXGa988p7DlRYfPFr5+32GOcma/BWpdxqW + N9Sn1Rpo0YvcoeCoiP1/eKz57EvmZE8NYLT/v5zYpszzVXMCW0Yj80b7zbno5q3/N4z2hxR6mrf+ + XzDknzc5FfqPPgwS4/jCEmJJ/eQNuPx8vWQSHF9c1PmFBG3EG+sFfSd5funBtBMwbOs5xRzEehTV + 5fWqKuVv+qpAR/SFUnxWkPckDvGkIk/qo0d74x2CTbjMlwiAtLNFdrEsWsoBmQ/si49+8Ud1fp7X + Of3BUeTLrCY0qFsCv7gmXAxsGvlT+9buzs5455cQHlhiAEihEBGoMeqNPyairS8uiDJ5TZ/QQJVe + vN4gk/MFfD+K9nhOqJOz5Xnx7ousnc7pD7Sq1vU0fwYCAYTvDdC3LjfPCAiUnDujP93E6gdt9TZf + dv9+xsyonxCf1sEHRJn6mrv7vcBtOqpiUZRZjdCLKKgLLjopP/5FMa2rpjpvx8c/WNf5+DWPc/zk + i737r917xL27BtxEfvklv+T7v+T/AddYmIIYGgAA headers: cache-control: no-cache content-encoding: gzip - content-length: '1154' + content-length: '1170' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:28:07 GMT - elapsed-time: '80' + date: Sat, 08 May 2021 06:32:49 GMT + elapsed-time: '46' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: bd74f8f4-b990-11eb-8f29-a0481ca055a9 + request-id: 34f92682-afc7-11eb-a571-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search4ce615cf.search.windows.net/indexes?api-version=2020-06-30 + url: https://search4ce615cf.search.windows.net/indexes?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_list_indexes_empty.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_list_indexes_empty.yaml index 4361a00f01e6..3962ca8c1957 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_list_indexes_empty.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_live_async.test_list_indexes_empty.yaml @@ -5,9 +5,9 @@ interactions: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchd858185d.search.windows.net/indexes?api-version=2020-06-30 + uri: https://searchd858185d.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -20,17 +20,17 @@ interactions: content-encoding: gzip content-length: '200' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:28:16 GMT - elapsed-time: '27' + date: Sat, 08 May 2021 06:33:01 GMT + elapsed-time: '30' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: c2f732f8-b990-11eb-aab2-a0481ca055a9 + request-id: 3beae05b-afc7-11eb-9f65-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchd858185d.search.windows.net/indexes?api-version=2020-06-30 + url: https://searchd858185d.search.windows.net/indexes?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_create_or_update_skillset.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_create_or_update_skillset.yaml index 4085ba537830..0dbf5c221e60 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_create_or_update_skillset.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_create_or_update_skillset.yaml @@ -14,30 +14,30 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search971e1eee.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://search971e1eee.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search971e1eee.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB4B1AB72BE\"","name":"test-ss","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search971e1eee.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911EB2AE4353F\"","name":"test-ss","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '609' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:28:33 GMT - elapsed-time: '1447' - etag: W/"0x8D91BB4B1AB72BE" + date: Sat, 08 May 2021 06:33:18 GMT + elapsed-time: '73' + etag: W/"0x8D911EB2AE4353F" expires: '-1' - location: https://search971e1eee.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + location: https://search971e1eee.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: cc41315d-b990-11eb-a7d1-a0481ca055a9 + request-id: 460c491b-afc7-11eb-8c42-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search971e1eee.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + url: https://search971e1eee.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview - request: body: '{"name": "test-ss", "description": "desc2", "skills": [{"@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", "inputs": [{"name": "text", @@ -53,119 +53,119 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search971e1eee.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://search971e1eee.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4fPtjNd/M8H8uf46tiOauumvEyb+/+bou8zfD2jzdv - i7Js8ra5+7vly7Zorz8aGcDU5IKg/r4f7bw7ePpw98mT/Se7T04OTp7u/L4fUatltsjp6zZv2u2m - oQ9meTOti1VbVEv6HH/t0afSwUePvmcRbq9XePHHvyimddVU5+34NbcZv6FhjE8Zi1f5tLpYFoDF - XxIg6W+5LstOV/KRJYP+mbX5RVUXObr+Pt44z9Zl+zxbXqyzi/ykmllgi2JZLNaLl3U+LRoPYrGc - lutZ/obQLfOmYcQYnvl6tW7pLxqYoEakoP5pxNW6nuLvu7Nqul4QWe8yckv35Qn+psZdUN//JYRq - tW71Twu5qi+yZfGDDAMGqdusvsjbF7EvfwnDUOpd5q/z+rKYOqzfLqurMp9d5K/bqqa35dN8Oa2v - mZy/V34tH/6S/wfZLpm6YQIAAA== + i7Js8ra5+7vly7Zorz8aGcDU5IKg/r4f7bw7ePpwd/f0yd6TnQfPdu4//X0/olbLbJHT123etNtN + Qx/M8mZaF6u2qJb0Of7ao0+lg48efc8i3F6v8OKPf1FM66qpztvxa24zfkPDGJ8yFq/yaXWxLACL + vyRA0t9yXZadruQjSwb9M2vzi6oucnT9fbxxnq3L9nm2vFhnF/lJNbPAFsWyWKwXL+t8WjQexGI5 + Ldez/A2hW+ZNw4gxPPP1at3SXzQwQY1IQf3TiKt1PcXfd2fVdL0gst5l5JbuyxP8TY27oL7/SwjV + at3qnxZyVV9ky+IHGQYMUrdZfZG3L2Jf/hKGodS7zF/n9WUxdVi/XVZXZT67yF+3VU1vy6f5clpf + Mzl/r/xaPvwl/w8bKdqVYQIAAA== headers: cache-control: no-cache content-encoding: gzip content-length: '475' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:28:33 GMT - elapsed-time: '52' - etag: W/"0x8D91BB4B1BC8CD0" + date: Sat, 08 May 2021 06:33:18 GMT + elapsed-time: '48' + etag: W/"0x8D911EB2B07F05D" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: cd3d68a5-b990-11eb-a6eb-a0481ca055a9 + request-id: 4649a429-afc7-11eb-8a0a-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search971e1eee.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + url: https://search971e1eee.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search971e1eee.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://search971e1eee.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4fPtjNd/M8H8uf46tiOauumvEyb+/+bou8zfD2jzdv - i7Js8rb5aPTRZVau848efc+CpkYXBPf3/Wjn3cHTh7tPnuw/2X1ycnDydOf3/YjaL7MFNf+ozZt2 - uwGAWd5M62LVFtWSPsdfe/SpdOHDba9XePHHvyimddVU5+34NbcZv6GBjE+XbdFev8qn1cWyACz+ - kgBpfz++S78DuO1quS7L0UeOEHdn1XS9yJctNZxmbX5R1UUODD56mdcNvTH66CfWGXdDv35ZX2TL - 4gcZwxp99NWr5/Tv6SIr0OfzigDIF08J0puCUPg+uj/P1mX7PFterLOL/KSaAbMczRbFslisFy/r - fFo0eFPRK5bTcj3L39DYy7xpeJSMlfl6taZZAJV0nDwYIl+1rqf4247qLo+URydfnuBvatwF9f1f - QqhW61b/tJArb8SYtzarL/L2RezLX8IwdCou89d5fVlMHdZvl9VVmc8u8tdtVdPb8mm+nNbXPDe/ - V34tH/6S7/+S/we80pO6sgIAAA== + i7Js8rb5aPTRZVau848efc+CpkYXBPf3/Wjn3cHTh7u7p0/2nuw8eLZz/+nv+xG1X2YLav5Rmzft + dgMAs7yZ1sWqLaolfY6/9uhT6cKH216v8OKPf1FM66qpztvxa24zfkMDGZ8u26K9fpVPq4tlAVj8 + JQHS/n58l34HcNvVcl2Wo48cIe7Oqul6kS9bajjN2vyiqoscGHz0Mq8bemP00U+sM+6Gfv2yvsiW + xQ8yhjX66KtXz+nf00VWoM/nFQGQL54SpDcFofB9dH+ercv2eba8WGcX+Uk1A2Y5mi2KZbFYL17W + +bRo8KaiVyyn5XqWv6Gxl3nT8CgZK/P1ak2zACrpOHkwRL5qXU/xtx3VXR4pj06+PMHf1LgL6vu/ + hFCt1q3+aSFX3ogxb21WX+Tti9iXv4Rh6FRc5q/z+rKYOqzfLqurMp9d5K/bqqa35dN8Oa2veW5+ + r/xaPvwl3/8l/w9Y7G9AsgIAAA== headers: cache-control: no-cache content-encoding: gzip content-length: '532' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:28:33 GMT - elapsed-time: '36' + date: Sat, 08 May 2021 06:33:18 GMT + elapsed-time: '17' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: cd4de5e6-b990-11eb-9a03-a0481ca055a9 + request-id: 465c0c6d-afc7-11eb-aa4d-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search971e1eee.search.windows.net/skillsets?api-version=2020-06-30 + url: https://search971e1eee.search.windows.net/skillsets?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search971e1eee.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://search971e1eee.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4fPtjNd/M8H8uf46tiOauumvEyb+/+bou8zfD2jzdv - i7Js8ra5+7vly7Zorz8aGcDU5IKg/r4f7bw7ePpw98mT/Se7T04OTp7u/L4fUatltsjp6zZv2u2m - oQ9meTOti1VbVEv6HH/t0afSwUePvmcRbq9XePHHvyimddVU5+34NbcZv6FhjE8Zi1f5tLpYFoDF - XxIg7e/Hd+l3ALddLddlOfrIkeHurJquFzQaajjN2vyiqoscGHz0Mq8bemP00U+sM+6Gfv2yvsiW - xQ8yhjX66KtXz+nf00VWoM/nFQGQL54SpDcFofB9dH+ercv2eba8WGcX+Uk1A2Y5mi2KZbFYL17W - +bRo8KaiVyyn5XqWv6Gxl3nT8CgZK/P1at3SX0QlHScPhshXresp/rajussj5dHJlyf4mxp3QX3/ - lxCq1brVPy3kyhsx5q3N6ou8fRH78pcwDJ2Ky/x1Xl8WU4f122V1Veazi/x1W9X0tnyaL6f1Nc/N - 75Vfy4e/5P8BZeBcZ64CAAA= + i7Js8ra5+7vly7Zorz8aGcDU5IKg/r4f7bw7ePpwd/f0yd6TnQfPdu4//X0/olbLbJHT123etNtN + Qx/M8mZaF6u2qJb0Of7ao0+lg48efc8i3F6v8OKPf1FM66qpztvxa24zfkPDGJ8yFq/yaXWxLACL + vyRA2t+P79LvAG67Wq7LcvSRI8PdWTVdL2g01HCatflFVRc5MPjoZV439Mboo59YZ9wN/fplfZEt + ix9kDGv00VevntO/p4usQJ/PKwIgXzwlSG8KQuH76P48W5ft82x5sc4u8pNqBsxyNFsUy2KxXrys + 82nR4E1Fr1hOy/Usf0NjL/Om4VEyVubr1bqlv4hKOk4eDJGvWtdT/G1HdZdHyqOTL0/wNzXugvr+ + LyFUq3Wrf1rIlTdizFub1Rd5+yL25S9hGDoVl/nrvL4spg7rt8vqqsxnF/nrtqrpbfk0X07ra56b + 3yu/lg9/yf8Dd7aq3a4CAAA= headers: cache-control: no-cache content-encoding: gzip content-length: '530' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:28:33 GMT - elapsed-time: '16' - etag: W/"0x8D91BB4B1BC8CD0" + date: Sat, 08 May 2021 06:33:18 GMT + elapsed-time: '11' + etag: W/"0x8D911EB2B07F05D" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: cd5b6aaa-b990-11eb-8d5f-a0481ca055a9 + request-id: 46698edc-afc7-11eb-a946-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search971e1eee.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + url: https://search971e1eee.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_create_or_update_skillset_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_create_or_update_skillset_if_unchanged.yaml index f2d217987f32..53407ae38282 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_create_or_update_skillset_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_create_or_update_skillset_if_unchanged.yaml @@ -14,30 +14,30 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search4ddb2428.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://search4ddb2428.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search4ddb2428.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB4BC3408BF\"","name":"test-ss","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search4ddb2428.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911EB34ABD0F1\"","name":"test-ss","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '609' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:28:51 GMT - elapsed-time: '52' - etag: W/"0x8D91BB4BC3408BF" + date: Sat, 08 May 2021 06:33:33 GMT + elapsed-time: '71' + etag: W/"0x8D911EB34ABD0F1" expires: '-1' - location: https://search4ddb2428.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + location: https://search4ddb2428.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: d7a0f249-b990-11eb-9f6f-a0481ca055a9 + request-id: 4fd50046-afc7-11eb-83ec-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search4ddb2428.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + url: https://search4ddb2428.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview - request: body: '{"name": "test-ss", "description": "desc2", "skills": [{"@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", "inputs": [{"name": "text", @@ -53,78 +53,78 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search4ddb2428.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://search4ddb2428.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns73Z7PJ3v7ewVj+HF8Vy1l11YyXeXv3d1vkbYa3f7x5 - W5Rlk7fN3d8tX7ZFe/3RyACmJhcE9ff9aOfdwdOHu0+e7D852b+39+nx3u/7EbVaZoucvm7zpt1u - GvpgljfTuli1RbWkz/HXHn0qHXz06HsW4fZ6hRd//ItiWldNdd6OX3Ob8RsaxviUsXiVT6uLZQFY - /CUBkv6W67LsdCUfWTLon1mbX1R1kaPr7+ON82xdts+z5cU6u8hPqpkFtiiWxWK9eFnn06LxIBbL - abme5W8I3TJvGkaM4ZmvV+uW/qKBCWpECuqfRlyt6yn+vjurpusFkfUuI7d0X57gb2rcBfX9X0Ko - VutW/7SQq/oiWxY/yDBgkLrN6ou8fRH78pcwDKXeZf46ry+LqcP67bK6KvPZRf66rWp6Wz7Nl9P6 - msn5e+XX8uEv+X8AUyfN12ECAAA= + W5Rlk7fN3d8tX7ZFe/3RyACmJhcE9ff9aOfdwdOHu7unT+7tPzl9sPts//f9iFots0VOX7d50243 + DX0wy5tpXazaolrS5/hrjz6VDj569D2LcHu9wos//kUxraumOm/Hr7nN+A0NY3zKWLzKp9XFsgAs + /pIASX/LdVl2upKPLBn0z6zNL6q6yNH19/HGebYu2+fZ8mKdXeQn1cwCWxTLYrFevKzzadF4EIvl + tFzP8jeEbpk3DSPG8MzXq3VLf9HABDUiBfVPI67W9RR/351V0/WCyHqXkVu6L0/wNzXugvr+LyFU + q3Wrf1rIVX2RLYsfZBgwSN1m9UXevoh9+UsYhlLvMn+d15fF1GH9dlldlfnsIn/dVjW9LZ/my2l9 + zeT8vfJr+fCX/D8amVAsYQIAAA== headers: cache-control: no-cache content-encoding: gzip - content-length: '476' + content-length: '475' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:28:51 GMT - elapsed-time: '41' - etag: W/"0x8D91BB4BC4326A2" + date: Sat, 08 May 2021 06:33:34 GMT + elapsed-time: '42' + etag: W/"0x8D911EB34BE71F4" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: d7c5ad17-b990-11eb-a798-a0481ca055a9 + request-id: 50029345-afc7-11eb-b0e4-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search4ddb2428.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + url: https://search4ddb2428.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search4ddb2428.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://search4ddb2428.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns73Z7PJ3v7ewVj+HF8Vy1l11YyXeXv3d1vkbYa3f7x5 - W5Rlk7fNR6OPLrNynX/06HsWNDW6ILi/70c77w6ePtx98mT/ycn+vb1Pj/d+34+o/TJbUPOP2rxp - txsAmOXNtC5WbVEt6XP8tUefShc+3PZ6hRd//ItiWldNdd6OX3Ob8RsayPh02Rbt9at8Wl0sC8Di - LwmQ9vfju/Q7gNuuluuyHH3kCHF3Vk3Xi3zZUsNp1uYXVV3kwOCjl3nd0Bujj35inXE39OuX9UW2 - LH6QMazRR1+9ek7/ni6yAn0+rwiAfPGUIL0pCIXvo/vzbF22z7PlxTq7yE+qGTDL0WxRLIvFevGy - zqdFgzcVvWI5Ldez/A2NvcybhkfJWJmvV2uaBVBJx8mDIfJV63qKv+2o7vJIeXTy5Qn+psZdUN// - JYRqtW71Twu58kaMeWuz+iJvX8S+/CUMQ6fiMn+d15fF1GH9dlldlfnsIn/dVjW9LZ/my2l9zXPz - e+XX8uEv+f4v+X8A0ioXAbICAAA= + W5Rlk7fNR6OPLrNynX/06HsWNDW6ILi/70c77w6ePtzdPX1yb//J6YPdZ/u/70fUfpktqPlHbd60 + 2w0AzPJmWhertqiW9Dn+2qNPpQsfbnu9wos//kUxraumOm/Hr7nN+A0NZHy6bIv2+lU+rS6WBWDx + lwRI+/vxXfodwG1Xy3VZjj5yhLg7q6brRb5sqeE0a/OLqi5yYPDRy7xu6I3RRz+xzrgb+vXL+iJb + Fj/IGNboo69ePad/TxdZgT6fVwRAvnhKkN4UhML30f15ti7b59nyYp1d5CfVDJjlaLYolsVivXhZ + 59OiwZuKXrGclutZ/obGXuZNw6NkrMzXqzXNAqik4+TBEPmqdT3F33ZUd3mkPDr58gR/U+MuqO// + EkK1Wrf6p4VceSPGvLVZfZG3L2Jf/hKGoVNxmb/O68ti6rB+u6yuynx2kb9uq5relk/z5bS+5rn5 + vfJr+fCXfP+X/D/MqXtZsgIAAA== headers: cache-control: no-cache content-encoding: gzip - content-length: '533' + content-length: '532' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:28:51 GMT + date: Sat, 08 May 2021 06:33:34 GMT elapsed-time: '18' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: d7d48be6-b990-11eb-9821-a0481ca055a9 + request-id: 5012abd4-afc7-11eb-bf64-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search4ddb2428.search.windows.net/skillsets?api-version=2020-06-30 + url: https://search4ddb2428.search.windows.net/skillsets?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_create_or_update_skillset_inplace.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_create_or_update_skillset_inplace.yaml index 3585e49bb457..ce7648b0b046 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_create_or_update_skillset_inplace.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_create_or_update_skillset_inplace.yaml @@ -14,30 +14,30 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search9d362229.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://search9d362229.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search9d362229.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB4C6C52BCB\"","name":"test-ss","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search9d362229.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911EB3DFD3C8E\"","name":"test-ss","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '609' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:29:09 GMT - elapsed-time: '54' - etag: W/"0x8D91BB4C6C52BCB" + date: Sat, 08 May 2021 06:33:50 GMT + elapsed-time: '67' + etag: W/"0x8D911EB3DFD3C8E" expires: '-1' - location: https://search9d362229.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + location: https://search9d362229.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: e2273876-b990-11eb-bb26-a0481ca055a9 + request-id: 5921ee2a-afc7-11eb-8e38-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search9d362229.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + url: https://search9d362229.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview - request: body: '{"name": "test-ss", "description": "desc2", "skills": [{"@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", "inputs": [{"name": "text", @@ -53,119 +53,119 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search9d362229.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://search9d362229.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4fzu59ure393Asf46viuWsumrGy7y9+7st8jbD2z/e - vC3Kssnb5u7vli/bor3+aGQAU5MLgvr7frTz7uDpw90nT/ZPPn26TxAPft+PqNUyW+T0dZs37XbT - 0AezvJnWxaotqiV9jr/26FPp4KNH37MIt9crvPjjXxTTumqq83b8mtuM39AwxqeMxat8Wl0sC8Di - LwmQ9Ldcl2WnK/nIkkH/zNr8oqqLHF1/H2+cZ+uyfZ4tL9bZRX5SzSywRbEsFuvFyzqfFo0HsVhO - y/Usf0PolnnTMGIMz3y9Wrf0Fw1MUCNSUP804mpdT/H33Vk1XS+IrHcZuaX78gR/U+MuqO//EkK1 - Wrf6p4Vc1RfZsvhBhgGD1G1WX+Tti9iXv4RhKPUu89d5fVlMHdZvl9VVmc8u8tdtVdPb8mm+nNbX - TM7fK7+WD3/J/wP/BMJyYQIAAA== + vC3Kssnb5u7vli/bor3+aGQAU5MLgvr7frTz7uDpw93d0yf3TnfvPXu6s/P7fkStltkip6/bvGm3 + m4Y+mOXNtC5WbVEt6XP8tUefSgcfPfqeRbi9XuHFH/+imNZVU52349fcZvyGhjE+ZSxe5dPqYlkA + Fn9JgKS/5bosO13JR5YM+mfW5hdVXeTo+vt44zxbl+3zbHmxzi7yk2pmgS2KZbFYL17W+bRoPIjF + clquZ/kbQrfMm4YRY3jm69W6pb9oYIIakYL6pxFX63qKv+/Oqul6QWS9y8gt3Zcn+Jsad0F9/5cQ + qtW61T8t5Kq+yJbFDzIMGKRus/oib1/EvvwlDEOpd5m/zuvLYuqwfrusrsp8dpG/bqua3pZP8+W0 + vmZy/l75tXz4S/4f9Q9tXmECAAA= headers: cache-control: no-cache content-encoding: gzip - content-length: '475' + content-length: '476' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:29:09 GMT - elapsed-time: '44' - etag: W/"0x8D91BB4C6D42298" + date: Sat, 08 May 2021 06:33:50 GMT + elapsed-time: '48' + etag: W/"0x8D911EB3E13FD00" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: e256edd0-b990-11eb-bcee-a0481ca055a9 + request-id: 5954c296-afc7-11eb-8cb9-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search9d362229.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + url: https://search9d362229.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search9d362229.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://search9d362229.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4fzu59ure393Asf46viuWsumrGy7y9+7st8jbD2z/e - vC3Kssnb5qPRR5dZuc4/evQ9C5oaXRDc3/ejnXcHTx/uPnmyf/Lp032CefD7fkTtl9mCmn/U5k27 - 3QDALG+mdbFqi2pJn+OvPfpUuvDhttcrvPjjXxTTumqq83b8mtuM39BAxqfLtmivX+XT6mJZABZ/ - SYC0vx/fpd8B3Ha1XJfl6CNHiLuzarpe5MuWGk6zNr+o6iIHBh+9zOuG3hh99BPrjLuhX7+sL7Jl - 8YOMYY0++urVc/r3dJEV6PN5RQDki6cE6U1BKHwf3Z9n67J9ni0v1tlFflLNgFmOZotiWSzWi5d1 - Pi0avKnoFctpuZ7lb2jsZd40PErGyny9WtMsgEo6Th4Mka9a11P8bUd1l0fKo5MvT/A3Ne6C+v4v - IVSrdat/WsiVN2LMW5vVF3n7IvblL2EYOhWX+eu8viymDuu3y+qqzGcX+eu2qult+TRfTutrnpvf - K7+WD3/J93/J/wOJYgRpsgIAAA== + vC3Kssnb5qPRR5dZuc4/evQ9C5oaXRDc3/ejnXcHTx/u7p4+uXe6e+/Z052d3/cjar/MFtT8ozZv + 2u0GAGZ5M62LVVtUS/ocf+3Rp9KFD7e9XuHFH/+imNZVU52349fcZvyGBjI+XbZFe/0qn1YXywKw + +EsCpP39+C79DuC2q+W6LEcfOULcnVXT9SJfttRwmrX5RVUXOTD46GVeN/TG6KOfWGfcDf36ZX2R + LYsfZAxr9NFXr57Tv6eLrECfzysCIF88JUhvCkLh++j+PFuX7fNsebHOLvKTagbMcjRbFMtisV68 + rPNp0eBNRa9YTsv1LH9DYy/zpuFRMlbm69WaZgFU0nHyYIh81bqe4m87qrs8Uh6dfHmCv6lxF9T3 + fwmhWq1b/dNCrrwRY97arL7I2xexL38Jw9CpuMxf5/VlMXVYv11WV2U+u8hft1VNb8un+XJaX/Pc + /F75tXz4S77/S/4fLD1M+bICAAA= headers: cache-control: no-cache content-encoding: gzip - content-length: '532' + content-length: '533' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:29:09 GMT - elapsed-time: '17' + date: Sat, 08 May 2021 06:33:50 GMT + elapsed-time: '15' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: e26615df-b990-11eb-a84d-a0481ca055a9 + request-id: 5972ec86-afc7-11eb-bf40-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search9d362229.search.windows.net/skillsets?api-version=2020-06-30 + url: https://search9d362229.search.windows.net/skillsets?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search9d362229.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://search9d362229.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4fzu59ure393Asf46viuWsumrGy7y9+7st8jbD2z/e - vC3Kssnb5u7vli/bor3+aGQAU5MLgvr7frTz7uDpw90nT/ZPPn26TxAPft+PqNUyW+T0dZs37XbT - 0AezvJnWxaotqiV9jr/26FPp4KNH37MIt9crvPjjXxTTumqq83b8mtuM39AwxqeMxat8Wl0sC8Di - LwmQ9vfju/Q7gNuuluuyHH3kyHB3Vk3XCxoNNZxmbX5R1UUODD56mdcNvTH66CfWGXdDv35ZX2TL - 4gcZwxp99NWr5/Tv6SIr0OfzigDIF08J0puCUPg+uj/P1mX7PFterLOL/KSaAbMczRbFslisFy/r - fFo0eFPRK5bTcj3L39DYy7xpeJSMlfl6tW7pL6KSjpMHQ+Sr1vUUf9tR3eWR8ujkyxP8TY27oL7/ - SwjVat3qnxZy5Y0Y89Zm9UXevoh9+UsYhk7FZf46ry+LqcP67bK6KvPZRf66rWp6Wz7Nl9P6mufm - 98qv5cNf8v8AsIqOaK4CAAA= + vC3Kssnb5u7vli/bor3+aGQAU5MLgvr7frTz7uDpw93d0yf3TnfvPXu6s/P7fkStltkip6/bvGm3 + m4Y+mOXNtC5WbVEt6XP8tUefSgcfPfqeRbi9XuHFH/+imNZVU52349fcZvyGhjE+ZSxe5dPqYlkA + Fn9JgLS/H9+l3wHcdrVcl+XoI0eGu7Nqul7QaKjhNGvzi6oucmDw0cu8buiN0Uc/sc64G/r1y/oi + WxY/yBjW6KOvXj2nf08XWYE+n1cEQL54SpDeFITC99H9ebYu2+fZ8mKdXeQn1QyY5Wi2KJbFYr14 + WefTosGbil6xnJbrWf6Gxl7mTcOjZKzM16t1S38RlXScPBgiX7Wup/jbjuouj5RHJ1+e4G9q3AX1 + /V9CqFbrVv+0kCtvxJi3Nqsv8vZF7MtfwjB0Ki7z13l9WUwd1m+X1VWZzy7y121V09vyab6c1tc8 + N79Xfi0f/pL/ByTY7UiuAgAA headers: cache-control: no-cache content-encoding: gzip - content-length: '530' + content-length: '531' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:29:09 GMT - elapsed-time: '23' - etag: W/"0x8D91BB4C6D42298" + date: Sat, 08 May 2021 06:33:50 GMT + elapsed-time: '10' + etag: W/"0x8D911EB3E13FD00" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: e270b5ae-b990-11eb-9e65-a0481ca055a9 + request-id: 597f7d93-afc7-11eb-9e23-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search9d362229.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + url: https://search9d362229.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_create_skillset.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_create_skillset.yaml index 8b1c3f18ff78..bfa68c57878f 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_create_skillset.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_create_skillset.yaml @@ -11,68 +11,68 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search75151acc.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://search75151acc.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search75151acc.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB4D19E12DB\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search75151acc.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911EB47A73714\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '608' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:29:27 GMT - elapsed-time: '1167' - etag: W/"0x8D91BB4D19E12DB" + date: Sat, 08 May 2021 06:34:06 GMT + elapsed-time: '76' + etag: W/"0x8D911EB47A73714" expires: '-1' - location: https://search75151acc.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + location: https://search75151acc.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: ec5b1fc9-b990-11eb-893a-a0481ca055a9 + request-id: 62ceb8a3-afc7-11eb-9af8-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search75151acc.search.windows.net/skillsets?api-version=2020-06-30 + url: https://search75151acc.search.windows.net/skillsets?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search75151acc.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://search75151acc.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4f3N+9v5tNp2P5c3xVLGfVVTNe5u3d322Rtxne/vHm - bVGWTd42H40+uszKdf7Ro+9Z0NToguD+vh/tvDt4+nD3yZP9p7sPT3f3nj75fT+i9stsQc0/avOm - 3W4AYJY307pYtUW1pM/xF30oPfhg2+sV3vvxL4ppXTXVeTt+zW3Gb2gc49NlW7TXr/JpdbEsAIq/ - JEDa3Y/v0u+AbXtarsty9JGjw91ZNV0v8mVLDadZm19UdZEDg49e5nVDb4w++ol1xt3Qr1/WF9my - +EHGsEYfffXqOf17usgK9Pm8IgDyxVOC9KYgFL6P7s+zddk+z5YX6+wiP6lmwCxHs0WxLBbrxcs6 - nxYN3lT0iuW0XM/yNzT2Mm8aHiVjZb5erWkSQCUdJw+GyFet6yn+tqO6yyPl0cmXJ/ibGndBff+X - EKrVutU/LeTKGzGmrc3qi7x9EfvylzAMnYrL/HVeXxZTh/XbZXVV5rOL/HVb1fS2fJovp/U1z83v - lV/Lh7/k+7/k/wHETu5XsQIAAA== + bVGWTd42H40+uszKdf7Ro+9Z0NToguD+vh/tvDt4+nB39/TJ/oPjB/ce7O7/vh9R+2W2oOYftXnT + bjcAMMubaV2s2qJa0uf4iz6UHnyw7fUK7/34F8W0rprqvB2/5jbjNzSO8emyLdrrV/m0ulgWAMVf + EiDt7sd36XfAtj0t12U5+sjR4e6smq4X+bKlhtOszS+qusiBwUcv87qhN0Yf/cQ6427o1y/ri2xZ + /CBjWKOPvnr1nP49XWQF+nxeEQD54ilBelMQCt9H9+fZumyfZ8uLdXaRn1QzYJaj2aJYFov14mWd + T4sGbyp6xXJarmf5Gxp7mTcNj5KxMl+v1jQJoJKOkwdD5KvW9RR/21Hd5ZHy6OTLE/xNjbugvv9L + CNVq3eqfFnLljRjT1mb1Rd6+iH35SxiGTsVl/jqvL4upw/rtsroq89lF/rqtanpbPs2X0/qa5+b3 + yq/lw1/y/V/y/wA2L8PJsQIAAA== headers: cache-control: no-cache content-encoding: gzip content-length: '532' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:29:27 GMT - elapsed-time: '34' + date: Sat, 08 May 2021 06:34:06 GMT + elapsed-time: '23' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: ed301198-b990-11eb-849a-a0481ca055a9 + request-id: 62fe78ae-afc7-11eb-a6c3-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search75151acc.search.windows.net/skillsets?api-version=2020-06-30 + url: https://search75151acc.search.windows.net/skillsets?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_delete_skillset.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_delete_skillset.yaml index a795e2f817f2..3aa05597fcfa 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_delete_skillset.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_delete_skillset.yaml @@ -11,103 +11,103 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search74f91acb.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://search74f91acb.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search74f91acb.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB4DC813500\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search74f91acb.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911EB50F1C114\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '608' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:29:45 GMT - elapsed-time: '1321' - etag: W/"0x8D91BB4DC813500" + date: Sat, 08 May 2021 06:34:22 GMT + elapsed-time: '66' + etag: W/"0x8D911EB50F1C114" expires: '-1' - location: https://search74f91acb.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + location: https://search74f91acb.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: f72c09ae-b990-11eb-af04-a0481ca055a9 + request-id: 6c19b43d-afc7-11eb-83e3-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search74f91acb.search.windows.net/skillsets?api-version=2020-06-30 + url: https://search74f91acb.search.windows.net/skillsets?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search74f91acb.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://search74f91acb.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4f7J8/3M2mk7H8Ob4qlrPqqhkv8/bu77bI2wxv/3jz - tijLJm+bj0YfXWblOv/o0fcsaGp0QXB/34923h08fbj75Mn+05OD3Xv3d3Z+34+o/TJbUPOP2rxp - txsAmOXNtC5WbVEt6XP8RR9KDz7Y9nqF9378i2JaV0113o5fc5vxGxrH+HTZFu31q3xaXSwLgOIv - CZB29+O79Dtg256W67IcfeTocHdWTdeLfNlSw2nW5hdVXeTA4KOXed3QG6OPfmKdcTf065f1RbYs - fpAxrNFHX716Tv+eLrICfT6vCIB88ZQgvSkIhe+j+/NsXbbPs+XFOrvIT6oZMMvRbFEsi8V68bLO - p0WDNxW9Yjkt17P8DY29zJuGR8lYma9Xa5oEUEnHyYMh8lXreoq/7aju8kh5dPLlCf6mxl1Q3/8l - hGq1bvVPC7nyRoxpa7P6Im9fxL78JQxDp+Iyf53Xl8XUYf12WV2V+ewif91WNb0tn+bLaX3Nc/N7 - 5dfy4S/5/i/5fwC2uzS4sQIAAA== + tijLJm+bj0YfXWblOv/o0fcsaGp0QXB/34923h08fbi7e/rk/s6z3ZPd3f3f9yNqv8wW1PyjNm/a + 7QYAZnkzrYtVW1RL+hx/0YfSgw+2vV7hvR//opjWVVOdt+PX3Gb8hsYxPl22RXv9Kp9WF8sCoPhL + AqTd/fgu/Q7YtqfluixHHzk63J1V0/UiX7bUcJq1+UVVFzkw+OhlXjf0xuijn1hn3A39+mV9kS2L + H2QMa/TRV6+e07+ni6xAn88rAiBfPCVIbwpC4fvo/jxbl+3zbHmxzi7yk2oGzHI0WxTLYrFevKzz + adHgTUWvWE7L9Sx/Q2Mv86bhUTJW5uvVmiYBVNJx8mCIfNW6nuJvO6q7PFIenXx5gr+pcRfU938J + oVqtW/3TQq68EWPa2qy+yNsXsS9/CcPQqbjMX+f1ZTF1WL9dVldlPrvIX7dVTW/Lp/lyWl/z3Pxe + +bV8+Eu+/0v+H9VatNaxAgAA headers: cache-control: no-cache content-encoding: gzip - content-length: '532' + content-length: '531' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:29:45 GMT - elapsed-time: '37' + date: Sat, 08 May 2021 06:34:22 GMT + elapsed-time: '22' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: f81267d7-b990-11eb-b019-a0481ca055a9 + request-id: 6c4956ad-afc7-11eb-a948-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search74f91acb.search.windows.net/skillsets?api-version=2020-06-30 + url: https://search74f91acb.search.windows.net/skillsets?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://search74f91acb.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://search74f91acb.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache - date: Thu, 20 May 2021 17:29:45 GMT - elapsed-time: '30' + date: Sat, 08 May 2021 06:34:22 GMT + elapsed-time: '43' expires: '-1' pragma: no-cache - request-id: f8205a55-b990-11eb-be2a-a0481ca055a9 + request-id: 6c55fea2-afc7-11eb-9db8-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 204 message: No Content - url: https://search74f91acb.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + url: https://search74f91acb.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search74f91acb.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://search74f91acb.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -120,17 +120,17 @@ interactions: content-encoding: gzip content-length: '201' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:29:51 GMT - elapsed-time: '8' + date: Sat, 08 May 2021 06:34:27 GMT + elapsed-time: '13' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: fb28bfd8-b990-11eb-92e2-a0481ca055a9 + request-id: 6f615f4b-afc7-11eb-af2f-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search74f91acb.search.windows.net/skillsets?api-version=2020-06-30 + url: https://search74f91acb.search.windows.net/skillsets?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_delete_skillset_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_delete_skillset_if_unchanged.yaml index 2f0aea93da8a..2a0a5e5d191e 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_delete_skillset_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_delete_skillset_if_unchanged.yaml @@ -11,30 +11,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchf5e02005.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://searchf5e02005.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchf5e02005.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB4E9C19F61\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchf5e02005.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911EB5E8AEC4E\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '608' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:30:07 GMT - elapsed-time: '46' - etag: W/"0x8D91BB4E9C19F61" + date: Sat, 08 May 2021 06:34:45 GMT + elapsed-time: '142' + etag: W/"0x8D911EB5E8AEC4E" expires: '-1' - location: https://searchf5e02005.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + location: https://searchf5e02005.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 052a8dc8-b991-11eb-9ca2-a0481ca055a9 + request-id: 79ac43b1-afc7-11eb-8c3b-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searchf5e02005.search.windows.net/skillsets?api-version=2020-06-30 + url: https://searchf5e02005.search.windows.net/skillsets?api-version=2020-06-30-Preview - request: body: '{"name": "test-ss", "description": "updated", "skills": [{"@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", "inputs": [{"name": "text", @@ -50,51 +50,51 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://searchf5e02005.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://searchf5e02005.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns7P7+c7ezs798fy5/iqWM6qq2a8zNu7v9sibzO8/ePN - 26Ism7xt7v5u+bIt2uuPRgYwNbkgqL/vRzvvDp4+3H3yZP/04dPdg50nD37fj6jVMlvk9HWbN+12 - 09AHs7yZ1sWqLaolfb5eEZB8Rp9LFx89+p5Fub1e4dUf/6KY1lVTnbfj19xm/IYGMj5lPF7l0+pi - WQAaf0mApMfluiw7nclHlhD6J3V/UdVFjq6/jzfOs3XZPs+WF+vsIj+pZhbYolgWi/XiZZ1Pi8aD - WCyn5XqWvyF0y7xpGDGGZ75erVv6iwYmqBExqH8acbWup/j77qyarhdE2LuM3NJ9eYK/qXEX1Pd/ - CaFarVv900Ku6otsWfwgw4BB7DarL/L2RezLX8IwlHqX+eu8viymDuu3y+qqzGcX+eu2qult+TRf - TutrJufvlV/Lh7/k/wFuFkTgYwIAAA== + 26Ism7xt7v5u+bIt2uuPRgYwNbkgqL/vRzvvDp4+3N09fXL/9PjB3snOzu/7EbVaZoucvm7zpt1u + GvpgljfTuli1RbWkz9crApLP6HPp4qNH37Mot9crvPrjXxTTumqq83b8mtuM39BAxqeMx6t8Wl0s + C0DjLwmQ9Lhcl2WnM/nIEkL/pO4vqrrI0fX38cZ5ti7b59nyYp1d5CfVzAJbFMtisV68rPNp0XgQ + i+W0XM/yN4RumTcNI8bwzNerdUt/0cAENSIG9U8jrtb1FH/fnVXT9YIIe5eRW7ovT/A3Ne6C+v4v + IVSrdat/WshVfZEtix9kGDCI3Wb1Rd6+iH35SxiGUu8yf53Xl8XUYf12WV2V+ewif91WNb0tn+bL + aX3N5Py98mv58Jf8PyKXCmhjAgAA headers: cache-control: no-cache content-encoding: gzip - content-length: '478' + content-length: '477' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:30:07 GMT + date: Sat, 08 May 2021 06:34:45 GMT elapsed-time: '45' - etag: W/"0x8D91BB4E9D180B7" + etag: W/"0x8D911EB5EA72C00" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 0552a38a-b991-11eb-8435-a0481ca055a9 + request-id: 79e93c81-afc7-11eb-847d-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchf5e02005.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + url: https://searchf5e02005.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal If-Match: - - '"0x8D91BB4E9C19F61"' + - '"0x8D911EB5E8AEC4E"' User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://searchf5e02005.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://searchf5e02005.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: string: '{"error":{"code":"","message":"The precondition given in one of the @@ -105,16 +105,16 @@ interactions: content-language: en content-length: '160' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:30:07 GMT - elapsed-time: '9' + date: Sat, 08 May 2021 06:34:45 GMT + elapsed-time: '5' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 0561dbe4-b991-11eb-8494-a0481ca055a9 + request-id: 79faf32a-afc7-11eb-b4c9-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 412 message: Precondition Failed - url: https://searchf5e02005.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + url: https://searchf5e02005.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_get_skillset.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_get_skillset.yaml index 3b6038a7a685..f13c3a5c2516 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_get_skillset.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_get_skillset.yaml @@ -11,109 +11,109 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search267a1998.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://search267a1998.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search267a1998.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB4F617F4E4\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search267a1998.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911EB68842855\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '608' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:30:28 GMT - elapsed-time: '58' - etag: W/"0x8D91BB4F617F4E4" + date: Sat, 08 May 2021 06:35:01 GMT + elapsed-time: '89' + etag: W/"0x8D911EB68842855" expires: '-1' - location: https://search267a1998.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + location: https://search267a1998.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 118130d2-b991-11eb-bb03-a0481ca055a9 + request-id: 83a4d029-afc7-11eb-86fe-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search267a1998.search.windows.net/skillsets?api-version=2020-06-30 + url: https://search267a1998.search.windows.net/skillsets?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search267a1998.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://search267a1998.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns73Pn2Q7T58eDCWP8dXxXJWXTXjZd7e/d0WeZvh7R9v - 3hZl2eRt89Hoo8usXOcfPfqeBU2NLgju7/vRzruDpw93nzzZf/bp7oNn+6f7v+9H1H6ZLaj5R23e - tNsNAMzyZloXq7aolvQ5/qIPpQcfbHu9wns//kUxraumOm/Hr7nN+A2NY3y6bIv2+lU+rS6WBUDx - lwRIu/vxXfodsG1Py3VZjj5ydLg7q6brRb5sqeE0a/OLqi5yYPDRy7xu6I3RRz+xzrgb+vXL+iJb - Fj/IGNboo69ePad/TxdZgT6fVwRAvnhKkN4UhML30f15ti7b59nyYp1d5CfVDJjlaLYolsVivXhZ - 59OiwZuKXrGclutZ/obGXuZNw6NkrMzXqzVNAqik4+TBEPmqdT3F33ZUd3mkPDr58gR/U+MuqO// - EkK1Wrf6p4VceSPGtLVZfZG3L2Jf/hKGoVNxmb/O68ti6rB+u6yuynx2kb9uq5relk/z5bS+5rn5 - vfJr+fCXfP+X/D+tOw7zsQIAAA== + 3hZl2eRt89Hoo8usXOcfPfqeBU2NLgju7/vRzruDpw93d0+ffHpwsL93cP/+7/sRtV9mC2r+UZs3 + 7XYDALO8mdbFqi2qJX2Ov+hD6cEH216v8N6Pf1FM66qpztvxa24zfkPjGJ8u26K9fpVPq4tlAVD8 + JQHS7n58l34HbNvTcl2Wo48cHe7Oqul6kS9bajjN2vyiqoscGHz0Mq8bemP00U+sM+6Gfv2yvsiW + xQ8yhjX66KtXz+nf00VWoM/nFQGQL54SpDcFofB9dH+ercv2eba8WGcX+Uk1A2Y5mi2KZbFYL17W + +bRo8KaiVyyn5XqWv6Gxl3nT8CgZK/P1ak2TACrpOHkwRL5qXU/xtx3VXR4pj06+PMHf1LgL6vu/ + hFCt1q3+aSFX3ogxbW1WX+Tti9iXv4Rh6FRc5q/z+rKYOqzfLqurMp9d5K/bqqa35dN8Oa2veW5+ + r/xaPvwl3/8l/w+ox+uysQIAAA== headers: cache-control: no-cache content-encoding: gzip content-length: '532' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:30:28 GMT - elapsed-time: '18' + date: Sat, 08 May 2021 06:35:01 GMT + elapsed-time: '25' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 11ab61b8-b991-11eb-9b03-a0481ca055a9 + request-id: 83dc6cf3-afc7-11eb-86f2-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search267a1998.search.windows.net/skillsets?api-version=2020-06-30 + url: https://search267a1998.search.windows.net/skillsets?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search267a1998.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://search267a1998.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns73Pn2Q7T58eDCWP8dXxXJWXTXjZd7e/d0WeZvh7R9v - 3hZl2eRtc/d3y5dt0V5/NDKAqckFQf19P9p5d/D04e6TJ/vPPt198Gz/dP/3/YhaLbNFTl+3edNu - Nw19MMubaV2s2qJa0uf4iz4U+B89+p7Ft71e4b0f/6KY1lVTnbfj19xm/IZGMT5lJF7l0+piWQAU - f0mAtLsf36XfAdv2tFyX5egjR4W7s2q6XtBgqOE0a/OLqi5yYPDRy7xu6I3RRz+xzrgb+vXL+iJb - Fj/IGNboo69ePad/TxdZgT6fVwRAvnhKkN4UhML30f15ti7b59nyYp1d5CfVDJjlaLYolsVivXhZ - 59OiwZuKXrGclutZ/obGXuZNw6NkrMzXq3VLfxGVdJw8GCJfta6n+NuO6i6PlEcnX57gb2rcBfX9 - X0KoVutW/7SQK2/EmLY2qy/y9kXsy1/CMHQqLvPXeX1ZTB3Wb5fVVZnPLvLXbVXT2/JpvpzW1zw3 - v1d+LR/+kv8HzZl0pq0CAAA= + 3hZl2eRtc/d3y5dt0V5/NDKAqckFQf19P9p5d/D04e7u6ZNPDw729w7u3/99P6JWy2yR09dt3rTb + TUMfzPJmWhertqiW9Dn+og8F/kePvmfxba9XeO/HvyimddVU5+34NbcZv6FRjE8ZiVf5tLpYFgDF + XxIg7e7Hd+l3wLY9LddlOfrIUeHurJquFzQYajjN2vyiqoscGHz0Mq8bemP00U+sM+6Gfv2yvsiW + xQ8yhjX66KtXz+nf00VWoM/nFQGQL54SpDcFofB9dH+ercv2eba8WGcX+Uk1A2Y5mi2KZbFYL17W + +bRo8KaiVyyn5XqWv6Gxl3nT8CgZK/P1at3SX0QlHScPhshXresp/rajussj5dHJlyf4mxp3QX3/ + lxCq1brVPy3kyhsxpq3N6ou8fRH78pcwDJ2Ky/x1Xl8WU4f122V1Veazi/x1W9X0tnyaL6f1Nc/N + 75Vfy4e/5P8BhiqJLq0CAAA= headers: cache-control: no-cache content-encoding: gzip content-length: '530' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:30:28 GMT - elapsed-time: '12' - etag: W/"0x8D91BB4F617F4E4" + date: Sat, 08 May 2021 06:35:01 GMT + elapsed-time: '13' + etag: W/"0x8D911EB68842855" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 11b6150a-b991-11eb-8b57-a0481ca055a9 + request-id: 83eb646c-afc7-11eb-b8ff-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search267a1998.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + url: https://search267a1998.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_get_skillsets.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_get_skillsets.yaml index 4f347b209c0e..a0f42e0a66d5 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_get_skillsets.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_skillset_live_async.test_get_skillsets.yaml @@ -12,30 +12,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search40851a0b.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://search40851a0b.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search40851a0b.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB501C47E8E\"","name":"test-ss-1","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search40851a0b.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911EB74A84A11\"","name":"test-ss-1","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '611' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:30:48 GMT - elapsed-time: '37' - etag: W/"0x8D91BB501C47E8E" + date: Sat, 08 May 2021 06:35:21 GMT + elapsed-time: '78' + etag: W/"0x8D911EB74A84A11" expires: '-1' - location: https://search40851a0b.search.windows.net/skillsets('test-ss-1')?api-version=2020-06-30 + location: https://search40851a0b.search.windows.net/skillsets('test-ss-1')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 1d3395ac-b991-11eb-a8fa-a0481ca055a9 + request-id: 8fcd2c4f-afc7-11eb-825d-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search40851a0b.search.windows.net/skillsets?api-version=2020-06-30 + url: https://search40851a0b.search.windows.net/skillsets?api-version=2020-06-30-Preview - request: body: '{"name": "test-ss-2", "description": "desc2", "skills": [{"@odata.type": "#Microsoft.Skills.Text.EntityRecognitionSkill", "inputs": [{"name": "text", @@ -49,68 +49,68 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search40851a0b.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://search40851a0b.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search40851a0b.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB501D30011\"","name":"test-ss-2","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search40851a0b.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911EB74BDF8E6\"","name":"test-ss-2","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '611' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:30:48 GMT - elapsed-time: '64' - etag: W/"0x8D91BB501D30011" + date: Sat, 08 May 2021 06:35:22 GMT + elapsed-time: '71' + etag: W/"0x8D911EB74BDF8E6" expires: '-1' - location: https://search40851a0b.search.windows.net/skillsets('test-ss-2')?api-version=2020-06-30 + location: https://search40851a0b.search.windows.net/skillsets('test-ss-2')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 1d55b4be-b991-11eb-8156-a0481ca055a9 + request-id: 900076ab-afc7-11eb-9f58-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search40851a0b.search.windows.net/skillsets?api-version=2020-06-30 + url: https://search40851a0b.search.windows.net/skillsets?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search40851a0b.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://search40851a0b.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns73dw7u72Y7k7H8Ob4qlrPqqhkv8/bu77bI2wxv/3jz - tijLJm+bj0YfXWblOv/o0fcsaGp0QXB/34923h08fbj75Mn9nd2T/QenB6e/70fUfpktqPlHbd60 - 202zvUsfzfJmWhertqiW9A3+wqfSiQ+5vV7h1R//opjWVVOdt+PX3Gb8hoYyPl22RXv9Kp9WF8sC - sPhLAqQ9/jiAArjtarkuy9FHjhR3Z9V0vciXLTWcZm1+UdVFDgw+epnXDb0x+ugn1hl3Q79+WV9k - y+IHGcMaffTVq+f07+kiK9Dn84oAyBdPCdKbglD4Pro/z9Zl+zxbXqyzi/ykmgGzHM0WxbJYrBcv - 63xaNHhT0SuW03I9y9/Q2Mu8aXiUjJX5erWmeQCVdJw8GCJfta6n+NuO6i6PlEcnX57gb2rcBfX9 - X0KoVutW/7SQK2/EmPo2qy/y9kXsy1/CMHQqLvPXeX1ZTB3Wb5fVVZnPLvLXbVXT2/JpvpzW1zw3 - v1d+LR/+kpGd/RhfPb23s7O7G+OrPfoomGz+C5/+iK8YvZ/nfPX9X/L/AImL89cMBQAA + tijLJm+bj0YfXWblOv/o0fcsaGp0QXB/34923h08fbi7e/rkwf7xwf7x7u7v+xG1X2YLav5Rmzft + dtNs79JHs7yZ1sWqLaolfYO/8Kl04kNur1d49ce/KKZ11VTn7fg1txm/oaGMT5dt0V6/yqfVxbIA + LP6SAGmPPw6gAG67Wq7LcvSRI8XdWTVdL/JlSw2nWZtfVHWRA4OPXuZ1Q2+MPvqJdcbd0K9f1hfZ + svhBxrBGH3316jn9e7rICvT5vCIA8sVTgvSmIBS+j+7Ps3XZPs+WF+vsIj+pZsAsR7NFsSwW68XL + Op8WDd5U9IrltFzP8jc09jJvGh4lY2W+Xq1pHkAlHScPhshXresp/rajussj5dHJlyf4mxp3QX3/ + lxCq1brVPy3kyhsxpr7N6ou8fRH78pcwDJ2Ky/x1Xl8WU4f122V1Veazi/x1W9X0tnyaL6f1Nc/N + 75Vfy4e/ZGRnP8ZXT54+Ozj9NMZXe/RRMNn8Fz79EV8xej/P+er7v+T/AUgBsYgMBQAA headers: cache-control: no-cache content-encoding: gzip content-length: '564' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:30:48 GMT - elapsed-time: '14' + date: Sat, 08 May 2021 06:35:22 GMT + elapsed-time: '31' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 1d684817-b991-11eb-a39e-a0481ca055a9 + request-id: 90167976-afc7-11eb-aac5-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search40851a0b.search.windows.net/skillsets?api-version=2020-06-30 + url: https://search40851a0b.search.windows.net/skillsets?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_create_or_update_synonym_map.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_create_or_update_synonym_map.yaml index b03024272c85..6b8cc2ff7e2f 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_create_or_update_synonym_map.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_create_or_update_synonym_map.yaml @@ -10,67 +10,67 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search5e99218c.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search5e99218c.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search5e99218c.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB50C07C1C8\"","name":"test-syn-map","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://search5e99218c.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911EB8134B6B1\"","name":"test-syn-map","format":"solr","synonyms":"USA, United States, United States of America\nWashington, Wash. => WA","encryptionKey":null}' headers: cache-control: no-cache content-length: '272' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:31:05 GMT - elapsed-time: '94' - etag: W/"0x8D91BB50C07C1C8" + date: Sat, 08 May 2021 06:35:43 GMT + elapsed-time: '48' + etag: W/"0x8D911EB8134B6B1" expires: '-1' - location: https://search5e99218c.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + location: https://search5e99218c.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 276c6e5a-b991-11eb-bda4-a0481ca055a9 + request-id: 9c5c9ecd-afc7-11eb-9c0e-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search5e99218c.search.windows.net/synonymmaps?api-version=2020-06-30 + url: https://search5e99218c.search.windows.net/synonymmaps?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search5e99218c.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search5e99218c.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns7v5w8f7u0eTMfy5/iqWM6qq2a8zNu7v9sibzO8/ePN - 9bJaXi8W2ar5aPTRZVau848efc8Cp2YXBPn3/Wjn3cHTh7tPntzfOdl5cLJ7cvD7fkTtl9mCmn/U - 5k27TZC2CQx9el7ViwwINVVZ09/0Dfpo6JOvXh+P0q+WRZvP0tdtRi92/kyr8/R4kdfFNPt9l9/N - mnmxvGir5SjF7+P0s6P0u8cEMl9O6+tVW1TL3yu//ujRcl2Wv+T7v+T/AYny6hgUAQAA + 9bJaXi8W2ar5aPTRZVau848efc8Cp2YXBPn3/Wjn3cHTh7u7p08Odu/tP/n0ye7v+xG1X2YLav5R + mzftNkHaJjD06XlVLzIg1FRlTX/TN+ijoU++en08Sr9aFm0+S1+3Gb3Y+TOtztPjRV4X0+z3XX43 + a+bF8qKtlqMUv4/Tz47S7x4TyHw5ra9XbVEtf6/8+qNHy3VZ/pLv/5L/B2D0m1MUAQAA headers: cache-control: no-cache content-encoding: gzip content-length: '336' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:31:05 GMT - elapsed-time: '24' + date: Sat, 08 May 2021 06:35:43 GMT + elapsed-time: '17' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 2797a59c-b991-11eb-84fd-a0481ca055a9 + request-id: 9c8ad696-afc7-11eb-b655-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search5e99218c.search.windows.net/synonymmaps?api-version=2020-06-30 + url: https://search5e99218c.search.windows.net/synonymmaps?api-version=2020-06-30-Preview - request: body: '{"name": "test-syn-map", "format": "solr", "synonyms": "Washington, Wash. => WA"}' @@ -84,108 +84,108 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search5e99218c.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + uri: https://search5e99218c.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns7v5w8f7u0eTMfy5/iqWM6qq2a8zNu7v9sibzO8/ePN - 9bJaXi8W2aq5+7vly7Zorz8aGdDU6ILg/r4f7bw7ePpw98mT+zsne7ufHjx9+vt+RK2W2SKnr9u8 - abcJzjYBoU/Pq3qRAZ2mKmv6m75BDw198t2smRfLi7ZajlL8Pk4/O0q/e0yN8uW0vl61RbX8vfLr - jx4t12X5S/4f3wFhzOIAAAA= + 9bJaXi8W2aq5+7vly7Zorz8aGdDU6ILg/r4f7bw7ePpwd/f0ycHu/f2d/Xv3f9+PqNUyW+T0dZs3 + 7TbB2SYg9Ol5VS8yoNNUZU1/0zfooaFPvps182J50VbLUYrfx+lnR+l3j6lRvpzW16u2qJa/V379 + 0aPluix/yf8DwCmPZeIAAAA= headers: cache-control: no-cache content-encoding: gzip content-length: '302' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:31:05 GMT - elapsed-time: '21' - etag: W/"0x8D91BB50C2168DD" + date: Sat, 08 May 2021 06:35:43 GMT + elapsed-time: '15' + etag: W/"0x8D911EB81540435" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 27a4105a-b991-11eb-9a63-a0481ca055a9 + request-id: 9c988643-afc7-11eb-b55a-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search5e99218c.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + url: https://search5e99218c.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search5e99218c.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search5e99218c.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns7v5w8f7u0eTMfy5/iqWM6qq2a8zNu7v9sibzO8/ePN - 9bJaXi8W2ar5aPTRZVau848efc8Cp2YXBPn3/Wjn3cHTh7tPntzfOdnb/fTg6dPf9yNqv8wW1Pyj - Nm/abYK0TWDo0/OqXmRAqKnKmv6mb9BHQ598N2vmxfKirZajFL+P08+O0u8eU6N8Oa2vV21RLX+v - /PqjR8t1Wf6S7/+S/wfZD5X/5gAAAA== + 9bJaXi8W2ar5aPTRZVau848efc8Cp2YXBPn3/Wjn3cHTh7u7p08Odu/v7+zfu//7fkTtl9mCmn/U + 5k27TZC2CQx9el7ViwwINVVZ09/0Dfpo6JPvZs28WF601XKU4vdx+tlR+t1japQvp/X1qi2q5e+V + X3/0aLkuy1/y/V/y/wBTAHoH5gAAAA== headers: cache-control: no-cache content-encoding: gzip content-length: '307' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:31:05 GMT - elapsed-time: '11' + date: Sat, 08 May 2021 06:35:43 GMT + elapsed-time: '10' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 27b10dfb-b991-11eb-937f-a0481ca055a9 + request-id: 9ca6c2e1-afc7-11eb-b513-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search5e99218c.search.windows.net/synonymmaps?api-version=2020-06-30 + url: https://search5e99218c.search.windows.net/synonymmaps?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search5e99218c.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + uri: https://search5e99218c.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns7v5w8f7u0eTMfy5/iqWM6qq2a8zNu7v9sibzO8/ePN - 9bJaXi8W2aq5+7vly7Zorz8aGdDU6ILg/r4f7bw7ePpw98mT+zsne7ufHjx9+vt+RK2W2SKnr9u8 - abcJzjYBoU/Pq3qRAZ2mKmv6m75BDw198t2smRfLi7ZajlL8Pk4/O0q/e0yN8uW0vl61RbX8vfLr - jx4t12X5S/4f3wFhzOIAAAA= + 9bJaXi8W2aq5+7vly7Zorz8aGdDU6ILg/r4f7bw7ePpwd/f0ycHu/f2d/Xv3f9+PqNUyW+T0dZs3 + 7TbB2SYg9Ol5VS8yoNNUZU1/0zfooaFPvps182J50VbLUYrfx+lnR+l3j6lRvpzW16u2qJa/V379 + 0aPluix/yf8DwCmPZeIAAAA= headers: cache-control: no-cache content-encoding: gzip content-length: '302' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:31:05 GMT - elapsed-time: '7' - etag: W/"0x8D91BB50C2168DD" + date: Sat, 08 May 2021 06:35:43 GMT + elapsed-time: '5' + etag: W/"0x8D911EB81540435" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 27bac375-b991-11eb-b62b-a0481ca055a9 + request-id: 9cb2f32c-afc7-11eb-b5c1-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search5e99218c.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + url: https://search5e99218c.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_create_synonym_map.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_create_synonym_map.yaml index df7cb2641523..d352cc2457d6 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_create_synonym_map.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_create_synonym_map.yaml @@ -10,65 +10,65 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search23141d6a.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search23141d6a.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search23141d6a.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB516E9AB4E\"","name":"test-syn-map","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://search23141d6a.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911EB8BEE7F4D\"","name":"test-syn-map","format":"solr","synonyms":"USA, United States, United States of America\nWashington, Wash. => WA","encryptionKey":null}' headers: cache-control: no-cache content-length: '272' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:31:23 GMT - elapsed-time: '114' - etag: W/"0x8D91BB516E9AB4E" + date: Sat, 08 May 2021 06:36:01 GMT + elapsed-time: '83' + etag: W/"0x8D911EB8BEE7F4D" expires: '-1' - location: https://search23141d6a.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + location: https://search23141d6a.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 324af78d-b991-11eb-84f3-a0481ca055a9 + request-id: a7187b2a-afc7-11eb-b9df-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search23141d6a.search.windows.net/synonymmaps?api-version=2020-06-30 + url: https://search23141d6a.search.windows.net/synonymmaps?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search23141d6a.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search23141d6a.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns737u3u784+zcby5/iqWM6qq2a8zNu7v9sibzO8/ePN - 9bJaXi8W2ar5aPTRZVau848efc8Cp2YXBPn3/Wjn3cHTh7tPntzf/fT04fGT/dPf9yNqv8wW1Pyj - Nm/abYK0TWDo0/OqXmRAqKnKmv6mb9BHQ5989fp4lH61LNp8lr5uM3qx82danafHi7wuptnvu/xu - 1syL5UVbLUcpfh+nnx2l3z0mkPlyWl+v2qJa/l759UePluuy/CXf/yX/D9lRC3gUAQAA + 9bJaXi8W2ar5aPTRZVau848efc8Cp2YXBPn3/Wjn3cHTh7u7p08OnpyePni2//T3/YjaL7MFNf+o + zZt2myBtExj69LyqFxkQaqqypr/pG/TR0CdfvT4epV8tizafpa/bjF7s/JlW5+nxIq+Lafb7Lr+b + NfNiedFWy1GK38fpZ0fpd48JZL6c1tertqiWv1d+/dGj5bosf8n3f8n/A1b4GeEUAQAA headers: cache-control: no-cache content-encoding: gzip content-length: '336' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:31:23 GMT - elapsed-time: '19' + date: Sat, 08 May 2021 06:36:01 GMT + elapsed-time: '17' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 3279ff4c-b991-11eb-9430-a0481ca055a9 + request-id: a74a8cb3-afc7-11eb-bee6-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search23141d6a.search.windows.net/synonymmaps?api-version=2020-06-30 + url: https://search23141d6a.search.windows.net/synonymmaps?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_delete_synonym_map.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_delete_synonym_map.yaml index bd63de4ce5a4..db4b4a69cfbe 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_delete_synonym_map.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_delete_synonym_map.yaml @@ -10,100 +10,100 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search22f51d69.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search22f51d69.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search22f51d69.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB5221E3067\"","name":"test-syn-map","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://search22f51d69.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911EB95EE7348\"","name":"test-syn-map","format":"solr","synonyms":"USA, United States, United States of America\nWashington, Wash. => WA","encryptionKey":null}' headers: cache-control: no-cache content-length: '272' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:31:42 GMT - elapsed-time: '22' - etag: W/"0x8D91BB5221E3067" + date: Sat, 08 May 2021 06:36:18 GMT + elapsed-time: '62' + etag: W/"0x8D911EB95EE7348" expires: '-1' - location: https://search22f51d69.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + location: https://search22f51d69.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 3d8cd0ef-b991-11eb-b5c5-a0481ca055a9 + request-id: b1146cf7-afc7-11eb-828c-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search22f51d69.search.windows.net/synonymmaps?api-version=2020-06-30 + url: https://search22f51d69.search.windows.net/synonymmaps?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search22f51d69.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search22f51d69.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns739s7v784+fTiWP8dXxXJWXTXjZd7e/d0WeZvh7R9v - rpfV8nqxyFbNR6OPLrNynX/06HsWODW7IMi/70c77w6ePtx98uT+3t7u6b2dTx/8vh9R+2W2oOYf - tXnTbhOkbQJDn55X9SIDQk1V1vQ3fYM+Gvrkq9fHo/SrZdHms/R1m9GLnT/T6jw9XuR1Mc1+3+V3 - s2ZeLC/aajlK8fs4/ewo/e4xgcyX0/p61RbV8vfKrz96tFyX5S/5/i/5fwBPSwn7FAEAAA== + rpfV8nqxyFbNR6OPLrNynX/06HsWODW7IMi/70c77w6ePtzdPX3y8P7p6YN7+we/70fUfpktqPlH + bd602wRpm8DQp+dVvciAUFOVNf1N36CPhj756vXxKP1qWbT5LH3dZvRi58+0Ok+PF3ldTLPfd/nd + rJkXy4u2Wo5S/D5OPztKv3tMIPPltL5etUW1/L3y648eLddl+Uu+/0v+H4b30C8UAQAA headers: cache-control: no-cache content-encoding: gzip - content-length: '337' + content-length: '336' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:31:42 GMT - elapsed-time: '12' + date: Sat, 08 May 2021 06:36:18 GMT + elapsed-time: '16' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 3dae5c30-b991-11eb-bbc3-a0481ca055a9 + request-id: b144d515-afc7-11eb-a7b3-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search22f51d69.search.windows.net/synonymmaps?api-version=2020-06-30 + url: https://search22f51d69.search.windows.net/synonymmaps?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://search22f51d69.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + uri: https://search22f51d69.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache - date: Thu, 20 May 2021 17:31:42 GMT - elapsed-time: '19' + date: Sat, 08 May 2021 06:36:18 GMT + elapsed-time: '45' expires: '-1' pragma: no-cache - request-id: 3db8715f-b991-11eb-b732-a0481ca055a9 + request-id: b151a904-afc7-11eb-a3a4-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 204 message: No Content - url: https://search22f51d69.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + url: https://search22f51d69.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search22f51d69.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search22f51d69.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -116,17 +116,17 @@ interactions: content-encoding: gzip content-length: '204' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:31:42 GMT - elapsed-time: '13' + date: Sat, 08 May 2021 06:36:18 GMT + elapsed-time: '12' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 3dc84874-b991-11eb-a67a-a0481ca055a9 + request-id: b16363bd-afc7-11eb-b4a5-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search22f51d69.search.windows.net/synonymmaps?api-version=2020-06-30 + url: https://search22f51d69.search.windows.net/synonymmaps?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_delete_synonym_map_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_delete_synonym_map_if_unchanged.yaml index 28aa97998438..8f5475e85c1a 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_delete_synonym_map_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_delete_synonym_map_if_unchanged.yaml @@ -10,31 +10,31 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchc5e222a3.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://searchc5e222a3.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchc5e222a3.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB52D92B01E\"","name":"test-syn-map","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://searchc5e222a3.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911EB9F8F45D2\"","name":"test-syn-map","format":"solr","synonyms":"USA, United States, United States of America\nWashington, Wash. => WA","encryptionKey":null}' headers: cache-control: no-cache content-length: '272' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:32:01 GMT - elapsed-time: '34' - etag: W/"0x8D91BB52D92B01E" + date: Sat, 08 May 2021 06:36:34 GMT + elapsed-time: '56' + etag: W/"0x8D911EB9F8F45D2" expires: '-1' - location: https://searchc5e222a3.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + location: https://searchc5e222a3.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 48f7e30b-b991-11eb-a5cf-a0481ca055a9 + request-id: bab9e401-afc7-11eb-9a26-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searchc5e222a3.search.windows.net/synonymmaps?api-version=2020-06-30 + url: https://searchc5e222a3.search.windows.net/synonymmaps?api-version=2020-06-30-Preview - request: body: '{"name": "test-syn-map", "format": "solr", "synonyms": "W\na\ns\nh\ni\nn\ng\nt\no\nn\n,\n \nW\na\ns\nh\n.\n \n=\n>\n \nW\nA"}' @@ -48,48 +48,48 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://searchc5e222a3.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + uri: https://searchc5e222a3.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns6n9/O9vb3s3lj+HF8Vy1l11YyXeXv3d1vkbYa3f7y5 - XlbL68UiWzV3f7d82Rbt9UcjA5oaXRDc3/ejnXcHTx/uPnlyf+/pw2c7p5/e+30/olbLbJHT123e - tNsEZ5uA0KfnVb3IgE5TlTX9Td+gh4Y++e7vu8x+32Xz+y7nv++y+H2Xy993efH7Ltvfd1nx76Pf - d5n+vku/zZg/+ez3XR7xL/TVMQHMl9P6etUW1fL3yq8/erRcl+Uv+X8AytWw+g4BAAA= + XlbL68UiWzV3f7d82Rbt9UcjA5oaXRDc3/ejnXcHTx/u7p4+efjsePfJs5O93/cjarXMFjl93eZN + u01wtgkIfXpe1YsM6DRVWdPf9A16aOiT7/6+y+z3XTa/73L++y6L33e5/H2XF7/vsv19lxX/Pvp9 + l+nvu/TbjPmTz37f5RH/Ql8dE8B8Oa2vV21RLX+v/PqjR8t1Wf6S/weiqJLMDgEAAA== headers: cache-control: no-cache content-encoding: gzip - content-length: '335' + content-length: '334' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:32:01 GMT - elapsed-time: '19' - etag: W/"0x8D91BB52D9F0E63" + date: Sat, 08 May 2021 06:36:34 GMT + elapsed-time: '31' + etag: W/"0x8D911EB9FA1BFC2" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 492271c6-b991-11eb-adeb-a0481ca055a9 + request-id: bae512e8-afc7-11eb-ac17-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchc5e222a3.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + url: https://searchc5e222a3.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal If-Match: - - '"0x8D91BB52D92B01E"' + - '"0x8D911EB9F8F45D2"' User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://searchc5e222a3.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + uri: https://searchc5e222a3.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview response: body: string: '{"error":{"code":"","message":"The precondition given in one of the @@ -100,16 +100,16 @@ interactions: content-language: en content-length: '160' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:32:01 GMT + date: Sat, 08 May 2021 06:36:34 GMT elapsed-time: '11' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 492ef4d0-b991-11eb-999b-a0481ca055a9 + request-id: baf3b97f-afc7-11eb-9f8f-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 412 message: Precondition Failed - url: https://searchc5e222a3.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + url: https://searchc5e222a3.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_get_synonym_map.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_get_synonym_map.yaml index ec78589e4f3c..935bd702a125 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_get_synonym_map.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_get_synonym_map.yaml @@ -10,102 +10,102 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchcce11c36.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://searchcce11c36.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchcce11c36.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB5382D71A4\"","name":"test-syn-map","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://searchcce11c36.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911EBA975447F\"","name":"test-syn-map","format":"solr","synonyms":"USA, United States, United States of America\nWashington, Wash. => WA","encryptionKey":null}' headers: cache-control: no-cache content-length: '272' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:32:19 GMT - elapsed-time: '26' - etag: W/"0x8D91BB5382D71A4" + date: Sat, 08 May 2021 06:36:50 GMT + elapsed-time: '54' + etag: W/"0x8D911EBA975447F" expires: '-1' - location: https://searchcce11c36.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + location: https://searchcce11c36.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 5397372d-b991-11eb-b971-a0481ca055a9 + request-id: c49d7b43-afc7-11eb-b796-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searchcce11c36.search.windows.net/synonymmaps?api-version=2020-06-30 + url: https://searchcce11c36.search.windows.net/synonymmaps?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchcce11c36.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://searchcce11c36.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns6n03x3d3rv07H8Ob4qlrPqqhkv8/bu77bI2wxv/3hz - vayW14tFtmo+Gn10mZXr/KNH37PAqdkFQf59P9p5d/D04e6TJ/fvHew9fbB7vP/7fkTtl9mCmn/U + vayW14tFtmo+Gn10mZXr/KNH37PAqdkFQf59P9p5d/D04e7u6ZPjhw/u7+8/ePb7fkTtl9mCmn/U 5k27TZC2CQx9el7ViwwINVVZ09/0Dfpo6JOvXh+P0q+WRZvP0tdtRi92/kyr8/R4kdfFNPt9l9/N - mnmxvGir5SjF7+P0s6P0u8cEMl9O6+tVW1TL3yu//ujRcl2Wv+T7v+T/AcpJCO8UAQAA + mnmxvGir5SjF7+P0s6P0u8cEMl9O6+tVW1TL3yu//ujRcl2Wv+T7v+T/AT3q6dIUAQAA headers: cache-control: no-cache content-encoding: gzip content-length: '336' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:32:19 GMT - elapsed-time: '12' + date: Sat, 08 May 2021 06:36:50 GMT + elapsed-time: '18' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 53bdb220-b991-11eb-a164-a0481ca055a9 + request-id: c4cc10ac-afc7-11eb-ba6f-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchcce11c36.search.windows.net/synonymmaps?api-version=2020-06-30 + url: https://searchcce11c36.search.windows.net/synonymmaps?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchcce11c36.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + uri: https://searchcce11c36.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns6n03x3d3rv07H8Ob4qlrPqqhkv8/bu77bI2wxv/3hz - vayW14tFtmru/m75si3a649GBjQ1uiC4v+9HO+8Onj7cffLk/r2DvacPdo/3f9+PqNUyW+T0dZs3 + vayW14tFtmru/m75si3a649GBjQ1uiC4v+9HO+8Onj7c3T19cvzwwf39/QfPft+PqNUyW+T0dZs3 7TbB2SYg9Ol5VS8yoNNUZU1/0zfooaFPvnp9PEq/WhZtPktftxm92Pkzrc7T40VeF9Ps911+N2vm - xfKirZajFL+P08+O0u8eE8h8Oa2vV21RLX+v/PqjR8t1Wf6S/wfHqjVIEAEAAA== + xfKirZajFL+P08+O0u8eE8h8Oa2vV21RLX+v/PqjR8t1Wf6S/wckDaZ9EAEAAA== headers: cache-control: no-cache content-encoding: gzip content-length: '331' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:32:19 GMT - elapsed-time: '7' - etag: W/"0x8D91BB5382D71A4" + date: Sat, 08 May 2021 06:36:50 GMT + elapsed-time: '5' + etag: W/"0x8D911EBA975447F" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 53c75dbb-b991-11eb-b859-a0481ca055a9 + request-id: c4d89f18-afc7-11eb-b6d9-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchcce11c36.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + url: https://searchcce11c36.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_get_synonym_maps.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_get_synonym_maps.yaml index d6595f84f66c..ecb2a42b1d33 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_get_synonym_maps.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_index_client_synonym_map_live_async.test_get_synonym_maps.yaml @@ -10,31 +10,31 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searche98a1ca9.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://searche98a1ca9.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searche98a1ca9.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB542BA9C44\"","name":"test-syn-map-1","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://searche98a1ca9.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911EBB3C82243\"","name":"test-syn-map-1","format":"solr","synonyms":"USA, United States, United States of America\nWashington, Wash. => WA","encryptionKey":null}' headers: cache-control: no-cache content-length: '274' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:32:36 GMT - elapsed-time: '24' - etag: W/"0x8D91BB542BA9C44" + date: Sat, 08 May 2021 06:37:08 GMT + elapsed-time: '56' + etag: W/"0x8D911EBB3C82243" expires: '-1' - location: https://searche98a1ca9.search.windows.net/synonymmaps('test-syn-map-1')?api-version=2020-06-30 + location: https://searche98a1ca9.search.windows.net/synonymmaps('test-syn-map-1')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 5e24ea25-b991-11eb-9197-a0481ca055a9 + request-id: ceecd554-afc7-11eb-be06-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searche98a1ca9.search.windows.net/synonymmaps?api-version=2020-06-30 + url: https://searche98a1ca9.search.windows.net/synonymmaps?api-version=2020-06-30-Preview - request: body: '{"name": "test-syn-map-2", "format": "solr", "synonyms": "Washington, Wash. => WA"}' @@ -46,66 +46,66 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searche98a1ca9.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://searche98a1ca9.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searche98a1ca9.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB542C8816C\"","name":"test-syn-map-2","format":"solr","synonyms":"Washington, + string: '{"@odata.context":"https://searche98a1ca9.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911EBB3DCBF72\"","name":"test-syn-map-2","format":"solr","synonyms":"Washington, Wash. => WA","encryptionKey":null}' headers: cache-control: no-cache content-length: '228' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:32:37 GMT - elapsed-time: '23' - etag: W/"0x8D91BB542C8816C" + date: Sat, 08 May 2021 06:37:08 GMT + elapsed-time: '47' + etag: W/"0x8D911EBB3DCBF72" expires: '-1' - location: https://searche98a1ca9.search.windows.net/synonymmaps('test-syn-map-2')?api-version=2020-06-30 + location: https://searche98a1ca9.search.windows.net/synonymmaps('test-syn-map-2')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 5e4aab29-b991-11eb-a1d5-a0481ca055a9 + request-id: cf1f133d-afc7-11eb-8616-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searche98a1ca9.search.windows.net/synonymmaps?api-version=2020-06-30 + url: https://searche98a1ca9.search.windows.net/synonymmaps?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searche98a1ca9.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://searche98a1ca9.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns7zhwfZ7jR7OJY/x1fFclZdNeNl3t793RZ5m+HtH2+u - l9XyerHIVs1Ho48us3Kdf/ToexY4NbsgyL/vRzvvDp4+3H3y5P7+3pPjhyf7+7/vR9R+mS2o+Udt - 3rTbBGmbwGzv0ufnVb3IgFJTlTX9Td+hl4Y++er18Sj9alm0+Sx93Wb0aufPtDpPjxd5XUyz33f5 - 3ayZF8uLtlqOUvw+Tj87Sr97TCDz5bS+XrVFtfy98uuPHi3XZflLRhvxPjk42P30ZBDvPfp8A97o - /faYfP+X/D/v3WpJoAEAAA== + l9XyerHIVs1Ho48us3Kdf/ToexY4NbsgyL/vRzvvDp4+3N09ffLk3snB3t7+vd/3I2q/zBbU/KM2 + b9ptgrRNYLZ36fPzql5kQKmpypr+pu/QS0OffPX6eJR+tSzafJa+bjN6tfNnWp2nx4u8LqbZ77v8 + btbMi+VFWy1HKX4fp58dpd89JpD5clpfr9qiWv5e+fVHj5brsvwlo414Pz158uzB3iDee/T5BrzR + ++0x+f4v+X8Ad1yM1KABAAA= headers: cache-control: no-cache content-encoding: gzip - content-length: '358' + content-length: '359' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:32:37 GMT - elapsed-time: '17' + date: Sat, 08 May 2021 06:37:08 GMT + elapsed-time: '22' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 5e5841a3-b991-11eb-84f1-a0481ca055a9 + request-id: cf328239-afc7-11eb-ae48-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searche98a1ca9.search.windows.net/synonymmaps?api-version=2020-06-30 + url: https://searche98a1ca9.search.windows.net/synonymmaps?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_create_indexer.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_create_indexer.yaml index dccd55e6769d..5afcaa378d22 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_create_indexer.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_create_indexer.yaml @@ -10,30 +10,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searcha7b8175d.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searcha7b8175d.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searcha7b8175d.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB54CD0FB22\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searcha7b8175d.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EBBDB107A2\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '391' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:32:54 GMT - elapsed-time: '51' - etag: W/"0x8D91BB54CD0FB22" + date: Sat, 08 May 2021 06:37:24 GMT + elapsed-time: '63' + etag: W/"0x8D911EBBDB107A2" expires: '-1' - location: https://searcha7b8175d.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + location: https://searcha7b8175d.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 683bfbc5-b991-11eb-bbda-a0481ca055a9 + request-id: d8d83dc5-afc7-11eb-891e-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searcha7b8175d.search.windows.net/datasources?api-version=2020-06-30 + url: https://searcha7b8175d.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: '{"name": "hotels", "fields": [{"name": "hotelId", "type": "Edm.String", "key": true, "retrievable": true, "searchable": false}]}' @@ -45,30 +45,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searcha7b8175d.search.windows.net/indexes?api-version=2020-06-30 + uri: https://searcha7b8175d.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searcha7b8175d.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB54D953177\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://searcha7b8175d.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911EBBE227BB0\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: no-cache - content-length: '629' + content-length: '664' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:32:55 GMT - elapsed-time: '1081' - etag: W/"0x8D91BB54D953177" + date: Sat, 08 May 2021 06:37:25 GMT + elapsed-time: '477' + etag: W/"0x8D911EBBE227BB0" expires: '-1' - location: https://searcha7b8175d.search.windows.net/indexes('hotels')?api-version=2020-06-30 + location: https://searcha7b8175d.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 68624907-b991-11eb-a08c-a0481ca055a9 + request-id: d908a506-afc7-11eb-9752-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searcha7b8175d.search.windows.net/indexes?api-version=2020-06-30 + url: https://searcha7b8175d.search.windows.net/indexes?api-version=2020-06-30-Preview - request: body: '{"name": "sample-indexer", "dataSourceName": "sample-datasource", "targetIndexName": "hotels", "disabled": false}' @@ -80,28 +80,28 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searcha7b8175d.search.windows.net/indexers?api-version=2020-06-30 + uri: https://searcha7b8175d.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searcha7b8175d.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB54ECE5EA9\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://searcha7b8175d.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911EBBF2B6944\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: no-cache - content-length: '370' + content-length: '383' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:32:57 GMT - elapsed-time: '1630' - etag: W/"0x8D91BB54ECE5EA9" + date: Sat, 08 May 2021 06:37:27 GMT + elapsed-time: '1632' + etag: W/"0x8D911EBBF2B6944" expires: '-1' - location: https://searcha7b8175d.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + location: https://searcha7b8175d.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 6926f540-b991-11eb-9a1b-a0481ca055a9 + request-id: d97aeea9-afc7-11eb-88b4-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searcha7b8175d.search.windows.net/indexers?api-version=2020-06-30 + url: https://searcha7b8175d.search.windows.net/indexers?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_create_or_update_indexer.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_create_or_update_indexer.yaml index 721759012fc7..1a5176b818cd 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_create_or_update_indexer.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_create_or_update_indexer.yaml @@ -10,30 +10,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searcha8211b7f.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searcha8211b7f.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searcha8211b7f.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB558C3E92B\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searcha8211b7f.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EBC929AF09\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '391' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:33:14 GMT - elapsed-time: '40' - etag: W/"0x8D91BB558C3E92B" + date: Sat, 08 May 2021 06:37:43 GMT + elapsed-time: '61' + etag: W/"0x8D911EBC929AF09" expires: '-1' - location: https://searcha8211b7f.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + location: https://searcha8211b7f.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 742f5c10-b991-11eb-bab6-a0481ca055a9 + request-id: e4508ab8-afc7-11eb-8043-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searcha8211b7f.search.windows.net/datasources?api-version=2020-06-30 + url: https://searcha8211b7f.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: '{"name": "hotels", "fields": [{"name": "hotelId", "type": "Edm.String", "key": true, "retrievable": true, "searchable": false}]}' @@ -45,30 +45,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searcha8211b7f.search.windows.net/indexes?api-version=2020-06-30 + uri: https://searcha8211b7f.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searcha8211b7f.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB559875C16\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://searcha8211b7f.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911EBC99778E8\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: no-cache - content-length: '629' + content-length: '664' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:33:15 GMT - elapsed-time: '1094' - etag: W/"0x8D91BB559875C16" + date: Sat, 08 May 2021 06:37:44 GMT + elapsed-time: '453' + etag: W/"0x8D911EBC99778E8" expires: '-1' - location: https://searcha8211b7f.search.windows.net/indexes('hotels')?api-version=2020-06-30 + location: https://searcha8211b7f.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 7454df0a-b991-11eb-9961-a0481ca055a9 + request-id: e4823e65-afc7-11eb-9db8-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searcha8211b7f.search.windows.net/indexes?api-version=2020-06-30 + url: https://searcha8211b7f.search.windows.net/indexes?api-version=2020-06-30-Preview - request: body: '{"name": "sample-indexer", "dataSourceName": "sample-datasource", "targetIndexName": "hotels", "disabled": false}' @@ -80,67 +80,67 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searcha8211b7f.search.windows.net/indexers?api-version=2020-06-30 + uri: https://searcha8211b7f.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searcha8211b7f.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB559CBC44A\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://searcha8211b7f.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911EBCAA2147B\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: no-cache - content-length: '370' + content-length: '383' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:33:15 GMT - elapsed-time: '389' - etag: W/"0x8D91BB559CBC44A" + date: Sat, 08 May 2021 06:37:46 GMT + elapsed-time: '1619' + etag: W/"0x8D911EBCAA2147B" expires: '-1' - location: https://searcha8211b7f.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + location: https://searcha8211b7f.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 7517ba83-b991-11eb-b58f-a0481ca055a9 + request-id: e4efe947-afc7-11eb-8d98-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searcha8211b7f.search.windows.net/indexers?api-version=2020-06-30 + url: https://searcha8211b7f.search.windows.net/indexers?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searcha8211b7f.search.windows.net/indexers?api-version=2020-06-30 + uri: https://searcha8211b7f.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns6zg73d3cmD87H8Ob4qlrPqqhkv8/bu77bI2wxv/zh9 - mL/L6+aj0UeXWbnOP3r0PQuZ2lwQ2N/3o513B08f7j55cv/+w5MnJ/v7x7/vR9R+mS2o+UdNtliV - +bYCos9neTOti1VbVMuPHi3XZUkfEbjX1bqe5i+Cl/B5w5/Te83boiybvJUm8mKb1Rd5ewbY8vFH - 86rNS6A7K5psUuazjx6dZ/QavT+d57N1SY3k3VVW0yttToPTT86LvJx9ka1WxfKCPvze90cfVet2 - tW6f9b/Il9P6mgfxe+XXAuCXfP+X/D8gP9rhdgEAAA== + mL/L6+aj0UeXWbnOP3r0PQuZ2lwQ2N/3o513B08f7u6ePjk5Pt7b3X/w5Pf9iNovswU1/6jJFqsy + 31ZA9Pksb6Z1sWqLavnRo+W6LOkjAve6WtfT/EXwEj5v+HN6r3lblGWTt9JEXmyz+iJvzwBbPv5o + XrV5CXRnRZNNynz20aPzjF6j96fzfLYuqZG8u8pqeqXNaXD6yXmRl7MvstWqWF7Qh9/7/uijat2u + 1u2z/hfTjMCZF/PltL7mEf1e+bV8+Eu+/0v+H8ca4o2DAQAA headers: cache-control: no-cache content-encoding: gzip - content-length: '373' + content-length: '378' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:33:15 GMT - elapsed-time: '12' + date: Sat, 08 May 2021 06:37:46 GMT + elapsed-time: '21' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 757236a8-b991-11eb-a8b2-a0481ca055a9 + request-id: e6101952-afc7-11eb-8721-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searcha8211b7f.search.windows.net/indexers?api-version=2020-06-30 + url: https://searcha8211b7f.search.windows.net/indexers?api-version=2020-06-30-Preview - request: body: '{"name": "sample-indexer", "description": "updated", "dataSourceName": "sample-datasource", "targetIndexName": "hotels", "disabled": false}' @@ -154,111 +154,111 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://searcha8211b7f.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + uri: https://searcha8211b7f.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns6zg73d3cmD87H8Ob4qlrPqqhkv8/bu77bI2wxv/zh9 - mL/L6+bu75Yv26K9/mhk4FKLCwL6+3608+7g6cPdJ0/u3z/e2z3de3b6+35ErZbZIqevm2yxKvNt - BUOfz/JmWhertqiW9PV6RbDyGT4nmK+rdT3NXwRv4vOGP6dGzduiLJu8lSbLdVmOPmqz+iJvz9CB - fPzRvGrzsqHms6LJJiWBf3Se0Wv0/nSez9YlNZJ3V1lNr7R53ZhPzou8nH2RrVbF8oI+/N73Rx9V - 63a1bp/1v8iX0/qaR/J75dcC4Jf8P/XYOep3AQAA + mL/L6+bu75Yv26K9/mhk4FKLCwL6+3608+7g6cPd3dMnJ8fPjo/3nz74fT+iVstskdPXTbZYlfm2 + gqHPZ3kzrYtVW1RL+nq9Ilj5DJ8TzNfVup7mL4I38XnDn1Oj5m1Rlk3eSpPluixHH7VZfZG3Z+hA + Pv5oXrV52VDzWdFkk5LAPzrP6DV6fzrPZ+uSGsm7q6ymV9q8bswn50Vezr7IVqtieUEffu/7o4+q + dbtat8/6X0wzAmdezJfT+pqH9Xvl1/LhL/l/AFNIVqyEAQAA headers: cache-control: no-cache content-encoding: gzip - content-length: '372' + content-length: '378' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:33:15 GMT - elapsed-time: '302' - etag: W/"0x8D91BB55A21E2FE" + date: Sat, 08 May 2021 06:37:46 GMT + elapsed-time: '238' + etag: W/"0x8D911EBCAFAA4D7" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 757d0c10-b991-11eb-81a0-a0481ca055a9 + request-id: e61e9d3d-afc7-11eb-b1d8-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searcha8211b7f.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + url: https://searcha8211b7f.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searcha8211b7f.search.windows.net/indexers?api-version=2020-06-30 + uri: https://searcha8211b7f.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns6zg73d3cmD87H8Ob4qlrPqqhkv8/bu77bI2wxv/zh9 - mL/L6+aj0UeXWbnOP3r0PQuZ2lwQ2N/3o513B08f7j55cv/+8d7u6d6z09/3I2q/zBbU/KMmW6zK - fFsB0eezvJnWxaotqiV9vV4RrHyGzwnm62pdT/MXwZv4vOHPqVHztijLJm+lyXJdlqOP2qy+yNsz - dCAffzSv2rwEzrOiySYlgX90ntFr9P50ns/WJTWSd1dZTa+0OY1QPzkv8nL2RbZaFcsL+vB73x99 - VK3b1bp91v8iX07rax7J75VfC4Bf8v1f8v8ANiAQz3sBAAA= + mL/L6+aj0UeXWbnOP3r0PQuZ2lwQ2N/3o513B08f7u6ePjk5fnZ8vP/0we/7EbVfZgtq/lGTLVZl + vq2A6PNZ3kzrYtUW1ZK+Xq8IVj7D5wTzdbWup/mL4E183vDn1Kh5W5Rlk7fSZLkuy9FHbVZf5O0Z + OpCPP5pXbV4C51nRZJOSwD86z+g1en86z2frkhrJu6usplfanEaon5wXeTn7IlutiuUFffi9748+ + qtbtat0+638xzQiceTFfTutrHtbvlV/Lh7/k+7/k/wE3nZAoiAEAAA== headers: cache-control: no-cache content-encoding: gzip - content-length: '377' + content-length: '382' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:33:15 GMT - elapsed-time: '11' + date: Sat, 08 May 2021 06:37:46 GMT + elapsed-time: '10' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 75b29b03-b991-11eb-a05c-a0481ca055a9 + request-id: e64eacf5-afc7-11eb-815c-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searcha8211b7f.search.windows.net/indexers?api-version=2020-06-30 + url: https://searcha8211b7f.search.windows.net/indexers?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searcha8211b7f.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + uri: https://searcha8211b7f.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns6zg73d3cmD87H8Ob4qlrPqqhkv8/bu77bI2wxv/zh9 - mL/L6+bu75Yv26K9/mhk4FKLCwL6+3608+7g6cPdJ0/u3z/e2z3de3b6+35ErZbZIqevm2yxKvNt - BUOfz/JmWhertqiW9PV6RbDyGT4nmK+rdT3NXwRv4vOGP6dGzduiLJu8lSbLdVmOPmqz+iJvz9CB - fPzRvGrzsqHms6LJJiWBf3Se0Wv0/nSez9YlNZJ3V1lNr7R53ZhPzou8nH2RrVbF8oI+/N73Rx9V - 63a1bp/1v8iX0/qaR/J75dcC4Jf8P/XYOep3AQAA + mL/L6+bu75Yv26K9/mhk4FKLCwL6+3608+7g6cPd3dMnJ8fPjo/3nz74fT+iVstskdPXTbZYlfm2 + gqHPZ3kzrYtVW1RL+nq9Ilj5DJ8TzNfVup7mL4I38XnDn1Oj5m1Rlk3eSpPluixHH7VZfZG3Z+hA + Pv5oXrV52VDzWdFkk5LAPzrP6DV6fzrPZ+uSGsm7q6ymV9q8bswn50Vezr7IVqtieUEffu/7o4+q + dbtat8/6X0wzAmdezJfT+pqH9Xvl1/LhL/l/AFNIVqyEAQAA headers: cache-control: no-cache content-encoding: gzip - content-length: '372' + content-length: '378' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:33:15 GMT - elapsed-time: '6' - etag: W/"0x8D91BB55A21E2FE" + date: Sat, 08 May 2021 06:37:46 GMT + elapsed-time: '8' + etag: W/"0x8D911EBCAFAA4D7" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 75bf4528-b991-11eb-9dc9-a0481ca055a9 + request-id: e65b21b5-afc7-11eb-8d72-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searcha8211b7f.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + url: https://searcha8211b7f.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_create_or_update_indexer_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_create_or_update_indexer_if_unchanged.yaml index c80df7ef69a4..66b196901eff 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_create_or_update_indexer_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_create_or_update_indexer_if_unchanged.yaml @@ -10,30 +10,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search323b20b9.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search323b20b9.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search323b20b9.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB56505C8A2\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search323b20b9.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EBD3D5B9BA\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '391' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:33:34 GMT - elapsed-time: '37' - etag: W/"0x8D91BB56505C8A2" + date: Sat, 08 May 2021 06:38:01 GMT + elapsed-time: '54' + etag: W/"0x8D911EBD3D5B9BA" expires: '-1' - location: https://search323b20b9.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + location: https://search323b20b9.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 806ed975-b991-11eb-849c-a0481ca055a9 + request-id: eefce06c-afc7-11eb-b501-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search323b20b9.search.windows.net/datasources?api-version=2020-06-30 + url: https://search323b20b9.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: '{"name": "hotels", "fields": [{"name": "hotelId", "type": "Edm.String", "key": true, "retrievable": true, "searchable": false}]}' @@ -45,30 +45,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search323b20b9.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search323b20b9.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search323b20b9.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB565D3C4EF\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://search323b20b9.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911EBD44223CD\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: no-cache - content-length: '629' + content-length: '664' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:33:35 GMT - elapsed-time: '1149' - etag: W/"0x8D91BB565D3C4EF" + date: Sat, 08 May 2021 06:38:02 GMT + elapsed-time: '443' + etag: W/"0x8D911EBD44223CD" expires: '-1' - location: https://search323b20b9.search.windows.net/indexes('hotels')?api-version=2020-06-30 + location: https://search323b20b9.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 8097cb4e-b991-11eb-844a-a0481ca055a9 + request-id: ef2d3e41-afc7-11eb-a629-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search323b20b9.search.windows.net/indexes?api-version=2020-06-30 + url: https://search323b20b9.search.windows.net/indexes?api-version=2020-06-30-Preview - request: body: '{"name": "sample-indexer", "dataSourceName": "sample-datasource", "targetIndexName": "hotels", "disabled": false}' @@ -80,30 +80,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search323b20b9.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search323b20b9.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search323b20b9.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB5661790D8\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://search323b20b9.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911EBD491B1DB\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: no-cache - content-length: '370' + content-length: '383' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:33:35 GMT - elapsed-time: '386' - etag: W/"0x8D91BB5661790D8" + date: Sat, 08 May 2021 06:38:03 GMT + elapsed-time: '417' + etag: W/"0x8D911EBD491B1DB" expires: '-1' - location: https://search323b20b9.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + location: https://search323b20b9.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 81664b80-b991-11eb-9867-a0481ca055a9 + request-id: ef9a3a6d-afc7-11eb-9110-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search323b20b9.search.windows.net/indexers?api-version=2020-06-30 + url: https://search323b20b9.search.windows.net/indexers?api-version=2020-06-30-Preview - request: body: '{"name": "sample-indexer", "description": "updated", "dataSourceName": "sample-datasource", "targetIndexName": "hotels", "disabled": false}' @@ -117,42 +117,42 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search323b20b9.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + uri: https://search323b20b9.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns7v7d2b7O1MHo7lz/FVsZxVV814mbd3f7dF3mZ4+8fp - w/xdXjd3f7d82Rbt9UcjA5daXBDQ3/ejnXcHTx/uPnly/9NPP33y6f29T3/fj6jVMlvk9HWTLVZl - vq1g6PNZ3kzrYtUW1ZK+Xq8IVj7D5wTzdbWup/mL4E183vDn1Kh5W5Rlk7fSZLkuy9FHbVZf5O0Z - OpCPP5pXbV421HxWNNmkJPCPzjN6jd6fzvPZuqRG8u4qq+mVNq8b88l5kZezL7LVqlhe0Iff+/7o - o2rdrtbts/4X+XJaX/NIfq/8WgD8kv8HeHIf73cBAAA= + w/xdXjd3f7d82Rbt9UcjA5daXBDQ3/ejnXcHTx/u7p4+ebr/9Pjgwem93/cjarXMFjl93WSLVZlv + Kxj6fJY307pYtUW1pK/XK4KVz/A5wXxdretp/iJ4E583/Dk1at4WZdnkrTRZrsty9FGb1Rd5e4YO + 5OOP5lWblw01nxVNNikJ/KPzjF6j96fzfLYuqZG8u8pqeqXN68Z8cl7k5eyLbLUqlhf04fe+P/qo + Wrerdfus/8U0I3DmxXw5ra95WL9Xfi0f/pL/B1pLZ92EAQAA headers: cache-control: no-cache content-encoding: gzip - content-length: '374' + content-length: '378' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:33:36 GMT - elapsed-time: '323' - etag: W/"0x8D91BB5666B6526" + date: Sat, 08 May 2021 06:38:03 GMT + elapsed-time: '247' + etag: W/"0x8D911EBD4DA87E3" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 81be54c4-b991-11eb-9044-a0481ca055a9 + request-id: efff6caa-afc7-11eb-b500-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search323b20b9.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + url: https://search323b20b9.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview - request: body: '{"name": "sample-indexer", "description": "updated", "dataSourceName": "sample-datasource", "targetIndexName": "hotels", "disabled": false, "@odata.etag": - "\"0x8D91BB5661790D8\""}' + "\"0x8D911EBD491B1DB\""}' headers: Accept: - application/json;odata.metadata=minimal @@ -161,13 +161,13 @@ interactions: Content-Type: - application/json If-Match: - - '"0x8D91BB5661790D8"' + - '"0x8D911EBD491B1DB"' Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search323b20b9.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + uri: https://search323b20b9.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview response: body: string: '{"error":{"code":"","message":"The precondition given in one of the @@ -178,16 +178,16 @@ interactions: content-language: en content-length: '160' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:33:36 GMT - elapsed-time: '5' + date: Sat, 08 May 2021 06:38:03 GMT + elapsed-time: '6' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 81fbcf15-b991-11eb-b845-a0481ca055a9 + request-id: f02fb44a-afc7-11eb-8b8e-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 412 message: Precondition Failed - url: https://search323b20b9.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + url: https://search323b20b9.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_delete_indexer.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_delete_indexer.yaml index 0c161f88a779..1e1254891dad 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_delete_indexer.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_delete_indexer.yaml @@ -10,30 +10,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searcha79d175c.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searcha79d175c.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searcha79d175c.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB57087DF63\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searcha79d175c.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EBDD309CF3\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '391' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:33:53 GMT - elapsed-time: '47' - etag: W/"0x8D91BB57087DF63" + date: Sat, 08 May 2021 06:38:17 GMT + elapsed-time: '58' + etag: W/"0x8D911EBDD309CF3" expires: '-1' - location: https://searcha79d175c.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + location: https://searcha79d175c.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 8bf02914-b991-11eb-8cf9-a0481ca055a9 + request-id: f8566989-afc7-11eb-88f6-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searcha79d175c.search.windows.net/datasources?api-version=2020-06-30 + url: https://searcha79d175c.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: '{"name": "hotels", "fields": [{"name": "hotelId", "type": "Edm.String", "key": true, "retrievable": true, "searchable": false}]}' @@ -45,30 +45,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searcha79d175c.search.windows.net/indexes?api-version=2020-06-30 + uri: https://searcha79d175c.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searcha79d175c.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB5716212AE\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://searcha79d175c.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911EBDD9E66D2\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: no-cache - content-length: '629' + content-length: '664' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:33:55 GMT - elapsed-time: '1148' - etag: W/"0x8D91BB5716212AE" + date: Sat, 08 May 2021 06:38:18 GMT + elapsed-time: '483' + etag: W/"0x8D911EBDD9E66D2" expires: '-1' - location: https://searcha79d175c.search.windows.net/indexes('hotels')?api-version=2020-06-30 + location: https://searcha79d175c.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 8c1934ed-b991-11eb-85ab-a0481ca055a9 + request-id: f8883204-afc7-11eb-8f01-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searcha79d175c.search.windows.net/indexes?api-version=2020-06-30 + url: https://searcha79d175c.search.windows.net/indexes?api-version=2020-06-30-Preview - request: body: '{"name": "sample-indexer", "dataSourceName": "sample-datasource", "targetIndexName": "hotels", "disabled": false}' @@ -80,100 +80,100 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searcha79d175c.search.windows.net/indexers?api-version=2020-06-30 + uri: https://searcha79d175c.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searcha79d175c.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB57B27D210\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://searcha79d175c.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911EBDE02920A\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: no-cache - content-length: '370' + content-length: '383' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:34:12 GMT - elapsed-time: '16484' - etag: W/"0x8D91BB57B27D210" + date: Sat, 08 May 2021 06:38:18 GMT + elapsed-time: '481' + etag: W/"0x8D911EBDE02920A" expires: '-1' - location: https://searcha79d175c.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + location: https://searcha79d175c.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 8cf3b20b-b991-11eb-a7ed-a0481ca055a9 + request-id: f8fc48fb-afc7-11eb-90e3-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searcha79d175c.search.windows.net/indexers?api-version=2020-06-30 + url: https://searcha79d175c.search.windows.net/indexers?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searcha79d175c.search.windows.net/indexers?api-version=2020-06-30 + uri: https://searcha79d175c.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns6zBw9nuw/uT8fy5/iqWM6qq2a8zNu7v9sibzO8/eP0 - Yf4ur5uPRh9dZuU6/+jR9yxkanNBYH/fj3beHTx9uPvkyf0HT/YePN3b3fl9P6L2y2xBzT9qssWq - zLcVEH0+y5tpXazaolp+9Gi5Lkv6iMC9rtb1NH8RvITPG/6c3mveFmXZ5K00kRfbrL7I2zPAlo8/ - mldtXgLdWdFkkzKfffToPKPX6P3pPJ+tS2ok766yml5pcxqcfnJe5OXsi2y1KpYX9OH3vj/6qFq3 - q3X7rP9FvpzW1zyI3yu/FgC/5Pu/5P8BZJuWp3YBAAA= + Yf4ur5uPRh9dZuU6/+jR9yxkanNBYH/fj3beHTx9uLt7+uTp6c7ew72d49/3I2q/zBbU/KMmW6zK + fFsB0eezvJnWxaotquVHj5brsqSPCNzral1P8xfBS/i84c/pveZtUZZN3koTebHN6ou8PQNs+fij + edXmJdCdFU02KfPZR4/OM3qN3p/O89m6pEby7iqr6ZU2p8HpJ+dFXs6+yFarYnlBH37v+6OPqnW7 + WrfP+l9MMwJnXsyX0/qaR/R75dfy4S/5/i/5fwCaQOfKgwEAAA== headers: cache-control: no-cache content-encoding: gzip - content-length: '374' + content-length: '379' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:34:12 GMT - elapsed-time: '26' + date: Sat, 08 May 2021 06:38:18 GMT + elapsed-time: '17' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 96e0d16a-b991-11eb-af67-a0481ca055a9 + request-id: f96dd342-afc7-11eb-998c-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searcha79d175c.search.windows.net/indexers?api-version=2020-06-30 + url: https://searcha79d175c.search.windows.net/indexers?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://searcha79d175c.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + uri: https://searcha79d175c.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache - date: Thu, 20 May 2021 17:34:12 GMT - elapsed-time: '38' + date: Sat, 08 May 2021 06:38:18 GMT + elapsed-time: '60' expires: '-1' pragma: no-cache - request-id: 96f3464c-b991-11eb-b33b-a0481ca055a9 + request-id: f97c532d-afc7-11eb-8913-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 204 message: No Content - url: https://searcha79d175c.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + url: https://searcha79d175c.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searcha79d175c.search.windows.net/indexers?api-version=2020-06-30 + uri: https://searcha79d175c.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: string: !!binary | @@ -186,17 +186,17 @@ interactions: content-encoding: gzip content-length: '200' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:34:12 GMT - elapsed-time: '6' + date: Sat, 08 May 2021 06:38:18 GMT + elapsed-time: '13' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 9700c13f-b991-11eb-a51b-a0481ca055a9 + request-id: f990e689-afc7-11eb-be01-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searcha79d175c.search.windows.net/indexers?api-version=2020-06-30 + url: https://searcha79d175c.search.windows.net/indexers?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_delete_indexer_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_delete_indexer_if_unchanged.yaml index 32572b03e69f..34d6a820c40c 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_delete_indexer_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_delete_indexer_if_unchanged.yaml @@ -10,30 +10,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchfbe11c96.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searchfbe11c96.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchfbe11c96.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB585FC99DE\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchfbe11c96.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EBE669C172\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '391' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:34:30 GMT - elapsed-time: '48' - etag: W/"0x8D91BB585FC99DE" + date: Sat, 08 May 2021 06:38:33 GMT + elapsed-time: '59' + etag: W/"0x8D911EBE669C172" expires: '-1' - location: https://searchfbe11c96.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + location: https://searchfbe11c96.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: a16d29f4-b991-11eb-b872-a0481ca055a9 + request-id: 018dfec1-afc8-11eb-9ce1-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searchfbe11c96.search.windows.net/datasources?api-version=2020-06-30 + url: https://searchfbe11c96.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: '{"name": "hotels", "fields": [{"name": "hotelId", "type": "Edm.String", "key": true, "retrievable": true, "searchable": false}]}' @@ -45,30 +45,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchfbe11c96.search.windows.net/indexes?api-version=2020-06-30 + uri: https://searchfbe11c96.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchfbe11c96.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB586C2300F\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://searchfbe11c96.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911EBE71589F9\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: no-cache - content-length: '629' + content-length: '664' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:34:30 GMT - elapsed-time: '1132' - etag: W/"0x8D91BB586C2300F" + date: Sat, 08 May 2021 06:38:34 GMT + elapsed-time: '842' + etag: W/"0x8D911EBE71589F9" expires: '-1' - location: https://searchfbe11c96.search.windows.net/indexes('hotels')?api-version=2020-06-30 + location: https://searchfbe11c96.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: a18df864-b991-11eb-8524-a0481ca055a9 + request-id: 01c17fa8-afc8-11eb-a0b7-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searchfbe11c96.search.windows.net/indexes?api-version=2020-06-30 + url: https://searchfbe11c96.search.windows.net/indexes?api-version=2020-06-30-Preview - request: body: '{"name": "sample-indexer", "dataSourceName": "sample-datasource", "targetIndexName": "hotels", "disabled": false}' @@ -80,30 +80,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchfbe11c96.search.windows.net/indexers?api-version=2020-06-30 + uri: https://searchfbe11c96.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchfbe11c96.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB587C6D64F\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://searchfbe11c96.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911EBE769D3CA\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: no-cache - content-length: '370' + content-length: '383' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:34:33 GMT - elapsed-time: '1656' - etag: W/"0x8D91BB587C6D64F" + date: Sat, 08 May 2021 06:38:34 GMT + elapsed-time: '420' + etag: W/"0x8D911EBE769D3CA" expires: '-1' - location: https://searchfbe11c96.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + location: https://searchfbe11c96.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: a253714d-b991-11eb-8329-a0481ca055a9 + request-id: 026d703e-afc8-11eb-bef7-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searchfbe11c96.search.windows.net/indexers?api-version=2020-06-30 + url: https://searchfbe11c96.search.windows.net/indexers?api-version=2020-06-30-Preview - request: body: '{"name": "sample-indexer", "description": "updated", "dataSourceName": "sample-datasource", "targetIndexName": "hotels", "disabled": false}' @@ -117,49 +117,49 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://searchfbe11c96.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + uri: https://searchfbe11c96.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns7PJ/nu7vThp2P5c3xVLGfVVTNe5u3d322Rtxne/nH6 - MH+X183d3y1ftkV7/dHIwKUWFwT09/1o593B04e7T57cPzjY3TndPz34fT+iVstskdPXTbZYlfm2 - gqHPZ3kzrYtVW1RL+nq9Ilj5DJ8TzNfVup7mL4I38XnDn1Oj5m1Rlk3eSpPluixHH7VZfZG3Z+hA - Pv5oXrV52VDzWdFkk5LAPzrP6DV6fzrPZ+uSGsm7q6ymV9q8bswn50Vezr7IVqtieUEffu/7o4+q - dbtat8/6X+TLaX3NI/m98msB8Ev+H9C9hah3AQAA + MH+X183d3y1ftkV7/dHIwKUWFwT09/1o593B04e7u6dPTh88+fTZzv2nv+9H1GqZLXL6uskWqzLf + VjD0+SxvpnWxaotqSV+vVwQrn+Fzgvm6WtfT/EXwJj5v+HNq1LwtyrLJW2myXJfl6KM2qy/y9gwd + yMcfzas2LxtqPiuabFIS+EfnGb1G70/n+WxdUiN5d5XV9Eqb14355LzIy9kX2WpVLC/ow+99f/RR + tW5X6/ZZ/4tpRuDMi/lyWl/zsH6v/Fo+/CX/D7QzzIqEAQAA headers: cache-control: no-cache content-encoding: gzip - content-length: '372' + content-length: '378' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:34:33 GMT - elapsed-time: '283' - etag: W/"0x8D91BB58810E4E8" + date: Sat, 08 May 2021 06:38:34 GMT + elapsed-time: '267' + etag: W/"0x8D911EBE7B6F05D" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: a3713ca7-b991-11eb-8166-a0481ca055a9 + request-id: 02d60a12-afc8-11eb-9384-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searchfbe11c96.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + url: https://searchfbe11c96.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal If-Match: - - '"0x8D91BB587C6D64F"' + - '"0x8D911EBE769D3CA"' User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://searchfbe11c96.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + uri: https://searchfbe11c96.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview response: body: string: '{"error":{"code":"","message":"The precondition given in one of the @@ -170,16 +170,16 @@ interactions: content-language: en content-length: '160' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:34:33 GMT - elapsed-time: '6' + date: Sat, 08 May 2021 06:38:34 GMT + elapsed-time: '5' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: a3a2d408-b991-11eb-845d-a0481ca055a9 + request-id: 030b0303-afc8-11eb-889e-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 412 message: Precondition Failed - url: https://searchfbe11c96.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + url: https://searchfbe11c96.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_get_indexer.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_get_indexer.yaml index 988ce058b569..f4112757f674 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_get_indexer.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_get_indexer.yaml @@ -10,30 +10,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search632a1629.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search632a1629.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search632a1629.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB592821E1F\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search632a1629.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EBF0F25F03\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '391' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:34:50 GMT - elapsed-time: '34' - etag: W/"0x8D91BB592821E1F" + date: Sat, 08 May 2021 06:38:50 GMT + elapsed-time: '67' + etag: W/"0x8D911EBF0F25F03" expires: '-1' - location: https://search632a1629.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + location: https://search632a1629.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: ade686a6-b991-11eb-9184-a0481ca055a9 + request-id: 0c170fd6-afc8-11eb-811d-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search632a1629.search.windows.net/datasources?api-version=2020-06-30 + url: https://search632a1629.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: '{"name": "hotels", "fields": [{"name": "hotelId", "type": "Edm.String", "key": true, "retrievable": true, "searchable": false}]}' @@ -45,30 +45,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search632a1629.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search632a1629.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search632a1629.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB5935300F2\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://search632a1629.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911EBF194D6FC\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: no-cache - content-length: '629' + content-length: '664' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:34:52 GMT - elapsed-time: '1133' - etag: W/"0x8D91BB5935300F2" + date: Sat, 08 May 2021 06:38:51 GMT + elapsed-time: '816' + etag: W/"0x8D911EBF194D6FC" expires: '-1' - location: https://search632a1629.search.windows.net/indexes('hotels')?api-version=2020-06-30 + location: https://search632a1629.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: ae1314de-b991-11eb-b1e3-a0481ca055a9 + request-id: 0c4abf7b-afc8-11eb-b8c9-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search632a1629.search.windows.net/indexes?api-version=2020-06-30 + url: https://search632a1629.search.windows.net/indexes?api-version=2020-06-30-Preview - request: body: '{"name": "sample-indexer", "dataSourceName": "sample-datasource", "targetIndexName": "hotels", "disabled": false}' @@ -80,66 +80,66 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search632a1629.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search632a1629.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search632a1629.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB59399DAB8\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://search632a1629.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911EBF1E8AB8C\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: no-cache - content-length: '370' + content-length: '383' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:34:52 GMT - elapsed-time: '420' - etag: W/"0x8D91BB59399DAB8" + date: Sat, 08 May 2021 06:38:52 GMT + elapsed-time: '435' + etag: W/"0x8D911EBF1E8AB8C" expires: '-1' - location: https://search632a1629.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + location: https://search632a1629.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: aee4207a-b991-11eb-a4c7-a0481ca055a9 + request-id: 0cecf886-afc8-11eb-b18d-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search632a1629.search.windows.net/indexers?api-version=2020-06-30 + url: https://search632a1629.search.windows.net/indexers?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search632a1629.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + uri: https://search632a1629.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4/vbeX7X6693Asf46viuWsumrGy7y9+7st8jbD2z9O - H+bv8rq5+7vly7Zorz8aGbjU4oKA/r4f7bw7ePpw98mT+w/vPXz49PjJwe/7EbVaZoucvm6yxarM - txUMfT7Lm2ldrNqiWn70aLkuS/qIwL2u1vU0fxG8hM8b/pzea94WZdnkrTSRF9usvsjbM8CWjz+a - V21eNtR8VjTZpMxnHz06z+g1en86z2frkhrJu6usplfavG7MJ+dFXs6+yFarYnlBH37v+6OPqnW7 - WrfP+l/ky2l9zYP4vfJrAfBL/h/DePA/cgEAAA== + H+bv8rq5+7vly7Zorz8aGbjU4oKA/r4f7bw7ePpwd/f0ybPd04PjJwcnv+9H1GqZLXL6uskWqzLf + VjD0+SxvpnWxaotq+dGj5bos6SMC97pa19P8RfASPm/4c3qveVuUZZO30kRebLP6Im/PAFs+/mhe + tXnZUPNZ0WSTMp999Og8o9fo/ek8n61LaiTvrrKaXmnzujGfnBd5OfsiW62K5QV9+L3vjz6q1u1q + 3T7rfzHNCJx5MV9O62se0e+VX8uHv+T/AUyGuml/AQAA headers: cache-control: no-cache content-encoding: gzip - content-length: '370' + content-length: '375' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:34:52 GMT - elapsed-time: '10' - etag: W/"0x8D91BB59399DAB8" + date: Sat, 08 May 2021 06:38:52 GMT + elapsed-time: '13' + etag: W/"0x8D911EBF1E8AB8C" expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: af412df5-b991-11eb-ac6d-a0481ca055a9 + request-id: 0d56d48f-afc8-11eb-be2d-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search632a1629.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + url: https://search632a1629.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_get_indexer_status.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_get_indexer_status.yaml index ec9f1e413e41..0c2be5d0678c 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_get_indexer_status.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_get_indexer_status.yaml @@ -10,30 +10,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searcha24192c.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searcha24192c.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searcha24192c.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB59EF74BE4\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searcha24192c.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EBFC2CB9CC\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '390' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:35:11 GMT - elapsed-time: '59' - etag: W/"0x8D91BB59EF74BE4" + date: Sat, 08 May 2021 06:39:09 GMT + elapsed-time: '67' + etag: W/"0x8D911EBFC2CB9CC" expires: '-1' - location: https://searcha24192c.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + location: https://searcha24192c.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: ba4b6b24-b991-11eb-97c7-a0481ca055a9 + request-id: 174f734a-afc8-11eb-a2ab-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searcha24192c.search.windows.net/datasources?api-version=2020-06-30 + url: https://searcha24192c.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: '{"name": "hotels", "fields": [{"name": "hotelId", "type": "Edm.String", "key": true, "retrievable": true, "searchable": false}]}' @@ -45,30 +45,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searcha24192c.search.windows.net/indexes?api-version=2020-06-30 + uri: https://searcha24192c.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searcha24192c.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB59FCCEA97\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://searcha24192c.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911EBFCD37854\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: no-cache - content-length: '628' + content-length: '663' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:35:13 GMT - elapsed-time: '1152' - etag: W/"0x8D91BB59FCCEA97" + date: Sat, 08 May 2021 06:39:10 GMT + elapsed-time: '825' + etag: W/"0x8D911EBFCD37854" expires: '-1' - location: https://searcha24192c.search.windows.net/indexes('hotels')?api-version=2020-06-30 + location: https://searcha24192c.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: ba87ce4d-b991-11eb-a5ac-a0481ca055a9 + request-id: 17845b37-afc8-11eb-8673-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searcha24192c.search.windows.net/indexes?api-version=2020-06-30 + url: https://searcha24192c.search.windows.net/indexes?api-version=2020-06-30-Preview - request: body: '{"name": "sample-indexer", "dataSourceName": "sample-datasource", "targetIndexName": "hotels", "disabled": false}' @@ -80,65 +80,66 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searcha24192c.search.windows.net/indexers?api-version=2020-06-30 + uri: https://searcha24192c.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searcha24192c.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB5A0C2E839\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://searcha24192c.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911EBFD26625A\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: no-cache - content-length: '369' + content-length: '382' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:35:15 GMT - elapsed-time: '1397' - etag: W/"0x8D91BB5A0C2E839" + date: Sat, 08 May 2021 06:39:11 GMT + elapsed-time: '428' + etag: W/"0x8D911EBFD26625A" expires: '-1' - location: https://searcha24192c.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + location: https://searcha24192c.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: bb5e58ea-b991-11eb-b12a-a0481ca055a9 + request-id: 182bd9c6-afc8-11eb-b3b9-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://searcha24192c.search.windows.net/indexers?api-version=2020-06-30 + url: https://searcha24192c.search.windows.net/indexers?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searcha24192c.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30 + uri: https://searcha24192c.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns6zvf3dh3vTsfw1viqWs+qqGS/z9u7vtsjbDC//+BfF - tK6a6rwdH/9gXefj19L4J/d29nZ+/51Pf/97O+Oz5Sx/l9en7/Lpui2q5dnyvPpo9NEyW+TUZ5Mt - VmW+TcDRiD5v2qxdN/RNvV4ui+UFfVRmTfsqb9YlIblcl+XoI2orwL5dNG1VX3/06Hvfp3bFomjp - 1V/80SJ792q9fFNwFy/f7LwmKPTZ02q6XuTL9vRdW2dTvP+6+AE12Qm+PQFB6Mc8Q6O8bt5U+gK1 - /CW/5P8Bi1rMDzkBAAA= + tK6a6rwdH/9gXefj19L4J/d29nZ+/51Pf/97O7//yzq/LPKr8dlylr/L69N3+XTdFtXybHlefTT6 + aJktcuq7yRarMt+mTtCIPm/arF039E29Xi6L5QV9VGZN+ypv1iUhu1yX5egjaivAvl00bVVff/To + e9+ndsWiaOnVX/zRInv3ar18U3AXL9/svCYo9NnTarpe5Mv29F1bZ1O8/7r4ATXZCb49AWHoxzxD + o7xu3lT6ArX8JaOPpuu6pu9fE6L0LnVWzejnRzwEQvi4LAlSQz1m8tvZsmiLrHxDEN7S9/qeDESb + PCuWAw3qvMlbNNkExTa6GQ6P8PfKr4lM3/v+L/kl/w+5iINyDgIAAA== headers: cache-control: no-cache content-encoding: gzip - content-length: '356' + content-length: '439' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:35:15 GMT - elapsed-time: '15' + date: Sat, 08 May 2021 06:39:11 GMT + elapsed-time: '20' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: bc687697-b991-11eb-9d67-a0481ca055a9 + request-id: 1893a22b-afc8-11eb-9fa4-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://searcha24192c.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30 + url: https://searcha24192c.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_list_indexer.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_list_indexer.yaml index c7cfda9603c4..5eb62ebfb900 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_list_indexer.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_list_indexer.yaml @@ -10,30 +10,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search7a7716a5.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search7a7716a5.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search7a7716a5.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB5AD654872\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search7a7716a5.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EC074A8681\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '391' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:35:35 GMT - elapsed-time: '52' - etag: W/"0x8D91BB5AD654872" + date: Sat, 08 May 2021 06:39:28 GMT + elapsed-time: '162' + etag: W/"0x8D911EC074A8681" expires: '-1' - location: https://search7a7716a5.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + location: https://search7a7716a5.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: c8d4476c-b991-11eb-a33c-a0481ca055a9 + request-id: 225ddc8b-afc8-11eb-867f-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search7a7716a5.search.windows.net/datasources?api-version=2020-06-30 + url: https://search7a7716a5.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: '{"name": "hotels", "fields": [{"name": "hotelId", "type": "Edm.String", "key": true, "retrievable": true, "searchable": false}]}' @@ -45,30 +45,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search7a7716a5.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search7a7716a5.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search7a7716a5.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB5AE2DC554\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://search7a7716a5.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911EC07ED73CC\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: no-cache - content-length: '629' + content-length: '664' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:35:37 GMT - elapsed-time: '1129' - etag: W/"0x8D91BB5AE2DC554" + date: Sat, 08 May 2021 06:39:29 GMT + elapsed-time: '811' + etag: W/"0x8D911EC07ED73CC" expires: '-1' - location: https://search7a7716a5.search.windows.net/indexes('hotels')?api-version=2020-06-30 + location: https://search7a7716a5.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: c8f7cee7-b991-11eb-99c1-a0481ca055a9 + request-id: 22a27673-afc8-11eb-80b4-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search7a7716a5.search.windows.net/indexes?api-version=2020-06-30 + url: https://search7a7716a5.search.windows.net/indexes?api-version=2020-06-30-Preview - request: body: '{"name": "another-datasource", "type": "azureblob", "credentials": {"connectionString": "connection_string"}, "container": {"name": "searchcontainer"}}' @@ -80,30 +80,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search7a7716a5.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search7a7716a5.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search7a7716a5.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB5AE7BF350\"","name":"another-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search7a7716a5.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EC081F8966\"","name":"another-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '392' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:35:38 GMT - elapsed-time: '41' - etag: W/"0x8D91BB5AE7BF350" + date: Sat, 08 May 2021 06:39:29 GMT + elapsed-time: '44' + etag: W/"0x8D911EC081F8966" expires: '-1' - location: https://search7a7716a5.search.windows.net/datasources('another-datasource')?api-version=2020-06-30 + location: https://search7a7716a5.search.windows.net/datasources('another-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: c9bf0464-b991-11eb-b7a2-a0481ca055a9 + request-id: 2345c107-afc8-11eb-a954-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search7a7716a5.search.windows.net/datasources?api-version=2020-06-30 + url: https://search7a7716a5.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: '{"name": "another-index", "fields": [{"name": "hotelId", "type": "Edm.String", "key": true, "retrievable": true, "searchable": false}]}' @@ -115,30 +115,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search7a7716a5.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search7a7716a5.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search7a7716a5.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB5AF5EB39E\"","name":"another-index","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://search7a7716a5.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911EC088B08EA\"","name":"another-index","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: no-cache - content-length: '636' + content-length: '671' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:35:39 GMT - elapsed-time: '1317' - etag: W/"0x8D91BB5AF5EB39E" + date: Sat, 08 May 2021 06:39:30 GMT + elapsed-time: '464' + etag: W/"0x8D911EC088B08EA" expires: '-1' - location: https://search7a7716a5.search.windows.net/indexes('another-index')?api-version=2020-06-30 + location: https://search7a7716a5.search.windows.net/indexes('another-index')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: ca0cee12-b991-11eb-a338-a0481ca055a9 + request-id: 237605c1-afc8-11eb-9473-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search7a7716a5.search.windows.net/indexes?api-version=2020-06-30 + url: https://search7a7716a5.search.windows.net/indexes?api-version=2020-06-30-Preview - request: body: '{"name": "sample-indexer", "dataSourceName": "sample-datasource", "targetIndexName": "hotels", "disabled": false}' @@ -150,30 +150,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search7a7716a5.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search7a7716a5.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search7a7716a5.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB5AFCBE0CB\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://search7a7716a5.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911EC0975BAA0\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: no-cache - content-length: '370' + content-length: '383' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:35:39 GMT - elapsed-time: '639' - etag: W/"0x8D91BB5AFCBE0CB" + date: Sat, 08 May 2021 06:39:31 GMT + elapsed-time: '1386' + etag: W/"0x8D911EC0975BAA0" expires: '-1' - location: https://search7a7716a5.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + location: https://search7a7716a5.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: caf10c7a-b991-11eb-b4f0-a0481ca055a9 + request-id: 23e3503f-afc8-11eb-a28b-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search7a7716a5.search.windows.net/indexers?api-version=2020-06-30 + url: https://search7a7716a5.search.windows.net/indexers?api-version=2020-06-30-Preview - request: body: '{"name": "another-indexer", "dataSourceName": "another-datasource", "targetIndexName": "another-index", "disabled": false}' @@ -185,66 +185,66 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search7a7716a5.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search7a7716a5.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search7a7716a5.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB5B00D3B4C\"","name":"another-indexer","description":null,"dataSourceName":"another-datasource","skillsetName":null,"targetIndexName":"another-index","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://search7a7716a5.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911EC09BAE686\"","name":"another-indexer","description":null,"dataSourceName":"another-datasource","skillsetName":null,"targetIndexName":"another-index","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: no-cache - content-length: '379' + content-length: '392' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:35:40 GMT - elapsed-time: '368' - etag: W/"0x8D91BB5B00D3B4C" + date: Sat, 08 May 2021 06:39:31 GMT + elapsed-time: '410' + etag: W/"0x8D911EC09BAE686" expires: '-1' - location: https://search7a7716a5.search.windows.net/indexers('another-indexer')?api-version=2020-06-30 + location: https://search7a7716a5.search.windows.net/indexers('another-indexer')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: cb6f8b49-b991-11eb-9893-a0481ca055a9 + request-id: 24dfce56-afc8-11eb-a552-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search7a7716a5.search.windows.net/indexers?api-version=2020-06-30 + url: https://search7a7716a5.search.windows.net/indexers?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search7a7716a5.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search7a7716a5.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4fZA8e7H6a3R/Ln+OrYjmrrprxMm/v/m6LvM3w9o/T - h/m7vG4+Gn10mZXr/KNH37OQqc0Fgf19P9p5d/D04e6TJ/ef7Ow8vfdk/+T3/YjaL7MFNf8oW1bt - PK+3FRJ9McubaV2s2qJafvRouS5L+ojgva7W9TR/Eb6FLxr+gl5s3hZl2eSttJE326y+yNszAJeP - 7avcIb01K5psUuazjx6dZ/Q2gZnO89m6pLYCYpXV9Gab0yj1k/MiL2dfZKtVsbygD7/3/dFH1bpd - rdtn/S/y5bS+5sH8Xvm1APglow00On528uR05+SJT6MmW6zKXDC+NYn0JXz+nhSaV21eYkp/Dkjz - /V/y/wCJQz9vmgIAAA== + h/m7vG4+Gn10mZXr/KNH37OQqc0Fgf19P9p5d/D04e7u6cnOwyfHp58efPr7fkTtl9mCmn+ULat2 + ntfbCom+mOXNtC5WbVEtP3q0XJclfUTwXlfrepq/CN/CFw1/QS82b4uybPJW2sibbVZf5O0ZgMvH + 9lXukN6aFU02KfPZR4/OM3qbwEzn+WxdUlsBscpqerPNaZT6yXmRl7MvstWqWF7Qh9/7/uijat2u + 1u2z/hfTjMCZF/PltL7mkf1e+bV8+EtGGwn24P6T4+Mdn2BNtliVuaB/a3rpS/j8Pck1r9q8xPz+ + XNPp+7/k/wH3YrCqtAIAAA== headers: cache-control: no-cache content-encoding: gzip - content-length: '412' + content-length: '415' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:35:40 GMT - elapsed-time: '15' + date: Sat, 08 May 2021 06:39:31 GMT + elapsed-time: '23' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: cbafa192-b991-11eb-8378-a0481ca055a9 + request-id: 25299be2-afc8-11eb-86e0-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search7a7716a5.search.windows.net/indexers?api-version=2020-06-30 + url: https://search7a7716a5.search.windows.net/indexers?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_reset_indexer.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_reset_indexer.yaml index c9245d3ea322..2a9cfae1f0db 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_reset_indexer.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_reset_indexer.yaml @@ -10,30 +10,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search916a170c.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search916a170c.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search916a170c.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB913CAC4D4\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search916a170c.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EC138BABA3\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '391' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:59:55 GMT - elapsed-time: '35' - etag: W/"0x8D91BB913CAC4D4" + date: Sat, 08 May 2021 06:39:48 GMT + elapsed-time: '56' + etag: W/"0x8D911EC138BABA3" expires: '-1' - location: https://search916a170c.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + location: https://search916a170c.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 2f3ed221-b995-11eb-8e3c-a0481ca055a9 + request-id: 2eb54da6-afc8-11eb-b733-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search916a170c.search.windows.net/datasources?api-version=2020-06-30 + url: https://search916a170c.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: '{"name": "hotels", "fields": [{"name": "hotelId", "type": "Edm.String", "key": true, "retrievable": true, "searchable": false}]}' @@ -45,30 +45,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search916a170c.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search916a170c.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search916a170c.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB914908213\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://search916a170c.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911EC13F9EACB\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: no-cache - content-length: '629' + content-length: '664' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:59:57 GMT - elapsed-time: '1127' - etag: W/"0x8D91BB914908213" + date: Sat, 08 May 2021 06:39:49 GMT + elapsed-time: '447' + etag: W/"0x8D911EC13F9EACB" expires: '-1' - location: https://search916a170c.search.windows.net/indexes('hotels')?api-version=2020-06-30 + location: https://search916a170c.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 2f5d2943-b995-11eb-857f-a0481ca055a9 + request-id: 2ee3f675-afc8-11eb-8aae-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search916a170c.search.windows.net/indexes?api-version=2020-06-30 + url: https://search916a170c.search.windows.net/indexes?api-version=2020-06-30-Preview - request: body: '{"name": "sample-indexer", "dataSourceName": "sample-datasource", "targetIndexName": "hotels", "disabled": false}' @@ -80,129 +80,128 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search916a170c.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search916a170c.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search916a170c.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB91F8581D7\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://search916a170c.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911EC145DEEE8\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: no-cache - content-length: '370' + content-length: '383' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 18:00:15 GMT - elapsed-time: '18356' - etag: W/"0x8D91BB91F8581D7" + date: Sat, 08 May 2021 06:39:50 GMT + elapsed-time: '497' + etag: W/"0x8D911EC145DEEE8" expires: '-1' - location: https://search916a170c.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + location: https://search916a170c.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 3022baec-b995-11eb-9012-a0481ca055a9 + request-id: 2f51fd78-afc8-11eb-a6fa-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search916a170c.search.windows.net/indexers?api-version=2020-06-30 + url: https://search916a170c.search.windows.net/indexers?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search916a170c.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search916a170c.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4f7n6a7T7YmY7lz/FVsZxVV814mbd3f7dF3mZ4+8fp - w/xdXjcfjT66zMp1/tGj71nI1OaCwP6+H+28O3j6cPfJk4e7zw7uH+w+ffD7fkTtl9mCmn/UZItV - mW8rIPp8ljfTuli1RbX86NFyXZb0EYF7Xa3raf4ieAmfN/w5vde8LcqyyVtpIi+2WX2Rt2eALR9/ - NK/avAS6s6LJJmU+++jReUav0fvTeT5bl9RI3l1lNb3S5jQ4/eS8yMvZF9lqVSwv6MPvfX/0UbVu - V+v2Wf+LfDmtr3kQv1d+LQB+yfd/yf8DKbhvtnYBAAA= + w/xdXjcfjT66zMp1/tGj71nI1OaCwP6+H+28O3j6cHf39GR3//7T09PTg9/3I2q/zBbU/KMmW6zK + fFsB0eezvJnWxaotquVHj5brsqSPCNzral1P8xfBS/i84c/pveZtUZZN3koTebHN6ou8PQNs+fij + edXmJdCdFU02KfPZR4/OM3qN3p/O89m6pEby7iqr6ZU2p8HpJ+dFXs6+yFarYnlBH37v+6OPqnW7 + WrfP+l9MMwJnXsyX0/qaR/R75dfy4S/5/i/5fwAvVavegwEAAA== headers: cache-control: no-cache content-encoding: gzip - content-length: '374' + content-length: '379' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 18:00:15 GMT - elapsed-time: '19' + date: Sat, 08 May 2021 06:39:50 GMT + elapsed-time: '16' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 3b2c2aab-b995-11eb-bd1c-a0481ca055a9 + request-id: 2fc75b76-afc8-11eb-af26-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search916a170c.search.windows.net/indexers?api-version=2020-06-30 + url: https://search916a170c.search.windows.net/indexers?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search916a170c.search.windows.net/indexers('sample-indexer')/search.reset?api-version=2020-06-30 + uri: https://search916a170c.search.windows.net/indexers('sample-indexer')/search.reset?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache - date: Thu, 20 May 2021 18:00:16 GMT - elapsed-time: '341' + date: Sat, 08 May 2021 06:39:50 GMT + elapsed-time: '280' expires: '-1' pragma: no-cache - request-id: 3b3663e8-b995-11eb-a020-a0481ca055a9 + request-id: 2fd46437-afc8-11eb-b146-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 204 message: No Content - url: https://search916a170c.search.windows.net/indexers('sample-indexer')/search.reset?api-version=2020-06-30 + url: https://search916a170c.search.windows.net/indexers('sample-indexer')/search.reset?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search916a170c.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30 + uri: https://search916a170c.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4f7n6a7T7YmY7lz/FVsZxVV814mbd3f7dF3mZ4+8e/ - KKZ11VTn7fj4B+s6H7+Wxj+5t7O38/vvfPr739sZny1n+bu8Pn2XT9dtUS3PlufVR6OPltkip06b - bLEq820Cjkb0edNm7bqhb+r1clksL+ijMmvaV3mzLgnLX+waFMuXdXVR501DbfK6ruov6PfsgsAu - 12XJoOr2TcH9EEK72zv3t/d23uwePNrZebT76fjhvQc/hVeXM2kkbxVtvmgI8pSA5bOPHu3oR8+y - ojR/L4u2yMo3dTZ9Syi+Jozs6+fFcuAbRpEQ/973Rx9dZTUGp38ROetiSn+g4S+hloZW3y6atqqv - qZU3bhpx3gJvwHvPIe/v7gZD3tSIR/1zSQj6oCwWRUt//+KPFtm7V+ulYv3yzd4XhCF99rSarhf5 - sj1911JXoNnr4gfUZPfTBw8e7O1+GjQ6Aa/Tj3mGtnndvKn0vY8e3dt78OnBL/kl/w/2+iupGAMA - AA== + KKZ11VTn7fj4B+s6H7+Wxj+5t7O38/vvfPr739v5/V/W+WWRX43PlrP8XV6fvsun67aolmfL8+qj + 0UfLbJFT5022WJX5NnWCRvR502btuqFv6vVyWSwv6KMya9pXebMuCdtf7DXIm7ylr+WDp4RaUX70 + aLkuy9FHeV1X9Rd502QX1It8Ru3q9k3B3RKeu9s797d3Dt7sfPro3sNH93fG+5/+FEHLl7Mb2xRt + vmhe1tWUOshnHz3a0Y+eEQbm72XRFln5ps6mb2kUrwlHgimInBfLgW8W1Yx+p5eJGvTdcVk+raYN + 9cjjoUF/7/ujj66yGoTRv2hK6oLaMIRfQi0Nnb9dNG1VX1OrH9FsI83og7JYFK3+Pfpouq7rfNlq + L794uIdMfjvbgLc2eTaIPs8ImmyCYhvdDGe9INR/r/yaRvO97/+SX/L/AKfLPRLwAwAA headers: cache-control: no-cache content-encoding: gzip - content-length: '514' + content-length: '507' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 18:00:16 GMT - elapsed-time: '22' + date: Sat, 08 May 2021 06:39:50 GMT + elapsed-time: '13' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: 3b7568d0-b995-11eb-809c-a0481ca055a9 + request-id: 300aa369-afc8-11eb-acdc-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search916a170c.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30 + url: https://search916a170c.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_run_indexer.yaml b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_run_indexer.yaml index c9134a459015..4bab9048e401 100644 --- a/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_run_indexer.yaml +++ b/sdk/search/azure-search-documents/tests/async_tests/recordings/test_search_indexer_client_live_async.test_run_indexer.yaml @@ -10,30 +10,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search640d163e.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search640d163e.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search640d163e.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB5C8BE5411\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search640d163e.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911EC1EBAB986\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: no-cache content-length: '391' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:36:21 GMT - elapsed-time: '37' - etag: W/"0x8D91BB5C8BE5411" + date: Sat, 08 May 2021 06:40:07 GMT + elapsed-time: '60' + etag: W/"0x8D911EC1EBAB986" expires: '-1' - location: https://search640d163e.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + location: https://search640d163e.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: e42c2a42-b991-11eb-9c06-a0481ca055a9 + request-id: 39e3d3d1-afc8-11eb-b0ba-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search640d163e.search.windows.net/datasources?api-version=2020-06-30 + url: https://search640d163e.search.windows.net/datasources?api-version=2020-06-30-Preview - request: body: '{"name": "hotels", "fields": [{"name": "hotelId", "type": "Edm.String", "key": true, "retrievable": true, "searchable": false}]}' @@ -45,30 +45,30 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search640d163e.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search640d163e.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search640d163e.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB5C9F844A7\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://search640d163e.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911EC1F2E50DB\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: no-cache - content-length: '629' + content-length: '664' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:36:23 GMT - elapsed-time: '1882' - etag: W/"0x8D91BB5C9F844A7" + date: Sat, 08 May 2021 06:40:08 GMT + elapsed-time: '474' + etag: W/"0x8D911EC1F2E50DB" expires: '-1' - location: https://search640d163e.search.windows.net/indexes('hotels')?api-version=2020-06-30 + location: https://search640d163e.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: e44f42ac-b991-11eb-bb95-a0481ca055a9 + request-id: 3a12fb81-afc8-11eb-b866-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search640d163e.search.windows.net/indexes?api-version=2020-06-30 + url: https://search640d163e.search.windows.net/indexes?api-version=2020-06-30-Preview - request: body: '{"name": "sample-indexer", "dataSourceName": "sample-datasource", "targetIndexName": "hotels", "disabled": false}' @@ -80,127 +80,128 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search640d163e.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search640d163e.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search640d163e.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB5CA42A160\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://search640d163e.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911EC20319819\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: no-cache - content-length: '370' + content-length: '383' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:36:24 GMT - elapsed-time: '452' - etag: W/"0x8D91BB5CA42A160" + date: Sat, 08 May 2021 06:40:10 GMT + elapsed-time: '1561' + etag: W/"0x8D911EC20319819" expires: '-1' - location: https://search640d163e.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + location: https://search640d163e.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: e58aa7e7-b991-11eb-9999-a0481ca055a9 + request-id: 3a874585-afc8-11eb-baeb-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 201 message: Created - url: https://search640d163e.search.windows.net/indexers?api-version=2020-06-30 + url: https://search640d163e.search.windows.net/indexers?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search640d163e.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search640d163e.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4/3d+Z7X56Lx/Ln+OrYjmrrprxMm/v/m6LvM3w9o/T - h/m7vG4+Gn10mZXr/KNH37OQqc0Fgf19P9p5d/D04e6TJ/dPjvf3jnc/3fl9P6L2y2xBzT9qssWq - zLcVEH0+y5tpXazaolp+9Gi5Lkv6iMC9rtb1NH8RvITPG/6c3mveFmXZ5K00kRfbrL7I2zPAlo8/ - mldtXgLdWdFkkzKfffToPKPX6P3pPJ+tS2ok766yml5pcxqcfnJe5OXsi2y1KpYX9OH3vj/6qFq3 - q3X7rP9FvpzW1zyI3yu/FgC/5Pu/5P8BFQgeS3YBAAA= + h/m7vG4+Gn10mZXr/KNH37OQqc0Fgf19P9p5d/D04e7u6cnezr3dhwe7D3/fj6j9MltQ84+abLEq + 820FRJ/P8mZaF6u2qJYfPVquy5I+InCvq3U9zV8EL+Hzhj+n95q3RVk2eStN5MU2qy/y9gyw5eOP + 5lWbl0B3VjTZpMxnHz06z+g1en86z2frkhrJu6usplfanAann5wXeTn7IlutiuUFffi9748+qtbt + at0+638xzQiceTFfTutrHtHvlV/Lh7/k+7/k/wFdAPflgwEAAA== headers: cache-control: no-cache content-encoding: gzip - content-length: '374' + content-length: '379' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:36:24 GMT - elapsed-time: '14' + date: Sat, 08 May 2021 06:40:10 GMT + elapsed-time: '11' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: e5ec8e8b-b991-11eb-aea0-a0481ca055a9 + request-id: 3b9c3f34-afc8-11eb-9479-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search640d163e.search.windows.net/indexers?api-version=2020-06-30 + url: https://search640d163e.search.windows.net/indexers?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search640d163e.search.windows.net/indexers('sample-indexer')/search.run?api-version=2020-06-30 + uri: https://search640d163e.search.windows.net/indexers('sample-indexer')/search.run?api-version=2020-06-30-Preview response: body: string: '' headers: cache-control: no-cache content-length: '0' - date: Thu, 20 May 2021 17:36:24 GMT - elapsed-time: '54' + date: Sat, 08 May 2021 06:40:10 GMT + elapsed-time: '36' expires: '-1' pragma: no-cache - request-id: e5f58efa-b991-11eb-b17a-a0481ca055a9 + request-id: 3ba861e4-afc8-11eb-8c23-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains status: code: 202 message: Accepted - url: https://search640d163e.search.windows.net/indexers('sample-indexer')/search.run?api-version=2020-06-30 + url: https://search640d163e.search.windows.net/indexers('sample-indexer')/search.run?api-version=2020-06-30-Preview - request: body: null headers: Accept: - application/json;odata.metadata=minimal User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search640d163e.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30 + uri: https://search640d163e.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30-Preview response: body: string: !!binary | H4sIAAAAAAAEAO29B2AcSZYlJi9tynt/SvVK1+B0oQiAYBMk2JBAEOzBiM3mkuwdaUcjKasqgcpl VmVdZhZAzO2dvPfee++999577733ujudTif33/8/XGZkAWz2zkrayZ4hgKrIHz9+fB8/In7xR79n NcvabDytlm3+rv3o0Ufztl01j+7ebfKsns4/3d+Z7X56Lx/Ln+OrYjmrrprxMm/v/m6LvM3w9o9/ - UUzrqqnO2/HxD9Z1Pn4tjX9yb2dv5/ff+fT3v7czPlvO8nd5ffoun67bolqeLc+rj0YfLbNFTp02 - 2WJV5tsEHI3o86bN2nVD39Tr5bJYXtBHZda0r/JmXRKWy3VZjj6itgLs20XTVvX1R4++931qVyyK - ll79xR8tsnev1ss3BXfx8s3Oa4JCnz2tputFvmxP37V1NsX7r4sfUJOd4NsTUIR+zDM0yuvmTaUv - UMtf8kv+H8pC2k06AQAA + UUzrqqnO2/HxD9Z1Pn4tjX9yb2dv5/ff+fT3v7fz+7+s88sivxqfLWf5u7w+fZdP121RLc+W59VH + o4+W2SKnzptssSrzbeoEjejzps3adUPf1Ovlslhe0Edl1rSv8mZdErbLdVmOPqK2AuzbRdNW9fVH + j773fWpXLIqWXv3FHy2yd6/WyzcFd/Hyzc5rgkKfPa2m60W+bE/ftXU2xfuvix9Qk53g2xNQhn7M + MzTK6+ZNpS9Qy18y+mi6rmv6/jUhSu9SZ9WMfn7EQyCEj8uSIDXUYya/nS2LtsjKNwThLX2v78lA + tMmzYjnQoM6bvEWTTVBso5vh8Ah/r/yayPS97/+SX/L/AJhE4y4PAgAA headers: cache-control: no-cache content-encoding: gzip - content-length: '357' + content-length: '441' content-type: application/json; odata.metadata=minimal - date: Thu, 20 May 2021 17:36:24 GMT - elapsed-time: '16' + date: Sat, 08 May 2021 06:40:10 GMT + elapsed-time: '12' expires: '-1' odata-version: '4.0' pragma: no-cache preference-applied: odata.include-annotations="*" - request-id: e608ef25-b991-11eb-8a9b-a0481ca055a9 + request-id: 3bb7cf18-afc8-11eb-aa32-a0481ca055a9 strict-transport-security: max-age=15724800; includeSubDomains vary: Accept-Encoding status: code: 200 message: OK - url: https://search640d163e.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30 + url: https://search640d163e.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30-Preview version: 1 diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_basic_live.test_get_document.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_basic_live.test_get_document.yaml index 2043d6368552..1ba09d83f0eb 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_basic_live.test_get_document.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_basic_live.test_get_document.yaml @@ -9,9 +9,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('1')?api-version=2020-06-30 + uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('1')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"1","hotelName":"Fancy Stay","description":"Best hotel in @@ -31,9 +31,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:43:02 GMT + - Sat, 08 May 2021 06:01:54 GMT elapsed-time: - - '46' + - '180' expires: - '-1' odata-version: @@ -43,7 +43,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 7127d6e4-b98a-11eb-a7aa-a0481ca055a9 + - e3312f54-afc2-11eb-a7fd-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -61,9 +61,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('2')?api-version=2020-06-30 + uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('2')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"2","hotelName":"Roach Motel","description":"Cheapest hotel @@ -77,9 +77,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:43:02 GMT + - Sat, 08 May 2021 06:01:54 GMT elapsed-time: - - '6' + - '5' expires: - '-1' odata-version: @@ -89,7 +89,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 717a67a1-b98a-11eb-88ae-a0481ca055a9 + - e38be988-afc2-11eb-bda8-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -107,9 +107,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30 + uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"3","hotelName":"EconoStay","description":"Very popular @@ -122,9 +122,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:43:02 GMT + - Sat, 08 May 2021 06:01:54 GMT elapsed-time: - - '7' + - '3' expires: - '-1' odata-version: @@ -134,7 +134,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 718d7de2-b98a-11eb-9d96-a0481ca055a9 + - e3a10467-afc2-11eb-a5d1-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -152,9 +152,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"4","hotelName":"Express Rooms","description":"Pretty good @@ -167,9 +167,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:43:02 GMT + - Sat, 08 May 2021 06:01:54 GMT elapsed-time: - - '7' + - '4' expires: - '-1' odata-version: @@ -179,7 +179,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 719f3c49-b98a-11eb-a5fa-a0481ca055a9 + - e3b4e0b0-afc2-11eb-b576-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -197,9 +197,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('5')?api-version=2020-06-30 + uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('5')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"5","hotelName":"Comfy Place","description":"Another good @@ -212,9 +212,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:43:02 GMT + - Sat, 08 May 2021 06:01:54 GMT elapsed-time: - - '8' + - '5' expires: - '-1' odata-version: @@ -224,7 +224,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 71ad91cf-b98a-11eb-bfce-a0481ca055a9 + - e3cb60b7-afc2-11eb-8866-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -242,9 +242,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('6')?api-version=2020-06-30 + uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('6')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"6","hotelName":null,"description":"Surprisingly expensive. @@ -257,9 +257,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:43:02 GMT + - Sat, 08 May 2021 06:01:55 GMT elapsed-time: - - '8' + - '4' expires: - '-1' odata-version: @@ -269,7 +269,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 71c096b3-b98a-11eb-8eeb-a0481ca055a9 + - e3e1faf3-afc2-11eb-a7fa-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -287,9 +287,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('7')?api-version=2020-06-30 + uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('7')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"7","hotelName":"Modern Stay","description":"Modern architecture, @@ -303,7 +303,7 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:43:02 GMT + - Sat, 08 May 2021 06:01:55 GMT elapsed-time: - '4' expires: @@ -315,7 +315,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 71d48399-b98a-11eb-8260-a0481ca055a9 + - e3f8f906-afc2-11eb-89e8-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -333,9 +333,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('8')?api-version=2020-06-30 + uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('8')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"8","hotelName":null,"description":"Has some road noise @@ -351,9 +351,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:43:02 GMT + - Sat, 08 May 2021 06:01:55 GMT elapsed-time: - - '6' + - '4' expires: - '-1' odata-version: @@ -363,7 +363,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 71e6be47-b98a-11eb-80f4-a0481ca055a9 + - e40ed40b-afc2-11eb-9d88-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -381,9 +381,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('9')?api-version=2020-06-30 + uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('9')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"9","hotelName":"Secret Point Motel","description":"The @@ -413,9 +413,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:43:02 GMT + - Sat, 08 May 2021 06:01:55 GMT elapsed-time: - - '13' + - '8' expires: - '-1' odata-version: @@ -425,7 +425,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 71f981b2-b98a-11eb-ac4c-a0481ca055a9 + - e4220c84-afc2-11eb-885b-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -443,9 +443,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('10')?api-version=2020-06-30 + uri: https://searchcca2132f.search.windows.net/indexes('drgqefsg')/docs('10')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"10","hotelName":"Countryside Hotel","description":"Save @@ -471,9 +471,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:43:04 GMT + - Sat, 08 May 2021 06:01:55 GMT elapsed-time: - - '7' + - '6' expires: - '-1' odata-version: @@ -483,7 +483,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 7207fd6e-b98a-11eb-a17b-a0481ca055a9 + - e4387f72-afc2-11eb-9769-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_basic_live.test_get_document_count.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_basic_live.test_get_document_count.yaml index 0868bb71c087..9f27309d0f94 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_basic_live.test_get_document_count.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_basic_live.test_get_document_count.yaml @@ -9,9 +9,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search485f15b7.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://search485f15b7.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: "\uFEFF10" @@ -23,9 +23,9 @@ interactions: content-type: - text/plain date: - - Thu, 20 May 2021 16:43:19 GMT + - Sat, 08 May 2021 05:57:13 GMT elapsed-time: - - '150' + - '70' expires: - '-1' odata-version: @@ -35,7 +35,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 7b05e38d-b98a-11eb-b911-a0481ca055a9 + - 3b588bc2-afc2-11eb-b4b9-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_basic_live.test_get_document_missing.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_basic_live.test_get_document_missing.yaml index 1e9b42208df8..95f07c0ea442 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_basic_live.test_get_document_missing.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_basic_live.test_get_document_missing.yaml @@ -9,9 +9,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search751b1688.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://search751b1688.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: '' @@ -21,15 +21,15 @@ interactions: content-length: - '0' date: - - Thu, 20 May 2021 16:43:34 GMT + - Sat, 08 May 2021 05:57:29 GMT elapsed-time: - - '120' + - '125' expires: - '-1' pragma: - no-cache request-id: - - 841ba75f-b98a-11eb-85a4-a0481ca055a9 + - 45abac19-afc2-11eb-9316-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_delete_documents_existing.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_delete_documents_existing.yaml index ee335bb73ed7..e00bed6821d8 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_delete_documents_existing.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_delete_documents_existing.yaml @@ -9,25 +9,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchf9201cc0.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://searchf9201cc0.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchf9201cc0.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BAE6E85B3A8\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"city","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"stateProvince","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"country","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"postalCode","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]}]},{"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":"descriptionFr","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":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":[{"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}]}],"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}}' + string: '{"@odata.context":"https://searchf9201cc0.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E631FCA2A8\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"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":"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":"descriptionFr","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":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":[{"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}]}],"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}}' headers: cache-control: - no-cache content-length: - - '6227' + - '6676' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:43:49 GMT + - Sat, 08 May 2021 05:57:47 GMT elapsed-time: - - '736' + - '37' etag: - - W/"0x8D91BAE6E85B3A8" + - W/"0x8D911E631FCA2A8" expires: - '-1' odata-version: @@ -37,7 +37,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 8c285315-b98a-11eb-bc7f-a0481ca055a9 + - 4f8e32a0-afc2-11eb-9545-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -60,9 +60,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchf9201cc0.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://searchf9201cc0.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: '{"value":[{"key":"3","status":true,"errorMessage":null,"statusCode":200},{"key":"4","status":true,"errorMessage":null,"statusCode":200}]}' @@ -74,9 +74,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:43:49 GMT + - Sat, 08 May 2021 05:57:47 GMT elapsed-time: - - '281' + - '83' expires: - '-1' odata-version: @@ -86,7 +86,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 8d0111d2-b98a-11eb-ba8f-a0481ca055a9 + - 4fdd768f-afc2-11eb-8438-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -104,9 +104,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchf9201cc0.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://searchf9201cc0.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: "\uFEFF8" @@ -118,9 +118,9 @@ interactions: content-type: - text/plain date: - - Thu, 20 May 2021 16:43:52 GMT + - Sat, 08 May 2021 05:57:50 GMT elapsed-time: - - '88' + - '3' expires: - '-1' odata-version: @@ -130,7 +130,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 8f29219f-b98a-11eb-862f-a0481ca055a9 + - 51f83d40-afc2-11eb-858d-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -148,9 +148,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchf9201cc0.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30 + uri: https://searchf9201cc0.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30-Preview response: body: string: '' @@ -160,15 +160,15 @@ interactions: content-length: - '0' date: - - Thu, 20 May 2021 16:43:52 GMT + - Sat, 08 May 2021 05:57:50 GMT elapsed-time: - - '28' + - '5' expires: - '-1' pragma: - no-cache request-id: - - 8f78a64e-b98a-11eb-8a2e-a0481ca055a9 + - 523b2ffd-afc2-11eb-bba2-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -184,9 +184,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchf9201cc0.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://searchf9201cc0.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: '' @@ -196,15 +196,15 @@ interactions: content-length: - '0' date: - - Thu, 20 May 2021 16:43:52 GMT + - Sat, 08 May 2021 05:57:51 GMT elapsed-time: - - '4' + - '3' expires: - '-1' pragma: - no-cache request-id: - - 8f8a7ff6-b98a-11eb-afc2-a0481ca055a9 + - 524eef7c-afc2-11eb-9cf7-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_delete_documents_missing.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_delete_documents_missing.yaml index 2a503b40b2a9..5f4fe678763b 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_delete_documents_missing.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_delete_documents_missing.yaml @@ -9,25 +9,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchdc521c4f.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://searchdc521c4f.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchdc521c4f.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BAE7AEC8AF9\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"city","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"stateProvince","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"country","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"postalCode","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]}]},{"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":"descriptionFr","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":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":[{"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}]}],"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}}' + string: '{"@odata.context":"https://searchdc521c4f.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E63D7BB6AE\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"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":"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":"descriptionFr","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":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":[{"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}]}],"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}}' headers: cache-control: - no-cache content-length: - - '6227' + - '6676' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:44:09 GMT + - Sat, 08 May 2021 05:58:06 GMT elapsed-time: - - '691' + - '23' etag: - - W/"0x8D91BAE7AEC8AF9" + - W/"0x8D911E63D7BB6AE" expires: - '-1' odata-version: @@ -37,7 +37,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 98952a58-b98a-11eb-953f-a0481ca055a9 + - 5af6d6ff-afc2-11eb-8a65-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -60,9 +60,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchdc521c4f.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://searchdc521c4f.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: '{"value":[{"key":"1000","status":true,"errorMessage":null,"statusCode":200},{"key":"4","status":true,"errorMessage":null,"statusCode":200}]}' @@ -74,9 +74,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:44:10 GMT + - Sat, 08 May 2021 05:58:06 GMT elapsed-time: - - '16' + - '87' expires: - '-1' odata-version: @@ -86,7 +86,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 99515a93-b98a-11eb-a970-a0481ca055a9 + - 5b4a098c-afc2-11eb-8f3c-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -104,9 +104,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchdc521c4f.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://searchdc521c4f.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: "\uFEFF9" @@ -118,9 +118,9 @@ interactions: content-type: - text/plain date: - - Thu, 20 May 2021 16:44:13 GMT + - Sat, 08 May 2021 05:58:10 GMT elapsed-time: - - '89' + - '6' expires: - '-1' odata-version: @@ -130,7 +130,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 9b515b57-b98a-11eb-ac9f-a0481ca055a9 + - 5d6d251d-afc2-11eb-b0a1-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -148,9 +148,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchdc521c4f.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://searchdc521c4f.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: '' @@ -160,7 +160,7 @@ interactions: content-length: - '0' date: - - Thu, 20 May 2021 16:44:13 GMT + - Sat, 08 May 2021 05:58:10 GMT elapsed-time: - '5' expires: @@ -168,7 +168,7 @@ interactions: pragma: - no-cache request-id: - - 9b9e9008-b98a-11eb-90dc-a0481ca055a9 + - 5dad8948-afc2-11eb-929f-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -184,9 +184,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchdc521c4f.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://searchdc521c4f.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: '' @@ -196,7 +196,7 @@ interactions: content-length: - '0' date: - - Thu, 20 May 2021 16:44:13 GMT + - Sat, 08 May 2021 05:58:10 GMT elapsed-time: - '4' expires: @@ -204,7 +204,7 @@ interactions: pragma: - no-cache request-id: - - 9bb2664c-b98a-11eb-8fb1-a0481ca055a9 + - 5dc3a1a7-afc2-11eb-91c9-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_merge_documents_existing.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_merge_documents_existing.yaml index ac4f15aa80f8..dc4fc34fe8bf 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_merge_documents_existing.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_merge_documents_existing.yaml @@ -9,25 +9,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchdd361c5d.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://searchdd361c5d.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchdd361c5d.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BAE86CB2D99\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"city","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"stateProvince","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"country","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"postalCode","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]}]},{"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":"descriptionFr","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":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":[{"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}]}],"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}}' + string: '{"@odata.context":"https://searchdd361c5d.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E648E60634\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"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":"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":"descriptionFr","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":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":[{"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}]}],"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}}' headers: cache-control: - no-cache content-length: - - '6227' + - '6676' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:44:28 GMT + - Sat, 08 May 2021 05:58:25 GMT elapsed-time: - - '32' + - '26' etag: - - W/"0x8D91BAE86CB2D99" + - W/"0x8D911E648E60634" expires: - '-1' odata-version: @@ -37,7 +37,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - a46ec1bc-b98a-11eb-b072-a0481ca055a9 + - 6665d35f-afc2-11eb-832f-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -60,9 +60,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchdd361c5d.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://searchdd361c5d.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: '{"value":[{"key":"3","status":true,"errorMessage":null,"statusCode":200},{"key":"4","status":true,"errorMessage":null,"statusCode":200}]}' @@ -74,9 +74,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:44:29 GMT + - Sat, 08 May 2021 05:58:25 GMT elapsed-time: - - '119' + - '21' expires: - '-1' odata-version: @@ -86,7 +86,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - a4b29e8c-b98a-11eb-9f44-a0481ca055a9 + - 66aba707-afc2-11eb-ab20-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -104,9 +104,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchdd361c5d.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://searchdd361c5d.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: "\uFEFF10" @@ -118,9 +118,9 @@ interactions: content-type: - text/plain date: - - Thu, 20 May 2021 16:44:32 GMT + - Sat, 08 May 2021 05:58:29 GMT elapsed-time: - - '6' + - '71' expires: - '-1' odata-version: @@ -130,7 +130,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - a6ceadd6-b98a-11eb-9bda-a0481ca055a9 + - 68bf72a9-afc2-11eb-91d3-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -148,9 +148,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchdd361c5d.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30 + uri: https://searchdd361c5d.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"3","hotelName":"EconoStay","description":"Very popular @@ -163,9 +163,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:44:32 GMT + - Sat, 08 May 2021 05:58:29 GMT elapsed-time: - - '17' + - '10' expires: - '-1' odata-version: @@ -175,7 +175,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - a70d2201-b98a-11eb-aa39-a0481ca055a9 + - 690703d7-afc2-11eb-adf5-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -193,9 +193,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchdd361c5d.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://searchdd361c5d.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"4","hotelName":"Express Rooms","description":"Pretty good @@ -208,9 +208,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:44:32 GMT + - Sat, 08 May 2021 05:58:29 GMT elapsed-time: - - '4' + - '5' expires: - '-1' odata-version: @@ -220,7 +220,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - a7269dcb-b98a-11eb-9d25-a0481ca055a9 + - 6918681e-afc2-11eb-8670-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_merge_documents_missing.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_merge_documents_missing.yaml index 199e58922521..0c599ef4639c 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_merge_documents_missing.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_merge_documents_missing.yaml @@ -9,25 +9,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchc0cb1bec.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://searchc0cb1bec.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchc0cb1bec.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BAE919F8405\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"city","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"stateProvince","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"country","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"postalCode","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]}]},{"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":"descriptionFr","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":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":[{"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}]}],"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}}' + string: '{"@odata.context":"https://searchc0cb1bec.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E6548838C8\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"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":"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":"descriptionFr","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":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":[{"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}]}],"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}}' headers: cache-control: - no-cache content-length: - - '6227' + - '6676' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:44:46 GMT + - Sat, 08 May 2021 05:58:45 GMT elapsed-time: - - '28' + - '119' etag: - - W/"0x8D91BAE919F8405" + - W/"0x8D911E6548838C8" expires: - '-1' odata-version: @@ -37,7 +37,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - af399e52-b98a-11eb-8851-a0481ca055a9 + - 7202a673-afc2-11eb-b8c7-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -60,9 +60,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchc0cb1bec.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://searchc0cb1bec.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: '{"value":[{"key":"1000","status":false,"errorMessage":"Document not @@ -75,9 +75,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:44:47 GMT + - Sat, 08 May 2021 05:58:45 GMT elapsed-time: - - '30' + - '23' expires: - '-1' odata-version: @@ -87,7 +87,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - af81d31c-b98a-11eb-a04f-a0481ca055a9 + - 725e201a-afc2-11eb-aea8-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -105,9 +105,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchc0cb1bec.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://searchc0cb1bec.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: "\uFEFF10" @@ -119,9 +119,9 @@ interactions: content-type: - text/plain date: - - Thu, 20 May 2021 16:44:50 GMT + - Sat, 08 May 2021 05:58:49 GMT elapsed-time: - - '72' + - '67' expires: - '-1' odata-version: @@ -131,7 +131,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - b186f6a7-b98a-11eb-8c1c-a0481ca055a9 + - 7478299f-afc2-11eb-9f6b-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -149,9 +149,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchc0cb1bec.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://searchc0cb1bec.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: '' @@ -161,7 +161,7 @@ interactions: content-length: - '0' date: - - Thu, 20 May 2021 16:44:50 GMT + - Sat, 08 May 2021 05:58:49 GMT elapsed-time: - '4' expires: @@ -169,7 +169,7 @@ interactions: pragma: - no-cache request-id: - - b1c7da43-b98a-11eb-a383-a0481ca055a9 + - 74d1c7ea-afc2-11eb-a3b9-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -185,9 +185,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchc0cb1bec.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://searchc0cb1bec.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"4","hotelName":"Express Rooms","description":"Pretty good @@ -200,7 +200,7 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:44:50 GMT + - Sat, 08 May 2021 05:58:49 GMT elapsed-time: - '10' expires: @@ -212,7 +212,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - b1d8c897-b98a-11eb-96db-a0481ca055a9 + - 74e682a3-afc2-11eb-8a47-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_merge_or_upload_documents.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_merge_or_upload_documents.yaml index 43ff7611315a..1a92e16b2d88 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_merge_or_upload_documents.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_merge_or_upload_documents.yaml @@ -9,25 +9,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchf9541cb7.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://searchf9541cb7.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchf9541cb7.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BAE9D841BEE\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"city","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"stateProvince","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"country","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"postalCode","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]}]},{"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":"descriptionFr","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":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":[{"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}]}],"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}}' + string: '{"@odata.context":"https://searchf9541cb7.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E6608FF6A0\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"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":"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":"descriptionFr","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":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":[{"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}]}],"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}}' headers: cache-control: - no-cache content-length: - - '6227' + - '6676' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:45:06 GMT + - Sat, 08 May 2021 05:59:05 GMT elapsed-time: - - '28' + - '20' etag: - - W/"0x8D91BAE9D841BEE" + - W/"0x8D911E6608FF6A0" expires: - '-1' odata-version: @@ -37,7 +37,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - bb2ad21a-b98a-11eb-957f-a0481ca055a9 + - 7e20992e-afc2-11eb-9ad4-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -60,9 +60,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchf9541cb7.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://searchf9541cb7.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: '{"value":[{"key":"1000","status":true,"errorMessage":null,"statusCode":201},{"key":"4","status":true,"errorMessage":null,"statusCode":200}]}' @@ -74,9 +74,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:45:07 GMT + - Sat, 08 May 2021 05:59:05 GMT elapsed-time: - - '109' + - '149' expires: - '-1' odata-version: @@ -86,7 +86,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - bb7280f9-b98a-11eb-a32c-a0481ca055a9 + - 7e616841-afc2-11eb-8e8d-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -104,9 +104,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchf9541cb7.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://searchf9541cb7.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: "\uFEFF11" @@ -118,9 +118,9 @@ interactions: content-type: - text/plain date: - - Thu, 20 May 2021 16:45:10 GMT + - Sat, 08 May 2021 05:59:09 GMT elapsed-time: - - '65' + - '144' expires: - '-1' odata-version: @@ -130,7 +130,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - bd8870c4-b98a-11eb-95b6-a0481ca055a9 + - 807f9898-afc2-11eb-ada0-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -148,9 +148,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchf9541cb7.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://searchf9541cb7.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"1000","hotelName":null,"description":null,"descriptionFr":null,"category":null,"tags":[],"parkingIncluded":null,"smokingAllowed":null,"lastRenovationDate":null,"rating":1,"location":null,"address":null,"rooms":[]}' @@ -162,9 +162,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:45:10 GMT + - Sat, 08 May 2021 05:59:09 GMT elapsed-time: - - '162' + - '6' expires: - '-1' odata-version: @@ -174,7 +174,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - bdc6d8d4-b98a-11eb-9a51-a0481ca055a9 + - 80df7f02-afc2-11eb-ab70-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -192,9 +192,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchf9541cb7.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://searchf9541cb7.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"4","hotelName":"Express Rooms","description":"Pretty good @@ -207,9 +207,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:45:10 GMT + - Sat, 08 May 2021 05:59:09 GMT elapsed-time: - - '13' + - '10' expires: - '-1' odata-version: @@ -219,7 +219,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - bdf266a2-b98a-11eb-8534-a0481ca055a9 + - 80f6ef36-afc2-11eb-80c1-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_upload_documents_existing.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_upload_documents_existing.yaml index ceba2748dc93..b191c5039bba 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_upload_documents_existing.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_upload_documents_existing.yaml @@ -9,25 +9,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchfb0a1cd2.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://searchfb0a1cd2.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchfb0a1cd2.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BAEAAE4EE67\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"city","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"stateProvince","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"country","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"postalCode","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]}]},{"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":"descriptionFr","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":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":[{"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}]}],"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}}' + string: '{"@odata.context":"https://searchfb0a1cd2.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E66B9CABD7\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"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":"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":"descriptionFr","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":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":[{"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}]}],"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}}' headers: cache-control: - no-cache content-length: - - '6227' + - '6676' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:45:29 GMT + - Sat, 08 May 2021 05:59:23 GMT elapsed-time: - - '34' + - '37' etag: - - W/"0x8D91BAEAAE4EE67" + - W/"0x8D911E66B9CABD7" expires: - '-1' odata-version: @@ -37,7 +37,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - c894890e-b98a-11eb-b6fe-a0481ca055a9 + - 892a6703-afc2-11eb-9ddd-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -61,9 +61,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchfb0a1cd2.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://searchfb0a1cd2.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: '{"value":[{"key":"1000","status":true,"errorMessage":null,"statusCode":201},{"key":"3","status":true,"errorMessage":null,"statusCode":200}]}' @@ -75,9 +75,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:45:30 GMT + - Sat, 08 May 2021 05:59:24 GMT elapsed-time: - - '119' + - '23' expires: - '-1' odata-version: @@ -87,7 +87,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - c8ff9e6c-b98a-11eb-a870-a0481ca055a9 + - 897d095b-afc2-11eb-90a0-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -105,9 +105,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchfb0a1cd2.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://searchfb0a1cd2.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: "\uFEFF11" @@ -119,9 +119,9 @@ interactions: content-type: - text/plain date: - - Thu, 20 May 2021 16:45:33 GMT + - Sat, 08 May 2021 05:59:27 GMT elapsed-time: - - '6' + - '104' expires: - '-1' odata-version: @@ -131,7 +131,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - cb0e7abf-b98a-11eb-b7b5-a0481ca055a9 + - 8b943035-afc2-11eb-a597-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_upload_documents_new.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_upload_documents_new.yaml index 660f2d3381e1..6e24469ed168 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_upload_documents_new.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_buffered_sender_live.test_upload_documents_new.yaml @@ -9,25 +9,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search6f1f1ab1.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://search6f1f1ab1.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search6f1f1ab1.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BAEB7488C93\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"city","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"stateProvince","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"country","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"postalCode","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]}]},{"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":"descriptionFr","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":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":[{"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}]}],"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}}' + string: '{"@odata.context":"https://search6f1f1ab1.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E67712E489\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"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":"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":"descriptionFr","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":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":[{"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}]}],"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}}' headers: cache-control: - no-cache content-length: - - '6227' + - '6676' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:45:50 GMT + - Sat, 08 May 2021 05:59:42 GMT elapsed-time: - - '59' + - '46' etag: - - W/"0x8D91BAEB7488C93" + - W/"0x8D911E67712E489" expires: - '-1' odata-version: @@ -37,7 +37,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - d50d1a61-b98a-11eb-a08a-a0481ca055a9 + - 948c9566-afc2-11eb-8e86-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -61,9 +61,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search6f1f1ab1.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://search6f1f1ab1.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: '{"value":[{"key":"1000","status":true,"errorMessage":null,"statusCode":201},{"key":"1001","status":true,"errorMessage":null,"statusCode":201}]}' @@ -75,9 +75,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:45:50 GMT + - Sat, 08 May 2021 05:59:43 GMT elapsed-time: - - '32' + - '27' expires: - '-1' odata-version: @@ -87,7 +87,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - d5493dc3-b98a-11eb-bb97-a0481ca055a9 + - 94e2561a-afc2-11eb-8966-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -105,9 +105,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search6f1f1ab1.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://search6f1f1ab1.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: "\uFEFF12" @@ -119,9 +119,9 @@ interactions: content-type: - text/plain date: - - Thu, 20 May 2021 16:45:54 GMT + - Sat, 08 May 2021 05:59:47 GMT elapsed-time: - - '203' + - '79' expires: - '-1' odata-version: @@ -131,7 +131,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - d75a74b3-b98a-11eb-9399-a0481ca055a9 + - 96ff8cc4-afc2-11eb-99f9-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -149,9 +149,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search6f1f1ab1.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://search6f1f1ab1.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"1000","hotelName":"Azure Inn","description":null,"descriptionFr":null,"category":null,"tags":[],"parkingIncluded":null,"smokingAllowed":null,"lastRenovationDate":null,"rating":5,"location":null,"address":null,"rooms":[]}' @@ -163,9 +163,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:45:54 GMT + - Sat, 08 May 2021 05:59:47 GMT elapsed-time: - - '23' + - '8' expires: - '-1' odata-version: @@ -175,7 +175,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - d7b05e8e-b98a-11eb-bbf4-a0481ca055a9 + - 9754c6a9-afc2-11eb-9d93-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -193,9 +193,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search6f1f1ab1.search.windows.net/indexes('drgqefsg')/docs('1001')?api-version=2020-06-30 + uri: https://search6f1f1ab1.search.windows.net/indexes('drgqefsg')/docs('1001')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"1001","hotelName":"Redmond Hotel","description":null,"descriptionFr":null,"category":null,"tags":[],"parkingIncluded":null,"smokingAllowed":null,"lastRenovationDate":null,"rating":4,"location":null,"address":null,"rooms":[]}' @@ -207,9 +207,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:45:54 GMT + - Sat, 08 May 2021 05:59:47 GMT elapsed-time: - - '7' + - '3' expires: - '-1' odata-version: @@ -219,7 +219,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - d7c59453-b98a-11eb-ae75-a0481ca055a9 + - 976ac22d-afc2-11eb-94c9-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_delete_documents_existing.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_delete_documents_existing.yaml index 9f4707ac1dac..c0a279110558 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_delete_documents_existing.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_delete_documents_existing.yaml @@ -14,9 +14,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searche0dc1c73.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://searche0dc1c73.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: '{"value":[{"key":"3","status":true,"errorMessage":null,"statusCode":200},{"key":"4","status":true,"errorMessage":null,"statusCode":200}]}' @@ -28,9 +28,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:46:10 GMT + - Sat, 08 May 2021 06:00:02 GMT elapsed-time: - - '166' + - '74' expires: - '-1' odata-version: @@ -40,7 +40,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - e14bdb98-b98a-11eb-8603-a0481ca055a9 + - a0dcf1ac-afc2-11eb-ad0e-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -58,9 +58,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searche0dc1c73.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://searche0dc1c73.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: "\uFEFF8" @@ -72,9 +72,9 @@ interactions: content-type: - text/plain date: - - Thu, 20 May 2021 16:46:14 GMT + - Sat, 08 May 2021 06:00:06 GMT elapsed-time: - - '6' + - '4' expires: - '-1' odata-version: @@ -84,7 +84,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - e39433a0-b98a-11eb-af25-a0481ca055a9 + - a2f95cc0-afc2-11eb-9ec8-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -102,9 +102,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searche0dc1c73.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30 + uri: https://searche0dc1c73.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30-Preview response: body: string: '' @@ -114,15 +114,15 @@ interactions: content-length: - '0' date: - - Thu, 20 May 2021 16:46:14 GMT + - Sat, 08 May 2021 06:00:06 GMT elapsed-time: - - '5' + - '3' expires: - '-1' pragma: - no-cache request-id: - - e3a1c4ca-b98a-11eb-9042-a0481ca055a9 + - a3140c45-afc2-11eb-b992-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -138,9 +138,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searche0dc1c73.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://searche0dc1c73.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: '' @@ -150,15 +150,15 @@ interactions: content-length: - '0' date: - - Thu, 20 May 2021 16:46:14 GMT + - Sat, 08 May 2021 06:00:06 GMT elapsed-time: - - '6' + - '3' expires: - '-1' pragma: - no-cache request-id: - - e3b4b089-b98a-11eb-b959-a0481ca055a9 + - a32b8e5f-afc2-11eb-acdb-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_delete_documents_missing.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_delete_documents_missing.yaml index 4bafb2b9e2eb..c54d9455dff4 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_delete_documents_missing.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_delete_documents_missing.yaml @@ -14,9 +14,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchc45b1c02.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://searchc45b1c02.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: '{"value":[{"key":"1000","status":true,"errorMessage":null,"statusCode":200},{"key":"4","status":true,"errorMessage":null,"statusCode":200}]}' @@ -28,9 +28,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:46:30 GMT + - Sat, 08 May 2021 06:00:27 GMT elapsed-time: - - '153' + - '88' expires: - '-1' odata-version: @@ -40,7 +40,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - ed8daca8-b98a-11eb-a1a8-a0481ca055a9 + - aed9d6c7-afc2-11eb-ac58-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -58,9 +58,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchc45b1c02.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://searchc45b1c02.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: "\uFEFF9" @@ -72,9 +72,9 @@ interactions: content-type: - text/plain date: - - Thu, 20 May 2021 16:46:34 GMT + - Sat, 08 May 2021 06:00:30 GMT elapsed-time: - - '4' + - '3' expires: - '-1' odata-version: @@ -84,7 +84,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - efa2e55c-b98a-11eb-a3e0-a0481ca055a9 + - b0ffcd34-afc2-11eb-8451-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -102,9 +102,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchc45b1c02.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://searchc45b1c02.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: '' @@ -114,7 +114,7 @@ interactions: content-length: - '0' date: - - Thu, 20 May 2021 16:46:34 GMT + - Sat, 08 May 2021 06:00:30 GMT elapsed-time: - '3' expires: @@ -122,7 +122,7 @@ interactions: pragma: - no-cache request-id: - - efaf40c2-b98a-11eb-8b23-a0481ca055a9 + - b118bd45-afc2-11eb-8979-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -138,9 +138,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchc45b1c02.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://searchc45b1c02.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: '' @@ -150,7 +150,7 @@ interactions: content-length: - '0' date: - - Thu, 20 May 2021 16:46:34 GMT + - Sat, 08 May 2021 06:00:30 GMT elapsed-time: - '4' expires: @@ -158,7 +158,7 @@ interactions: pragma: - no-cache request-id: - - efbd23a7-b98a-11eb-b007-a0481ca055a9 + - b12d8169-afc2-11eb-89d9-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_merge_documents_existing.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_merge_documents_existing.yaml index 0f367b37ef94..3c7e7fd451b1 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_merge_documents_existing.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_merge_documents_existing.yaml @@ -14,9 +14,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchc53f1c10.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://searchc53f1c10.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: '{"value":[{"key":"3","status":true,"errorMessage":null,"statusCode":200},{"key":"4","status":true,"errorMessage":null,"statusCode":200}]}' @@ -28,9 +28,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:46:49 GMT + - Sat, 08 May 2021 06:00:50 GMT elapsed-time: - - '21' + - '99' expires: - '-1' odata-version: @@ -40,7 +40,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - f859fafa-b98a-11eb-85b9-a0481ca055a9 + - bc87c17d-afc2-11eb-8ed9-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -58,9 +58,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchc53f1c10.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://searchc53f1c10.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: "\uFEFF10" @@ -72,7 +72,7 @@ interactions: content-type: - text/plain date: - - Thu, 20 May 2021 16:46:52 GMT + - Sat, 08 May 2021 06:00:53 GMT elapsed-time: - '5' expires: @@ -84,7 +84,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - fa5c101d-b98a-11eb-b75c-a0481ca055a9 + - beb3d62d-afc2-11eb-8bad-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -102,9 +102,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchc53f1c10.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30 + uri: https://searchc53f1c10.search.windows.net/indexes('drgqefsg')/docs('3')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"3","hotelName":"EconoStay","description":"Very popular @@ -117,9 +117,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:46:52 GMT + - Sat, 08 May 2021 06:00:53 GMT elapsed-time: - - '9' + - '17' expires: - '-1' odata-version: @@ -129,7 +129,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - fa6a1739-b98a-11eb-80de-a0481ca055a9 + - beca32bb-afc2-11eb-85fa-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -147,9 +147,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchc53f1c10.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://searchc53f1c10.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"4","hotelName":"Express Rooms","description":"Pretty good @@ -162,9 +162,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:46:52 GMT + - Sat, 08 May 2021 06:00:53 GMT elapsed-time: - - '6' + - '4' expires: - '-1' odata-version: @@ -174,7 +174,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - fa803836-b98a-11eb-9411-a0481ca055a9 + - bee7cd46-afc2-11eb-b840-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_merge_documents_missing.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_merge_documents_missing.yaml index 4b4493011dcf..e55e35392706 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_merge_documents_missing.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_merge_documents_missing.yaml @@ -14,9 +14,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searcha9211b9f.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://searcha9211b9f.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: '{"value":[{"key":"1000","status":false,"errorMessage":"Document not @@ -29,9 +29,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:47:08 GMT + - Sat, 08 May 2021 06:01:09 GMT elapsed-time: - - '106' + - '85' expires: - '-1' odata-version: @@ -41,7 +41,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 03625455-b98b-11eb-bec8-a0481ca055a9 + - c810bfb9-afc2-11eb-93c7-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -59,9 +59,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searcha9211b9f.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://searcha9211b9f.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: "\uFEFF10" @@ -73,9 +73,9 @@ interactions: content-type: - text/plain date: - - Thu, 20 May 2021 16:47:11 GMT + - Sat, 08 May 2021 06:01:12 GMT elapsed-time: - - '4' + - '3' expires: - '-1' odata-version: @@ -85,7 +85,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 05739913-b98b-11eb-a96c-a0481ca055a9 + - ca2dd8ad-afc2-11eb-a89b-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -103,9 +103,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searcha9211b9f.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://searcha9211b9f.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: '' @@ -115,15 +115,15 @@ interactions: content-length: - '0' date: - - Thu, 20 May 2021 16:47:11 GMT + - Sat, 08 May 2021 06:01:12 GMT elapsed-time: - - '5' + - '3' expires: - '-1' pragma: - no-cache request-id: - - 0582308d-b98b-11eb-bc61-a0481ca055a9 + - ca421e4c-afc2-11eb-86f2-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -139,9 +139,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searcha9211b9f.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://searcha9211b9f.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"4","hotelName":"Express Rooms","description":"Pretty good @@ -154,9 +154,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:47:11 GMT + - Sat, 08 May 2021 06:01:12 GMT elapsed-time: - - '10' + - '9' expires: - '-1' odata-version: @@ -166,7 +166,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 058feb52-b98b-11eb-9f18-a0481ca055a9 + - ca579c05-afc2-11eb-9cd1-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_merge_or_upload_documents.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_merge_or_upload_documents.yaml index 171466b48294..b32f99690d66 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_merge_or_upload_documents.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_merge_or_upload_documents.yaml @@ -14,9 +14,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searche1101c6a.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://searche1101c6a.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: '{"value":[{"key":"1000","status":true,"errorMessage":null,"statusCode":201},{"key":"4","status":true,"errorMessage":null,"statusCode":200}]}' @@ -28,9 +28,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:47:26 GMT + - Sat, 08 May 2021 06:01:29 GMT elapsed-time: - - '105' + - '93' expires: - '-1' odata-version: @@ -40,7 +40,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 0e86bd1b-b98b-11eb-885b-a0481ca055a9 + - d41ff4a7-afc2-11eb-9094-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -58,9 +58,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searche1101c6a.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://searche1101c6a.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: "\uFEFF11" @@ -72,9 +72,9 @@ interactions: content-type: - text/plain date: - - Thu, 20 May 2021 16:47:29 GMT + - Sat, 08 May 2021 06:01:32 GMT elapsed-time: - - '4' + - '3' expires: - '-1' odata-version: @@ -84,7 +84,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 109142bf-b98b-11eb-9671-a0481ca055a9 + - d63e276a-afc2-11eb-abce-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -102,9 +102,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searche1101c6a.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://searche1101c6a.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"1000","hotelName":null,"description":null,"descriptionFr":null,"category":null,"tags":[],"parkingIncluded":null,"smokingAllowed":null,"lastRenovationDate":null,"rating":1,"location":null,"address":null,"rooms":[]}' @@ -116,9 +116,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:47:29 GMT + - Sat, 08 May 2021 06:01:32 GMT elapsed-time: - - '7' + - '6' expires: - '-1' odata-version: @@ -128,7 +128,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 10a2813a-b98b-11eb-909b-a0481ca055a9 + - d653f9d4-afc2-11eb-ab61-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -146,9 +146,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searche1101c6a.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30 + uri: https://searche1101c6a.search.windows.net/indexes('drgqefsg')/docs('4')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"4","hotelName":"Express Rooms","description":"Pretty good @@ -161,7 +161,7 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:47:29 GMT + - Sat, 08 May 2021 06:01:32 GMT elapsed-time: - '7' expires: @@ -173,7 +173,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 10b0b6d0-b98b-11eb-b8f3-a0481ca055a9 + - d668f43c-afc2-11eb-8453-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_upload_documents_existing.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_upload_documents_existing.yaml index e366cfcf391d..c3e4d615c0ea 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_upload_documents_existing.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_upload_documents_existing.yaml @@ -15,9 +15,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searche2c61c85.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://searche2c61c85.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: '{"value":[{"key":"1000","status":true,"errorMessage":null,"statusCode":201},{"key":"3","status":true,"errorMessage":null,"statusCode":200}]}' @@ -29,9 +29,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:47:45 GMT + - Sat, 08 May 2021 06:01:48 GMT elapsed-time: - - '107' + - '26' expires: - '-1' odata-version: @@ -41,7 +41,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 194da258-b98b-11eb-b035-a0481ca055a9 + - df4a3126-afc2-11eb-b057-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_upload_documents_new.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_upload_documents_new.yaml index 5eea523babcf..4597b30d6ec0 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_upload_documents_new.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_index_document_live.test_upload_documents_new.yaml @@ -15,9 +15,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search585c1a64.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30 + uri: https://search585c1a64.search.windows.net/indexes('drgqefsg')/docs/search.index?api-version=2020-06-30-Preview response: body: string: '{"value":[{"key":"1000","status":true,"errorMessage":null,"statusCode":201},{"key":"1001","status":true,"errorMessage":null,"statusCode":201}]}' @@ -29,9 +29,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:48:00 GMT + - Sat, 08 May 2021 06:02:04 GMT elapsed-time: - - '146' + - '99' expires: - '-1' odata-version: @@ -41,7 +41,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 22bbf11c-b98b-11eb-b8f2-a0481ca055a9 + - e8be5b00-afc2-11eb-8ed8-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -59,9 +59,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search585c1a64.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30 + uri: https://search585c1a64.search.windows.net/indexes('drgqefsg')/docs/$count?api-version=2020-06-30-Preview response: body: string: "\uFEFF12" @@ -73,9 +73,9 @@ interactions: content-type: - text/plain date: - - Thu, 20 May 2021 16:48:03 GMT + - Sat, 08 May 2021 06:02:07 GMT elapsed-time: - - '4' + - '3' expires: - '-1' odata-version: @@ -85,7 +85,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 24d99f4c-b98b-11eb-8afb-a0481ca055a9 + - eadf0adc-afc2-11eb-a6b7-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -103,9 +103,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search585c1a64.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30 + uri: https://search585c1a64.search.windows.net/indexes('drgqefsg')/docs('1000')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"1000","hotelName":"Azure Inn","description":null,"descriptionFr":null,"category":null,"tags":[],"parkingIncluded":null,"smokingAllowed":null,"lastRenovationDate":null,"rating":5,"location":null,"address":null,"rooms":[]}' @@ -117,9 +117,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:48:03 GMT + - Sat, 08 May 2021 06:02:07 GMT elapsed-time: - - '13' + - '8' expires: - '-1' odata-version: @@ -129,7 +129,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 24e741fb-b98b-11eb-9108-a0481ca055a9 + - eaf5f532-afc2-11eb-8852-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -147,9 +147,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search585c1a64.search.windows.net/indexes('drgqefsg')/docs('1001')?api-version=2020-06-30 + uri: https://search585c1a64.search.windows.net/indexes('drgqefsg')/docs('1001')?api-version=2020-06-30-Preview response: body: string: '{"hotelId":"1001","hotelName":"Redmond Hotel","description":null,"descriptionFr":null,"category":null,"tags":[],"parkingIncluded":null,"smokingAllowed":null,"lastRenovationDate":null,"rating":4,"location":null,"address":null,"rooms":[]}' @@ -161,9 +161,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:48:03 GMT + - Sat, 08 May 2021 06:02:07 GMT elapsed-time: - - '6' + - '5' expires: - '-1' odata-version: @@ -173,7 +173,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 24f6ccde-b98b-11eb-8ec0-a0481ca055a9 + - eb0db603-afc2-11eb-97ed-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_autocomplete.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_autocomplete.yaml index 622b494aa73e..1c8d0c99ada5 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_autocomplete.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_autocomplete.yaml @@ -13,9 +13,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searche2a413b7.search.windows.net/indexes('drgqefsg')/docs/search.post.autocomplete?api-version=2020-06-30 + uri: https://searche2a413b7.search.windows.net/indexes('drgqefsg')/docs/search.post.autocomplete?api-version=2020-06-30-Preview response: body: string: '{"value":[{"text":"motel","queryPlusText":"motel"}]}' @@ -27,9 +27,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:48:19 GMT + - Sat, 08 May 2021 06:02:22 GMT elapsed-time: - - '193' + - '72' expires: - '-1' odata-version: @@ -39,7 +39,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 2dc38df8-b98b-11eb-b9b9-a0481ca055a9 + - f3b00bd3-afc2-11eb-a9eb-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_counts.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_counts.yaml index bbae966590c8..9590b0e2a914 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_counts.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_counts.yaml @@ -13,9 +13,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search498015b5.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://search498015b5.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: '{"value":[{"@search.score":1.8955941,"hotelId":"10","hotelName":"Countryside @@ -74,9 +74,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:48:34 GMT + - Sat, 08 May 2021 06:02:38 GMT elapsed-time: - - '310' + - '154' expires: - '-1' odata-version: @@ -86,7 +86,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 368db168-b98b-11eb-97da-a0481ca055a9 + - fd1d9621-afc2-11eb-b6f5-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -108,9 +108,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search498015b5.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://search498015b5.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: '{"@odata.count":7,"value":[{"@search.score":1.8955941,"hotelId":"10","hotelName":"Countryside @@ -169,9 +169,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:48:34 GMT + - Sat, 08 May 2021 06:02:38 GMT elapsed-time: - - '14' + - '7' expires: - '-1' odata-version: @@ -181,7 +181,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 36f37372-b98b-11eb-8b29-a0481ca055a9 + - fd7f3f69-afc2-11eb-b232-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_coverage.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_coverage.yaml index 06f694831964..3aaa284eeee8 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_coverage.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_coverage.yaml @@ -13,9 +13,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search75b81665.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://search75b81665.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: '{"value":[{"@search.score":1.8955941,"hotelId":"10","hotelName":"Countryside @@ -74,9 +74,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:48:49 GMT + - Sat, 08 May 2021 06:02:53 GMT elapsed-time: - - '95' + - '177' expires: - '-1' odata-version: @@ -86,7 +86,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 3fedb48a-b98b-11eb-b834-a0481ca055a9 + - 05f87449-afc3-11eb-b405-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -108,9 +108,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search75b81665.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://search75b81665.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: '{"@search.coverage":100.0,"value":[{"@search.score":1.8955941,"hotelId":"10","hotelName":"Countryside @@ -169,9 +169,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:48:49 GMT + - Sat, 08 May 2021 06:02:53 GMT elapsed-time: - - '9' + - '7' expires: - '-1' odata-version: @@ -181,7 +181,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 4044e945-b98b-11eb-9b1d-a0481ca055a9 + - 065f0b33-afc3-11eb-b92a-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_facets_none.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_facets_none.yaml index 1989bd9a8034..b6ce48f03d2d 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_facets_none.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_facets_none.yaml @@ -13,9 +13,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchbad5179e.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://searchbad5179e.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: '{"value":[{"@search.score":2.534638,"hotelName":"Countryside Hotel","description":"Save @@ -37,9 +37,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:49:05 GMT + - Sat, 08 May 2021 06:03:08 GMT elapsed-time: - - '102' + - '109' expires: - '-1' odata-version: @@ -49,7 +49,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 4948b7db-b98b-11eb-af12-a0481ca055a9 + - 0ef853ca-afc3-11eb-90d3-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_facets_result.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_facets_result.yaml index c267d87bbdc2..30fc887ea8e6 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_facets_result.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_facets_result.yaml @@ -13,9 +13,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searcheb87188d.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://searcheb87188d.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: '{"@search.facets":{"category":[{"count":4,"value":"Budget"},{"count":1,"value":"Luxury"}]},"value":[{"@search.score":2.534638,"hotelName":"Countryside @@ -37,9 +37,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:49:19 GMT + - Sat, 08 May 2021 06:03:23 GMT elapsed-time: - - '239' + - '232' expires: - '-1' odata-version: @@ -49,7 +49,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 525092d5-b98b-11eb-95a5-a0481ca055a9 + - 18327585-afc3-11eb-bbb8-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_filter.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_filter.yaml index fb2fb40f21ca..1465eb965687 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_filter.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_filter.yaml @@ -14,9 +14,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search4943159f.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://search4943159f.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: '{"value":[{"@search.score":1.0225849,"hotelName":"Express Rooms","description":"Pretty @@ -34,9 +34,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:49:34 GMT + - Sat, 08 May 2021 06:03:39 GMT elapsed-time: - - '331' + - '114' expires: - '-1' odata-version: @@ -46,7 +46,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 5a804479-b98b-11eb-9c83-a0481ca055a9 + - 2195a04a-afc3-11eb-9054-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_filter_array.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_filter_array.yaml index 4901ee2a74e0..efac4cd246b9 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_filter_array.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_filter_array.yaml @@ -14,9 +14,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchd375181d.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://searchd375181d.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: '{"value":[{"@search.score":1.0225849,"hotelName":"Express Rooms","description":"Pretty @@ -34,9 +34,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:49:49 GMT + - Sat, 08 May 2021 06:03:55 GMT elapsed-time: - - '113' + - '136' expires: - '-1' odata-version: @@ -46,7 +46,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 63615871-b98b-11eb-8a11-a0481ca055a9 + - 2adcc9f0-afc3-11eb-b1ca-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_simple.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_simple.yaml index c8f27fc7fcf0..0caa9b626619 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_simple.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_simple.yaml @@ -13,12 +13,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search498a15a3.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://search498a15a3.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: - string: '{"value":[{"@search.score":1.8605099,"hotelId":"10","hotelName":"Countryside + string: '{"value":[{"@search.score":1.8955941,"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.","descriptionFr":"\u00c3\u2030conomisez jusqu''\u00c3\u00a0 @@ -32,13 +32,13 @@ interactions: (Services)","type":"Suite","baseRate":2.44,"bedOptions":"1 King Bed","sleepsCount":2,"smokingAllowed":true,"tags":["coffee maker"]},{"description":"Budget Room, 1 Queen Bed (Amenities)","descriptionFr":"Chambre \u00c3\u2030conomique, 1 grand lit (Services)","type":"Budget Room","baseRate":7.69,"bedOptions":"1 - Queen Bed","sleepsCount":2,"smokingAllowed":false,"tags":["coffee maker"]}]},{"@search.score":0.5313586,"hotelId":"3","hotelName":"EconoStay","description":"Very + Queen Bed","sleepsCount":2,"smokingAllowed":false,"tags":["coffee maker"]}]},{"@search.score":0.89701396,"hotelId":"3","hotelName":"EconoStay","description":"Very popular hotel in town","descriptionFr":"H\u00c3\u00b4tel 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,46.678581],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},"address":null,"rooms":[]},{"@search.score":0.5313586,"hotelId":"4","hotelName":"Express - Rooms","description":"Pretty good hotel","descriptionFr":"Assez bon h\u00c3\u00b4tel","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.5313586,"hotelId":"5","hotelName":"Comfy - Place","description":"Another good hotel","descriptionFr":"Un autre bon h\u00c3\u00b4tel","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.5035824,"hotelId":"2","hotelName":"Roach + 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,46.678581],"crs":{"type":"name","properties":{"name":"EPSG:4326"}}},"address":null,"rooms":[]},{"@search.score":0.89701396,"hotelId":"4","hotelName":"Express + Rooms","description":"Pretty good hotel","descriptionFr":"Assez bon h\u00c3\u00b4tel","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.89701396,"hotelId":"5","hotelName":"Comfy + Place","description":"Another good hotel","descriptionFr":"Un autre bon h\u00c3\u00b4tel","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.8367443,"hotelId":"2","hotelName":"Roach Motel","description":"Cheapest hotel in town. Infact, a motel.","descriptionFr":"H\u00c3\u00b4tel - 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.474094,"hotelId":"1","hotelName":"Fancy + 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.74453783,"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 @@ -47,7 +47,7 @@ interactions: \u00c3\u00a0 d\u00c3\u00a9bordement, un spa et un concierge tr\u00c3\u00a8s utile. L''emplacement est parfait \u00e2\u20ac\u201c en plein centre, \u00c3\u00a0 proximit\u00c3\u00a9 de toutes les attractions touristiques. Nous recommandons - fortement cet h\u00c3\u00b4tel.","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.19939421,"hotelId":"9","hotelName":"Secret + fortement cet h\u00c3\u00b4tel.","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.28260264,"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 @@ -70,13 +70,13 @@ interactions: cache-control: - no-cache content-length: - - '6149' + - '6154' content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 17:57:45 GMT + - Sat, 08 May 2021 06:04:10 GMT elapsed-time: - - '145' + - '155' expires: - '-1' odata-version: @@ -86,7 +86,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - e0eb18cd-b994-11eb-b68d-a0481ca055a9 + - 33b2cabe-afc3-11eb-855d-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -108,14 +108,14 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search498a15a3.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://search498a15a3.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: - string: '{"value":[{"@search.score":8.10109,"hotelId":"2","hotelName":"Roach + string: '{"value":[{"@search.score":8.535209,"hotelId":"2","hotelName":"Roach Motel","description":"Cheapest hotel in town. Infact, a motel.","descriptionFr":"H\u00c3\u00b4tel - 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.90904975,"hotelId":"9","hotelName":"Secret + 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.8858137,"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 @@ -142,7 +142,7 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 17:57:45 GMT + - Sat, 08 May 2021 06:04:10 GMT elapsed-time: - '9' expires: @@ -154,7 +154,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - e13708e3-b994-11eb-8198-a0481ca055a9 + - 34159f78-afc3-11eb-9183-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_simple_with_top.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_simple_with_top.yaml index cfaf4b1ef15c..169b40aa0f3b 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_simple_with_top.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_get_search_simple_with_top.yaml @@ -13,9 +13,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search1f281970.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://search1f281970.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: '{"value":[{"@search.score":1.8955941,"hotelId":"10","hotelName":"Countryside @@ -44,9 +44,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:50:15 GMT + - Sat, 08 May 2021 06:04:25 GMT elapsed-time: - - '24' + - '102' expires: - '-1' odata-version: @@ -56,7 +56,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 73276f26-b98b-11eb-b208-a0481ca055a9 + - 3cf5f673-afc3-11eb-b99d-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -78,9 +78,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search1f281970.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30 + uri: https://search1f281970.search.windows.net/indexes('drgqefsg')/docs/search.post.search?api-version=2020-06-30-Preview response: body: string: '{"value":[{"@search.score":8.535209,"hotelId":"2","hotelName":"Roach @@ -112,9 +112,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:50:15 GMT + - Sat, 08 May 2021 06:04:25 GMT elapsed-time: - - '5' + - '6' expires: - '-1' odata-version: @@ -124,7 +124,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 735ef9c4-b98b-11eb-bebb-a0481ca055a9 + - 3d552dfd-afc3-11eb-a4fa-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_suggest.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_suggest.yaml index e2c88848f13b..412b77663953 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_suggest.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_client_search_live.test_suggest.yaml @@ -13,9 +13,9 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search846911a7.search.windows.net/indexes('drgqefsg')/docs/search.post.suggest?api-version=2020-06-30 + uri: https://search846911a7.search.windows.net/indexes('drgqefsg')/docs/search.post.suggest?api-version=2020-06-30-Preview response: body: string: '{"value":[{"@search.text":"Cheapest hotel in town. Infact, a motel.","hotelId":"2"},{"@search.text":"Secret @@ -28,9 +28,9 @@ interactions: content-type: - application/json; odata.metadata=none date: - - Thu, 20 May 2021 16:50:37 GMT + - Sat, 08 May 2021 06:04:41 GMT elapsed-time: - - '98' + - '69' expires: - '-1' odata-version: @@ -40,7 +40,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 800470a5-b98b-11eb-b644-a0481ca055a9 + - 46b58aee-afc3-11eb-8a81-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_create_datasource.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_create_datasource.yaml index 630d4dc9c811..dfe7c247e258 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_create_datasource.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_create_datasource.yaml @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search54bc1a2e.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search54bc1a2e.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search54bc1a2e.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BAF6FA8D51B\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search54bc1a2e.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E7359941F9\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:50:55 GMT + - Sat, 08 May 2021 06:04:58 GMT elapsed-time: - - '55' + - '80' etag: - - W/"0x8D91BAF6FA8D51B" + - W/"0x8D911E7359941F9" expires: - '-1' location: - - https://search54bc1a2e.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://search54bc1a2e.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 8afbe6f8-b98b-11eb-8322-a0481ca055a9 + - 509db8de-afc3-11eb-a55c-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_create_or_update_datasource.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_create_or_update_datasource.yaml index ec3485a9125a..52c76ebe194f 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_create_or_update_datasource.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_create_or_update_datasource.yaml @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search715d1e50.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search715d1e50.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search715d1e50.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB94E41BC26\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search715d1e50.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E7404748DE\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 18:01:34 GMT + - Sat, 08 May 2021 06:05:16 GMT elapsed-time: - - '64' + - '79' etag: - - W/"0x8D91BB94E41BC26" + - W/"0x8D911E7404748DE" expires: - '-1' location: - - https://search715d1e50.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://search715d1e50.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 69993a7b-b995-11eb-a3e5-a0481ca055a9 + - 5b4a9eea-afc3-11eb-89c9-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -61,12 +61,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search715d1e50.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search715d1e50.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search715d1e50.search.windows.net/$metadata#datasources","value":[{"@odata.etag":"\"0x8D91BB94E41BC26\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}]}' + string: '{"@odata.context":"https://search715d1e50.search.windows.net/$metadata#datasources","value":[{"@odata.etag":"\"0x8D911E7404748DE\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}]}' headers: cache-control: - no-cache @@ -75,9 +75,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 18:01:34 GMT + - Sat, 08 May 2021 06:05:16 GMT elapsed-time: - - '10' + - '28' expires: - '-1' odata-version: @@ -87,7 +87,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 69d3b1fc-b995-11eb-b9ca-a0481ca055a9 + - 5b9d0684-afc3-11eb-b37b-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -113,12 +113,12 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search715d1e50.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + uri: https://search715d1e50.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search715d1e50.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB94E657728\"","name":"sample-datasource","description":"updated","type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search715d1e50.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E7407C6C3E\"","name":"sample-datasource","description":"updated","type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -127,11 +127,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 18:01:34 GMT + - Sat, 08 May 2021 06:05:16 GMT elapsed-time: - - '33' + - '32' etag: - - W/"0x8D91BB94E657728" + - W/"0x8D911E7407C6C3E" expires: - '-1' odata-version: @@ -141,7 +141,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 69e2a5a3-b995-11eb-80bf-a0481ca055a9 + - 5bb618d7-afc3-11eb-98de-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -159,12 +159,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search715d1e50.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search715d1e50.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search715d1e50.search.windows.net/$metadata#datasources","value":[{"@odata.etag":"\"0x8D91BB94E657728\"","name":"sample-datasource","description":"updated","type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}]}' + string: '{"@odata.context":"https://search715d1e50.search.windows.net/$metadata#datasources","value":[{"@odata.etag":"\"0x8D911E7407C6C3E\"","name":"sample-datasource","description":"updated","type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}]}' headers: cache-control: - no-cache @@ -173,7 +173,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 18:01:34 GMT + - Sat, 08 May 2021 06:05:16 GMT elapsed-time: - '12' expires: @@ -185,7 +185,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 69f7b43b-b995-11eb-b25c-a0481ca055a9 + - 5bcef906-afc3-11eb-9f3d-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -203,12 +203,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search715d1e50.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + uri: https://search715d1e50.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search715d1e50.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB94E657728\"","name":"sample-datasource","description":"updated","type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search715d1e50.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E7407C6C3E\"","name":"sample-datasource","description":"updated","type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -217,11 +217,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 18:01:34 GMT + - Sat, 08 May 2021 06:05:16 GMT elapsed-time: - - '8' + - '7' etag: - - W/"0x8D91BB94E657728" + - W/"0x8D911E7407C6C3E" expires: - '-1' odata-version: @@ -231,7 +231,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 6a0a78ef-b995-11eb-9862-a0481ca055a9 + - 5be6334a-afc3-11eb-a714-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_create_or_update_datasource_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_create_or_update_datasource_if_unchanged.yaml index dfdd12a937b6..d5ddab872491 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_create_or_update_datasource_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_create_or_update_datasource_if_unchanged.yaml @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search2014238a.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search2014238a.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search2014238a.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB0904BB4DA\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search2014238a.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E74B69D19B\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:58:59 GMT + - Sat, 08 May 2021 06:05:34 GMT elapsed-time: - - '204' + - '67' etag: - - W/"0x8D91BB0904BB4DA" + - W/"0x8D911E74B69D19B" expires: - '-1' location: - - https://search2014238a.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://search2014238a.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - ab83182d-b98c-11eb-8386-a0481ca055a9 + - 666a8126-afc3-11eb-bce7-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -69,12 +69,12 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search2014238a.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + uri: https://search2014238a.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search2014238a.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB090605207\"","name":"sample-datasource","description":"updated","type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search2014238a.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E74B891F17\"","name":"sample-datasource","description":"updated","type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -83,11 +83,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:58:59 GMT + - Sat, 08 May 2021 06:05:34 GMT elapsed-time: - - '38' + - '35' etag: - - W/"0x8D91BB090605207" + - W/"0x8D911E74B891F17" expires: - '-1' odata-version: @@ -97,7 +97,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - abdc3e83-b98c-11eb-9923-a0481ca055a9 + - 66c09251-afc3-11eb-9703-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -108,7 +108,7 @@ interactions: - request: body: '{"name": "sample-datasource", "description": "changed", "type": "azureblob", "credentials": {"connectionString": "DefaultEndpointsProtocol=https;AccountName=storagename;AccountKey=NzhL3hKZbJBuJ2484dPTR+xF30kYaWSSCbs2BzLgVVI1woqeST/1IgqaLm6QAOTxtGvxctSNbIR/1hW8yH+bJg==;EndpointSuffix=core.windows.net"}, - "container": {"name": "searchcontainer"}, "@odata.etag": "\"0x8D91BB0904BB4DA\""}' + "container": {"name": "searchcontainer"}, "@odata.etag": "\"0x8D911E74B69D19B\""}' headers: Accept: - application/json;odata.metadata=minimal @@ -121,13 +121,13 @@ interactions: Content-Type: - application/json If-Match: - - '"0x8D91BB0904BB4DA"' + - '"0x8D911E74B69D19B"' Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search2014238a.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + uri: https://search2014238a.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview response: body: string: '{"error":{"code":"","message":"The precondition given in one of the @@ -143,9 +143,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:58:59 GMT + - Sat, 08 May 2021 06:05:35 GMT elapsed-time: - - '9' + - '11' expires: - '-1' odata-version: @@ -155,7 +155,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - abef5155-b98c-11eb-95a7-a0481ca055a9 + - 66db7558-afc3-11eb-aa96-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_delete_datasource.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_delete_datasource.yaml index ce41257820e9..8442cb44472e 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_delete_datasource.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_delete_datasource.yaml @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search549e1a2d.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search549e1a2d.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search549e1a2d.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB09AB97348\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search549e1a2d.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E75830E0A7\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:59:17 GMT + - Sat, 08 May 2021 06:05:56 GMT elapsed-time: - - '92' + - '66' etag: - - W/"0x8D91BB09AB97348" + - W/"0x8D911E75830E0A7" expires: - '-1' location: - - https://search549e1a2d.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://search549e1a2d.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - b5ff2c84-b98c-11eb-a315-a0481ca055a9 + - 73337b20-afc3-11eb-ad9e-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -61,12 +61,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search549e1a2d.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search549e1a2d.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search549e1a2d.search.windows.net/$metadata#datasources","value":[{"@odata.etag":"\"0x8D91BB09AB97348\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}]}' + string: '{"@odata.context":"https://search549e1a2d.search.windows.net/$metadata#datasources","value":[{"@odata.etag":"\"0x8D911E75830E0A7\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}]}' headers: cache-control: - no-cache @@ -75,9 +75,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:59:17 GMT + - Sat, 08 May 2021 06:05:56 GMT elapsed-time: - - '55' + - '16' expires: - '-1' odata-version: @@ -87,7 +87,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - b6495966-b98c-11eb-ac5f-a0481ca055a9 + - 738778f7-afc3-11eb-9af4-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -107,9 +107,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://search549e1a2d.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + uri: https://search549e1a2d.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview response: body: string: '' @@ -117,15 +117,15 @@ interactions: cache-control: - no-cache date: - - Thu, 20 May 2021 16:59:17 GMT + - Sat, 08 May 2021 06:05:56 GMT elapsed-time: - - '75' + - '48' expires: - '-1' pragma: - no-cache request-id: - - b66067f3-b98c-11eb-bb46-a0481ca055a9 + - 739d5b83-afc3-11eb-be84-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -141,9 +141,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search549e1a2d.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search549e1a2d.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: string: '{"@odata.context":"https://search549e1a2d.search.windows.net/$metadata#datasources","value":[]}' @@ -155,9 +155,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:59:17 GMT + - Sat, 08 May 2021 06:05:56 GMT elapsed-time: - - '8' + - '15' expires: - '-1' odata-version: @@ -167,7 +167,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - b67f5d23-b98c-11eb-89d6-a0481ca055a9 + - 73b7f514-afc3-11eb-9790-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_delete_datasource_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_delete_datasource_if_unchanged.yaml index 9cf82c020b04..73f97c8a3397 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_delete_datasource_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_delete_datasource_if_unchanged.yaml @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchcd7f1f67.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searchcd7f1f67.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchcd7f1f67.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB0A54E4917\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchcd7f1f67.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E763466EB0\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:59:34 GMT + - Sat, 08 May 2021 06:06:14 GMT elapsed-time: - - '34' + - '116' etag: - - W/"0x8D91BB0A54E4917" + - W/"0x8D911E763466EB0" expires: - '-1' location: - - https://searchcd7f1f67.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://searchcd7f1f67.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - c0a20a73-b98c-11eb-8b00-a0481ca055a9 + - 7e4b9ec1-afc3-11eb-a2f0-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -69,12 +69,12 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://searchcd7f1f67.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + uri: https://searchcd7f1f67.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchcd7f1f67.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB0A56CFA38\"","name":"sample-datasource","description":"updated","type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchcd7f1f67.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E76364837B\"","name":"sample-datasource","description":"updated","type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -83,11 +83,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:59:35 GMT + - Sat, 08 May 2021 06:06:14 GMT elapsed-time: - - '109' + - '36' etag: - - W/"0x8D91BB0A56CFA38" + - W/"0x8D911E76364837B" expires: - '-1' odata-version: @@ -97,7 +97,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - c0dd162e-b98c-11eb-b3dc-a0481ca055a9 + - 7e9f2227-afc3-11eb-9502-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -117,11 +117,11 @@ interactions: Content-Length: - '0' If-Match: - - '"0x8D91BB0A54E4917"' + - '"0x8D911E763466EB0"' User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://searchcd7f1f67.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + uri: https://searchcd7f1f67.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview response: body: string: '{"error":{"code":"","message":"The precondition given in one of the @@ -137,9 +137,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:59:35 GMT + - Sat, 08 May 2021 06:06:14 GMT elapsed-time: - - '8' + - '6' expires: - '-1' odata-version: @@ -149,7 +149,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - c0fb4c87-b98c-11eb-8cd8-a0481ca055a9 + - 7eb76619-afc3-11eb-a490-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_delete_datasource_string_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_delete_datasource_string_if_unchanged.yaml index 58c2a96b15c9..6174d9c8aefa 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_delete_datasource_string_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_delete_datasource_string_if_unchanged.yaml @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchb71c225d.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searchb71c225d.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchb71c225d.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB0B09BBAF2\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchb71c225d.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E76BFE64A2\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:59:54 GMT + - Sat, 08 May 2021 06:06:29 GMT elapsed-time: - - '55' + - '59' etag: - - W/"0x8D91BB0B09BBAF2" + - W/"0x8D911E76BFE64A2" expires: - '-1' location: - - https://searchb71c225d.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://searchb71c225d.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - cbdfa52e-b98c-11eb-a33d-a0481ca055a9 + - 870d59d3-afc3-11eb-a3a4-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -69,12 +69,12 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://searchb71c225d.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + uri: https://searchb71c225d.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchb71c225d.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB0B0B49EAE\"","name":"sample-datasource","description":"updated","type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchb71c225d.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E76C1E9CA8\"","name":"sample-datasource","description":"updated","type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -83,11 +83,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 16:59:54 GMT + - Sat, 08 May 2021 06:06:29 GMT elapsed-time: - - '47' + - '36' etag: - - W/"0x8D91BB0B0B49EAE" + - W/"0x8D911E76C1E9CA8" expires: - '-1' odata-version: @@ -97,7 +97,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - cc2bde04-b98c-11eb-abbf-a0481ca055a9 + - 875495a7-afc3-11eb-9106-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_get_datasource.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_get_datasource.yaml index 9b5e2ba8c8d3..f762a4805093 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_get_datasource.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_get_datasource.yaml @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search7d318fa.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search7d318fa.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search7d318fa.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB0BC6AF789\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search7d318fa.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E77B6C571E\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:00:13 GMT + - Sat, 08 May 2021 06:06:55 GMT elapsed-time: - - '175' + - '66' etag: - - W/"0x8D91BB0BC6AF789" + - W/"0x8D911E77B6C571E" expires: - '-1' location: - - https://search7d318fa.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://search7d318fa.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - d7a433c6-b98c-11eb-b214-a0481ca055a9 + - 966b6277-afc3-11eb-af45-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -61,12 +61,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search7d318fa.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + uri: https://search7d318fa.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search7d318fa.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB0BC6AF789\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search7d318fa.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E77B6C571E\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -75,11 +75,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:00:13 GMT + - Sat, 08 May 2021 06:06:55 GMT elapsed-time: - - '20' + - '16' etag: - - W/"0x8D91BB0BC6AF789" + - W/"0x8D911E77B6C571E" expires: - '-1' odata-version: @@ -89,7 +89,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - d7fba207-b98c-11eb-a71a-a0481ca055a9 + - 96c2b2ed-afc3-11eb-be72-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_list_datasource.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_list_datasource.yaml index 1798845e140b..bebf9b6d333e 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_list_datasource.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_data_source_live.test_list_datasource.yaml @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search22291976.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search22291976.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search22291976.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB0C9102B5C\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search22291976.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E785CF3D9D\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:00:34 GMT + - Sat, 08 May 2021 06:07:13 GMT elapsed-time: - - '40' + - '71' etag: - - W/"0x8D91BB0C9102B5C" + - W/"0x8D911E785CF3D9D" expires: - '-1' location: - - https://search22291976.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://search22291976.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - e457a63a-b98c-11eb-99ee-a0481ca055a9 + - a0d06f79-afc3-11eb-af33-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -67,12 +67,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search22291976.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search22291976.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search22291976.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB0C92CB929\"","name":"another-sample","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search22291976.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E785EF2775\"","name":"another-sample","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -81,15 +81,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:00:35 GMT + - Sat, 08 May 2021 06:07:13 GMT elapsed-time: - - '161' + - '62' etag: - - W/"0x8D91BB0C92CB929" + - W/"0x8D911E785EF2775" expires: - '-1' location: - - https://search22291976.search.windows.net/datasources('another-sample')?api-version=2020-06-30 + - https://search22291976.search.windows.net/datasources('another-sample')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -97,7 +97,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - e49e0756-b98c-11eb-8b2f-a0481ca055a9 + - a1261801-afc3-11eb-b743-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -113,12 +113,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search22291976.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search22291976.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search22291976.search.windows.net/$metadata#datasources","value":[{"@odata.etag":"\"0x8D91BB0C92CB929\"","name":"another-sample","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null},{"@odata.etag":"\"0x8D91BB0C9102B5C\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}]}' + string: '{"@odata.context":"https://search22291976.search.windows.net/$metadata#datasources","value":[{"@odata.etag":"\"0x8D911E785EF2775\"","name":"another-sample","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null},{"@odata.etag":"\"0x8D911E785CF3D9D\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}]}' headers: cache-control: - no-cache @@ -127,9 +127,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:00:35 GMT + - Sat, 08 May 2021 06:07:13 GMT elapsed-time: - - '29' + - '28' expires: - '-1' odata-version: @@ -139,7 +139,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - e4c27f48-b98c-11eb-89eb-a0481ca055a9 + - a144ccda-afc3-11eb-b369-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_analyze_text.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_analyze_text.yaml index d742ae5cab84..e76f840706ed 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_analyze_text.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_analyze_text.yaml @@ -13,23 +13,23 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchcf75135f.search.windows.net/indexes('drgqefsg')/search.analyze?api-version=2020-06-30 + uri: https://searchcf75135f.search.windows.net/indexes('drgqefsg')/search.analyze?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchcf75135f.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.AnalyzeResult","tokens":[{"token":"one''s","startOffset":0,"endOffset":5,"position":0},{"token":"two","startOffset":7,"endOffset":10,"position":1}]}' + string: '{"@odata.context":"https://searchcf75135f.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.AnalyzeResult","tokens":[{"token":"one''s","startOffset":0,"endOffset":5,"position":0},{"token":"two","startOffset":7,"endOffset":10,"position":1}]}' headers: cache-control: - no-cache content-length: - - '253' + - '261' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:01:04 GMT + - Sat, 08 May 2021 06:07:29 GMT elapsed-time: - - '694' + - '158' expires: - '-1' odata-version: @@ -39,7 +39,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - f57b4f77-b98c-11eb-8183-a0481ca055a9 + - aa930140-afc3-11eb-a29a-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_create_index.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_create_index.yaml index 20e79ea7310b..5e1a267421bb 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_create_index.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_create_index.yaml @@ -18,29 +18,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchce941332.search.windows.net/indexes?api-version=2020-06-30 + uri: https://searchce941332.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchce941332.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB0E6735D94\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"baseRate","type":"Edm.Double","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]}],"scoringProfiles":[{"name":"MyProfile","functionAggregation":null,"text":null,"functions":[]}],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' + string: '{"@odata.context":"https://searchce941332.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E79B0DAB9D\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"normalizer":null,"synonymMaps":[]},{"name":"baseRate","type":"Edm.Double","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"normalizer":null,"synonymMaps":[]}],"scoringProfiles":[{"name":"MyProfile","functionAggregation":null,"text":null,"functions":[]}],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"normalizers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' headers: cache-control: - no-cache content-length: - - '967' + - '1020' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:01:24 GMT + - Sat, 08 May 2021 06:07:47 GMT elapsed-time: - - '624' + - '858' etag: - - W/"0x8D91BB0E6735D94" + - W/"0x8D911E79B0DAB9D" expires: - '-1' location: - - https://searchce941332.search.windows.net/indexes('hotels')?api-version=2020-06-30 + - https://searchce941332.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -48,7 +48,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 01699077-b98d-11eb-a70b-a0481ca055a9 + - b59b91c6-afc3-11eb-a2f7-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_create_or_update_index.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_create_or_update_index.yaml index 659ef2204b3e..c9f6205892f9 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_create_or_update_index.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_create_or_update_index.yaml @@ -20,29 +20,29 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://searcha5711754.search.windows.net/indexes('hotels')?api-version=2020-06-30 + uri: https://searcha5711754.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searcha5711754.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB0F2CE0BC1\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"baseRate","type":"Edm.Double","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]}],"scoringProfiles":[],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' + string: '{"@odata.context":"https://searcha5711754.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E7A5DCD4DC\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"normalizer":null,"synonymMaps":[]},{"name":"baseRate","type":"Edm.Double","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"normalizer":null,"synonymMaps":[]}],"scoringProfiles":[],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"normalizers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' headers: cache-control: - no-cache content-length: - - '893' + - '946' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:01:45 GMT + - Sat, 08 May 2021 06:08:06 GMT elapsed-time: - - '1526' + - '816' etag: - - W/"0x8D91BB0F2CE0BC1" + - W/"0x8D911E7A5DCD4DC" expires: - '-1' location: - - https://searcha5711754.search.windows.net/indexes('hotels')?api-version=2020-06-30 + - https://searcha5711754.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -50,7 +50,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 0d3c4552-b98d-11eb-8cdf-a0481ca055a9 + - c068fd2f-afc3-11eb-b650-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -77,25 +77,25 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://searcha5711754.search.windows.net/indexes('hotels')?api-version=2020-06-30 + uri: https://searcha5711754.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searcha5711754.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB0F2FD3A93\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"baseRate","type":"Edm.Double","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]}],"scoringProfiles":[{"name":"MyProfile","functionAggregation":null,"text":null,"functions":[]}],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' + string: '{"@odata.context":"https://searcha5711754.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E7A60FADE5\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"normalizer":null,"synonymMaps":[]},{"name":"baseRate","type":"Edm.Double","searchable":false,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"normalizer":null,"synonymMaps":[]}],"scoringProfiles":[{"name":"MyProfile","functionAggregation":null,"text":null,"functions":[]}],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"normalizers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' headers: cache-control: - no-cache content-length: - - '967' + - '1020' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:01:45 GMT + - Sat, 08 May 2021 06:08:06 GMT elapsed-time: - - '315' + - '162' etag: - - W/"0x8D91BB0F2FD3A93" + - W/"0x8D911E7A60FADE5" expires: - '-1' odata-version: @@ -105,7 +105,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 0e625867-b98d-11eb-ad5e-a0481ca055a9 + - c133874c-afc3-11eb-bd6a-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_create_or_update_indexes_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_create_or_update_indexes_if_unchanged.yaml index 77a9b8d47c63..57c485a21d5a 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_create_or_update_indexes_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_create_or_update_indexes_if_unchanged.yaml @@ -16,29 +16,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search34391d66.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search34391d66.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search34391d66.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB0FD7A3E0B\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"baseRate","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":null,"text":null,"functions":[]}],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' + string: '{"@odata.context":"https://search34391d66.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E7B078AFC4\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"normalizer":null,"synonymMaps":[]},{"name":"baseRate","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":null,"text":null,"functions":[]}],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"normalizers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' headers: cache-control: - no-cache content-length: - - '961' + - '1014' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:02:02 GMT + - Sat, 08 May 2021 06:08:24 GMT elapsed-time: - - '873' + - '840' etag: - - W/"0x8D91BB0FD7A3E0B" + - W/"0x8D911E7B078AFC4" expires: - '-1' location: - - https://search34391d66.search.windows.net/indexes('hotels')?api-version=2020-06-30 + - https://search34391d66.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -46,7 +46,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 18423f58-b98d-11eb-a281-a0481ca055a9 + - cb037994-afc3-11eb-8e79-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -71,25 +71,25 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search34391d66.search.windows.net/indexes('hotels')?api-version=2020-06-30 + uri: https://search34391d66.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search34391d66.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB0FDAC2C8A\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"baseRate","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":[],"analyzers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' + string: '{"@odata.context":"https://search34391d66.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E7B0A5E27A\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"normalizer":null,"synonymMaps":[]},{"name":"baseRate","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":[],"analyzers":[],"normalizers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' headers: cache-control: - no-cache content-length: - - '887' + - '940' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:02:02 GMT + - Sat, 08 May 2021 06:08:24 GMT elapsed-time: - - '205' + - '131' etag: - - W/"0x8D91BB0FDAC2C8A" + - W/"0x8D911E7B0A5E27A" expires: - '-1' odata-version: @@ -99,7 +99,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 190a7b40-b98d-11eb-ab63-a0481ca055a9 + - cbd13597-afc3-11eb-927a-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -111,7 +111,7 @@ interactions: body: '{"name": "hotels", "fields": [{"name": "hotelId", "type": "Edm.String", "key": true, "retrievable": true, "searchable": false}, {"name": "baseRate", "type": "Edm.Double", "retrievable": true}], "scoringProfiles": [], "corsOptions": - {"allowedOrigins": ["*"], "maxAgeInSeconds": 60}, "@odata.etag": "\"0x8D91BB0FD7A3E0B\""}' + {"allowedOrigins": ["*"], "maxAgeInSeconds": 60}, "@odata.etag": "\"0x8D911E7B078AFC4\""}' headers: Accept: - application/json;odata.metadata=minimal @@ -124,13 +124,13 @@ interactions: Content-Type: - application/json If-Match: - - '"0x8D91BB0FD7A3E0B"' + - '"0x8D911E7B078AFC4"' Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search34391d66.search.windows.net/indexes('hotels')?api-version=2020-06-30 + uri: https://search34391d66.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview response: body: string: '{"error":{"code":"","message":"The precondition given in one of the @@ -146,9 +146,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:02:02 GMT + - Sat, 08 May 2021 06:08:24 GMT elapsed-time: - - '24' + - '20' expires: - '-1' odata-version: @@ -158,7 +158,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 193bd0e2-b98d-11eb-9a41-a0481ca055a9 + - cbf8e494-afc3-11eb-abf3-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_delete_indexes.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_delete_indexes.yaml index e3aeacbae25f..ef4336215570 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_delete_indexes.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_delete_indexes.yaml @@ -11,9 +11,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://searchf61a1409.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://searchf61a1409.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: string: '' @@ -21,15 +21,15 @@ interactions: cache-control: - no-cache date: - - Thu, 20 May 2021 17:02:24 GMT + - Sat, 08 May 2021 06:08:43 GMT elapsed-time: - - '165' + - '163' expires: - '-1' pragma: - no-cache request-id: - - 25916a7c-b98d-11eb-93c3-a0481ca055a9 + - d6e94d5a-afc3-11eb-a3b4-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -45,9 +45,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchf61a1409.search.windows.net/indexes?api-version=2020-06-30 + uri: https://searchf61a1409.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: string: '{"@odata.context":"https://searchf61a1409.search.windows.net/$metadata#indexes","value":[]}' @@ -59,7 +59,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:02:29 GMT + - Sat, 08 May 2021 06:08:49 GMT elapsed-time: - '26' expires: @@ -71,7 +71,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 28d6354c-b98d-11eb-bbdb-a0481ca055a9 + - da470f9f-afc3-11eb-bc1b-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_delete_indexes_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_delete_indexes_if_unchanged.yaml index 3de80dc437ad..d979cf7acf32 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_delete_indexes_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_delete_indexes_if_unchanged.yaml @@ -16,29 +16,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search1f361943.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search1f361943.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search1f361943.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB11805FED5\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"baseRate","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":null,"text":null,"functions":[]}],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' + string: '{"@odata.context":"https://search1f361943.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E7C972FEBB\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"normalizer":null,"synonymMaps":[]},{"name":"baseRate","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":null,"text":null,"functions":[]}],"corsOptions":{"allowedOrigins":["*"],"maxAgeInSeconds":60},"suggesters":[],"analyzers":[],"normalizers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' headers: cache-control: - no-cache content-length: - - '961' + - '1014' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:02:47 GMT + - Sat, 08 May 2021 06:09:06 GMT elapsed-time: - - '948' + - '808' etag: - - W/"0x8D91BB11805FED5" + - W/"0x8D911E7C972FEBB" expires: - '-1' location: - - https://search1f361943.search.windows.net/indexes('hotels')?api-version=2020-06-30 + - https://search1f361943.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -46,7 +46,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 32d7175d-b98d-11eb-92b2-a0481ca055a9 + - e40f325f-afc3-11eb-a951-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -71,25 +71,25 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search1f361943.search.windows.net/indexes('hotels')?api-version=2020-06-30 + uri: https://search1f361943.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search1f361943.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB11828A867\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"baseRate","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":[],"analyzers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' + string: '{"@odata.context":"https://search1f361943.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E7C99DE713\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":true,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"normalizer":null,"synonymMaps":[]},{"name":"baseRate","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":[],"analyzers":[],"normalizers":[],"tokenizers":[],"tokenFilters":[],"charFilters":[],"encryptionKey":null,"similarity":{"@odata.type":"#Microsoft.Azure.Search.BM25Similarity","k1":null,"b":null}}' headers: cache-control: - no-cache content-length: - - '887' + - '940' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:02:47 GMT + - Sat, 08 May 2021 06:09:06 GMT elapsed-time: - - '143' + - '139' etag: - - W/"0x8D91BB11828A867" + - W/"0x8D911E7C99DE713" expires: - '-1' odata-version: @@ -99,7 +99,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 3395373a-b98d-11eb-8ba2-a0481ca055a9 + - e4c994ad-afc3-11eb-8159-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -119,11 +119,11 @@ interactions: Content-Length: - '0' If-Match: - - '"0x8D91BB11805FED5"' + - '"0x8D911E7C972FEBB"' User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://search1f361943.search.windows.net/indexes('hotels')?api-version=2020-06-30 + uri: https://search1f361943.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview response: body: string: '{"error":{"code":"","message":"The precondition given in one of the @@ -139,9 +139,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:02:47 GMT + - Sat, 08 May 2021 06:09:06 GMT elapsed-time: - - '33' + - '15' expires: - '-1' odata-version: @@ -151,7 +151,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 33b7653f-b98d-11eb-a423-a0481ca055a9 + - e4ef92a6-afc3-11eb-987f-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_get_index.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_get_index.yaml index 57bb60f9f30b..44838c0c3bf0 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_get_index.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_get_index.yaml @@ -9,25 +9,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search966a11fe.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30 + uri: https://search966a11fe.search.windows.net/indexes('drgqefsg')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search966a11fe.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB11FE1EC6A\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"city","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"stateProvince","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"country","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"postalCode","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]}]},{"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":"descriptionFr","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":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":[{"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}]}],"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}}' + string: '{"@odata.context":"https://search966a11fe.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E7D0F3C2F4\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"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":"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":"descriptionFr","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":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":[{"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}]}],"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}}' headers: cache-control: - no-cache content-length: - - '6227' + - '6676' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:03:03 GMT + - Sat, 08 May 2021 06:09:23 GMT elapsed-time: - - '53' + - '26' etag: - - W/"0x8D91BB11FE1EC6A" + - W/"0x8D911E7D0F3C2F4" expires: - '-1' odata-version: @@ -37,7 +37,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 3d7857e0-b98d-11eb-8cde-a0481ca055a9 + - ee677583-afc3-11eb-8c8e-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_get_index_statistics.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_get_index_statistics.yaml index 37afb23f1f65..278c760fec34 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_get_index_statistics.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_get_index_statistics.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search783716a8.search.windows.net/indexes('drgqefsg')/search.stats?api-version=2020-06-30 + uri: https://search783716a8.search.windows.net/indexes('drgqefsg')/search.stats?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search783716a8.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.IndexStatistics","documentCount":0,"storageSize":0}' + string: '{"@odata.context":"https://search783716a8.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.IndexStatistics","documentCount":0,"storageSize":0}' headers: cache-control: - no-cache content-length: - - '157' + - '165' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:03:21 GMT + - Sat, 08 May 2021 06:09:39 GMT elapsed-time: - - '27' + - '36' expires: - '-1' odata-version: @@ -35,7 +35,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 478dfa37-b98d-11eb-a9e5-a0481ca055a9 + - f83fce35-afc3-11eb-b4af-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_get_service_statistics.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_get_service_statistics.yaml index 72dda932a5f5..2e2cc11d6192 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_get_service_statistics.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_get_service_statistics.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searcha71e1781.search.windows.net/servicestats?api-version=2020-06-30 + uri: https://searcha71e1781.search.windows.net/servicestats?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searcha71e1781.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":0,"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}}' + string: '{"@odata.context":"https://searcha71e1781.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":0,"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}}' headers: cache-control: - no-cache content-length: - - '571' + - '579' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:03:32 GMT + - Sat, 08 May 2021 06:09:51 GMT elapsed-time: - - '238' + - '27' expires: - '-1' odata-version: @@ -35,7 +35,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 4e80b1fa-b98d-11eb-ac6a-a0481ca055a9 + - ff362710-afc3-11eb-98e3-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_list_indexes.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_list_indexes.yaml index b3c449244fc7..114e2a9ac12c 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_list_indexes.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_list_indexes.yaml @@ -9,23 +9,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchcf9c1352.search.windows.net/indexes?api-version=2020-06-30 + uri: https://searchcf9c1352.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchcf9c1352.search.windows.net/$metadata#indexes","value":[{"@odata.etag":"\"0x8D91BB13B67F23F\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"city","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"stateProvince","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"country","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]},{"name":"postalCode","type":"Edm.String","searchable":true,"filterable":true,"retrievable":true,"sortable":true,"facetable":true,"key":false,"indexAnalyzer":null,"searchAnalyzer":null,"analyzer":null,"synonymMaps":[]}]},{"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":"descriptionFr","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":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":[{"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}]}],"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}}]}' + string: '{"@odata.context":"https://searchcf9c1352.search.windows.net/$metadata#indexes","value":[{"@odata.etag":"\"0x8D911E7EBDA83FC\"","name":"drgqefsg","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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":"descriptionFr","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":"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":true,"filterable":false,"retrievable":true,"sortable":false,"facetable":false,"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":"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":"descriptionFr","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":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":[{"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}]}],"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}}]}' headers: cache-control: - no-cache content-length: - - '6231' + - '6680' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:03:50 GMT + - Sat, 08 May 2021 06:10:07 GMT elapsed-time: - - '86' + - '53' expires: - '-1' odata-version: @@ -35,7 +35,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 59051b22-b98d-11eb-8921-a0481ca055a9 + - 09501a99-afc4-11eb-961f-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_list_indexes_empty.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_list_indexes_empty.yaml index 697ee720e243..43003761d6f6 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_list_indexes_empty.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_live.test_list_indexes_empty.yaml @@ -9,9 +9,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search4c2f15e0.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search4c2f15e0.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: string: '{"@odata.context":"https://search4c2f15e0.search.windows.net/$metadata#indexes","value":[]}' @@ -23,9 +23,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:04:03 GMT + - Sat, 08 May 2021 06:10:22 GMT elapsed-time: - - '40' + - '25' expires: - '-1' odata-version: @@ -35,7 +35,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 60d00a22-b98d-11eb-b16f-a0481ca055a9 + - 11d72c1a-afc4-11eb-8637-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_create_or_update_skillset.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_create_or_update_skillset.yaml index ab19358b744e..016dc0b1be44 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_create_or_update_skillset.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_create_or_update_skillset.yaml @@ -18,12 +18,12 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://searche2bf1c71.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://searche2bf1c71.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searche2bf1c71.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB15035149B\"","name":"test-ss","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searche2bf1c71.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911E80363E8E1\"","name":"test-ss","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -32,15 +32,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:04:20 GMT + - Sat, 08 May 2021 06:10:43 GMT elapsed-time: - - '1424' + - '172' etag: - - W/"0x8D91BB15035149B" + - W/"0x8D911E80363E8E1" expires: - '-1' location: - - https://searche2bf1c71.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + - https://searche2bf1c71.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -48,7 +48,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 6ab5f1cd-b98d-11eb-97f1-a0481ca055a9 + - 1e640bdf-afc4-11eb-8680-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -73,12 +73,12 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://searche2bf1c71.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://searche2bf1c71.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searche2bf1c71.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB1504A4E2C\"","name":"test-ss","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searche2bf1c71.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911E80385328D\"","name":"test-ss","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -87,11 +87,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:04:21 GMT + - Sat, 08 May 2021 06:10:43 GMT elapsed-time: - - '45' + - '55' etag: - - W/"0x8D91BB1504A4E2C" + - W/"0x8D911E80385328D" expires: - '-1' odata-version: @@ -101,7 +101,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 6bc4a2a2-b98d-11eb-8a62-a0481ca055a9 + - 1ebb1e81-afc4-11eb-b775-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -119,12 +119,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searche2bf1c71.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://searche2bf1c71.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searche2bf1c71.search.windows.net/$metadata#skillsets","value":[{"@odata.etag":"\"0x8D91BB1504A4E2C\"","name":"test-ss","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}]}' + string: '{"@odata.context":"https://searche2bf1c71.search.windows.net/$metadata#skillsets","value":[{"@odata.etag":"\"0x8D911E80385328D\"","name":"test-ss","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}]}' headers: cache-control: - no-cache @@ -133,9 +133,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:04:21 GMT + - Sat, 08 May 2021 06:10:43 GMT elapsed-time: - - '35' + - '19' expires: - '-1' odata-version: @@ -145,7 +145,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 6bd915ce-b98d-11eb-aed9-a0481ca055a9 + - 1ed8096e-afc4-11eb-977c-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -163,12 +163,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searche2bf1c71.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://searche2bf1c71.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searche2bf1c71.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB1504A4E2C\"","name":"test-ss","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searche2bf1c71.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911E80385328D\"","name":"test-ss","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -177,11 +177,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:04:21 GMT + - Sat, 08 May 2021 06:10:43 GMT elapsed-time: - '12' etag: - - W/"0x8D91BB1504A4E2C" + - W/"0x8D911E80385328D" expires: - '-1' odata-version: @@ -191,7 +191,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 6beaef54-b98d-11eb-9c95-a0481ca055a9 + - 1ef13333-afc4-11eb-9082-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_create_or_update_skillset_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_create_or_update_skillset_if_unchanged.yaml index ad67d4c8f617..415b07601342 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_create_or_update_skillset_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_create_or_update_skillset_if_unchanged.yaml @@ -18,12 +18,12 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search792321ab.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://search792321ab.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search792321ab.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB15B13AABE\"","name":"test-ss","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search792321ab.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911E810C18724\"","name":"test-ss","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -32,15 +32,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:04:40 GMT + - Sat, 08 May 2021 06:11:06 GMT elapsed-time: - - '1337' + - '208' etag: - - W/"0x8D91BB15B13AABE" + - W/"0x8D911E810C18724" expires: - '-1' location: - - https://search792321ab.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + - https://search792321ab.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -48,7 +48,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 75a5044b-b98d-11eb-b815-a0481ca055a9 + - 2bb55d90-afc4-11eb-bc03-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -73,12 +73,12 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search792321ab.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://search792321ab.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search792321ab.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB15B26C108\"","name":"test-ss","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search792321ab.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911E810E59075\"","name":"test-ss","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -87,11 +87,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:04:40 GMT + - Sat, 08 May 2021 06:11:06 GMT elapsed-time: - - '39' + - '64' etag: - - W/"0x8D91BB15B26C108" + - W/"0x8D911E810E59075" expires: - '-1' odata-version: @@ -101,7 +101,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 76a29e1f-b98d-11eb-9d29-a0481ca055a9 + - 2c1a58bf-afc4-11eb-b9ed-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -119,12 +119,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search792321ab.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://search792321ab.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search792321ab.search.windows.net/$metadata#skillsets","value":[{"@odata.etag":"\"0x8D91BB15B26C108\"","name":"test-ss","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}]}' + string: '{"@odata.context":"https://search792321ab.search.windows.net/$metadata#skillsets","value":[{"@odata.etag":"\"0x8D911E810E59075\"","name":"test-ss","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}]}' headers: cache-control: - no-cache @@ -133,9 +133,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:04:40 GMT + - Sat, 08 May 2021 06:11:06 GMT elapsed-time: - - '28' + - '36' expires: - '-1' odata-version: @@ -145,7 +145,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 76b514b2-b98d-11eb-a9c1-a0481ca055a9 + - 2c37cb65-afc4-11eb-8289-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_create_or_update_skillset_inplace.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_create_or_update_skillset_inplace.yaml index 8cd8f99613dc..906365d41169 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_create_or_update_skillset_inplace.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_create_or_update_skillset_inplace.yaml @@ -18,12 +18,12 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://searchd4ef1fac.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://searchd4ef1fac.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchd4ef1fac.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB1649AAFD2\"","name":"test-ss","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchd4ef1fac.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911E81B6021B0\"","name":"test-ss","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -32,15 +32,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:04:56 GMT + - Sat, 08 May 2021 06:11:23 GMT elapsed-time: - - '38' + - '150' etag: - - W/"0x8D91BB1649AAFD2" + - W/"0x8D911E81B6021B0" expires: - '-1' location: - - https://searchd4ef1fac.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + - https://searchd4ef1fac.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -48,7 +48,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 7ff19552-b98d-11eb-8ae0-a0481ca055a9 + - 366388d2-afc4-11eb-b6b6-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -73,12 +73,12 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://searchd4ef1fac.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://searchd4ef1fac.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchd4ef1fac.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB164AE6278\"","name":"test-ss","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchd4ef1fac.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911E81B882355\"","name":"test-ss","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -87,11 +87,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:04:56 GMT + - Sat, 08 May 2021 06:11:23 GMT elapsed-time: - - '38' + - '48' etag: - - W/"0x8D91BB164AE6278" + - W/"0x8D911E81B882355" expires: - '-1' odata-version: @@ -101,7 +101,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 8029e33b-b98d-11eb-98dd-a0481ca055a9 + - 36bfe0f8-afc4-11eb-8b6e-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -119,12 +119,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchd4ef1fac.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://searchd4ef1fac.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchd4ef1fac.search.windows.net/$metadata#skillsets","value":[{"@odata.etag":"\"0x8D91BB164AE6278\"","name":"test-ss","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}]}' + string: '{"@odata.context":"https://searchd4ef1fac.search.windows.net/$metadata#skillsets","value":[{"@odata.etag":"\"0x8D911E81B882355\"","name":"test-ss","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}]}' headers: cache-control: - no-cache @@ -133,9 +133,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:04:56 GMT + - Sat, 08 May 2021 06:11:23 GMT elapsed-time: - - '16' + - '15' expires: - '-1' odata-version: @@ -145,7 +145,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 803ccf07-b98d-11eb-b669-a0481ca055a9 + - 36db7825-afc4-11eb-9028-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -163,12 +163,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchd4ef1fac.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://searchd4ef1fac.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchd4ef1fac.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB164AE6278\"","name":"test-ss","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchd4ef1fac.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911E81B882355\"","name":"test-ss","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -177,11 +177,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:04:56 GMT + - Sat, 08 May 2021 06:11:23 GMT elapsed-time: - - '47' + - '10' etag: - - W/"0x8D91BB164AE6278" + - W/"0x8D911E81B882355" expires: - '-1' odata-version: @@ -191,7 +191,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 804b9c18-b98d-11eb-8590-a0481ca055a9 + - 36f19366-afc4-11eb-9037-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_create_skillset.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_create_skillset.yaml index de2bf6eecf02..cb742deedcda 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_create_skillset.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_create_skillset.yaml @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchd998184f.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://searchd998184f.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchd998184f.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB1708B0EBD\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchd998184f.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911E827B8CAB8\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:05:16 GMT + - Sat, 08 May 2021 06:11:44 GMT elapsed-time: - - '1255' + - '110' etag: - - W/"0x8D91BB1708B0EBD" + - W/"0x8D911E827B8CAB8" expires: - '-1' location: - - https://searchd998184f.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + - https://searchd998184f.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 8b2bbad2-b98d-11eb-954d-a0481ca055a9 + - 42b6f342-afc4-11eb-b936-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -61,12 +61,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchd998184f.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://searchd998184f.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchd998184f.search.windows.net/$metadata#skillsets","value":[{"@odata.etag":"\"0x8D91BB1708B0EBD\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}]}' + string: '{"@odata.context":"https://searchd998184f.search.windows.net/$metadata#skillsets","value":[{"@odata.etag":"\"0x8D911E827B8CAB8\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}]}' headers: cache-control: - no-cache @@ -75,9 +75,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:05:16 GMT + - Sat, 08 May 2021 06:11:44 GMT elapsed-time: - - '35' + - '23' expires: - '-1' odata-version: @@ -87,7 +87,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 8c1a87d8-b98d-11eb-9ada-a0481ca055a9 + - 4315e0bb-afc4-11eb-9b68-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_delete_skillset.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_delete_skillset.yaml index 5e45316498ac..b0a804a2899c 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_delete_skillset.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_delete_skillset.yaml @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchd97c184e.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://searchd97c184e.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchd97c184e.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB17CC68E4B\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchd97c184e.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911E832C15E19\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:05:36 GMT + - Sat, 08 May 2021 06:12:03 GMT elapsed-time: - - '47' + - '196' etag: - - W/"0x8D91BB17CC68E4B" + - W/"0x8D911E832C15E19" expires: - '-1' location: - - https://searchd97c184e.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + - https://searchd97c184e.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 98213ad7-b98d-11eb-83d0-a0481ca055a9 + - 4dba086d-afc4-11eb-979d-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -61,12 +61,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchd97c184e.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://searchd97c184e.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchd97c184e.search.windows.net/$metadata#skillsets","value":[{"@odata.etag":"\"0x8D91BB17CC68E4B\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}]}' + string: '{"@odata.context":"https://searchd97c184e.search.windows.net/$metadata#skillsets","value":[{"@odata.etag":"\"0x8D911E832C15E19\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}]}' headers: cache-control: - no-cache @@ -75,9 +75,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:05:36 GMT + - Sat, 08 May 2021 06:12:03 GMT elapsed-time: - - '16' + - '17' expires: - '-1' odata-version: @@ -87,7 +87,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 98554307-b98d-11eb-82cd-a0481ca055a9 + - 4e1f889d-afc4-11eb-a2d5-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -107,9 +107,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://searchd97c184e.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://searchd97c184e.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: string: '' @@ -117,15 +117,15 @@ interactions: cache-control: - no-cache date: - - Thu, 20 May 2021 17:05:36 GMT + - Sat, 08 May 2021 06:12:03 GMT elapsed-time: - - '26' + - '78' expires: - '-1' pragma: - no-cache request-id: - - 986d5ee7-b98d-11eb-8218-a0481ca055a9 + - 4e376bf3-afc4-11eb-a489-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -141,9 +141,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchd97c184e.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://searchd97c184e.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: string: '{"@odata.context":"https://searchd97c184e.search.windows.net/$metadata#skillsets","value":[]}' @@ -155,9 +155,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:05:36 GMT + - Sat, 08 May 2021 06:12:03 GMT elapsed-time: - - '6' + - '64' expires: - '-1' odata-version: @@ -167,7 +167,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 987dd997-b98d-11eb-80b4-a0481ca055a9 + - 4e57c7d0-afc4-11eb-bf0d-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_delete_skillset_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_delete_skillset_if_unchanged.yaml index 17cfab64ed7a..17e55da828e3 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_delete_skillset_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_delete_skillset_if_unchanged.yaml @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search3a191d88.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://search3a191d88.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search3a191d88.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB187869A55\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search3a191d88.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911E83E1007B8\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:05:54 GMT + - Sat, 08 May 2021 06:12:21 GMT elapsed-time: - - '95' + - '78' etag: - - W/"0x8D91BB187869A55" + - W/"0x8D911E83E1007B8" expires: - '-1' location: - - https://search3a191d88.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + - https://search3a191d88.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - a2d65177-b98d-11eb-9578-a0481ca055a9 + - 5913f8ed-afc4-11eb-87c3-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -70,12 +70,12 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search3a191d88.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://search3a191d88.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search3a191d88.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB1879DD00D\"","name":"test-ss","description":"updated","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search3a191d88.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911E83E2FA35E\"","name":"test-ss","description":"updated","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -84,11 +84,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:05:54 GMT + - Sat, 08 May 2021 06:12:21 GMT elapsed-time: - - '43' + - '47' etag: - - W/"0x8D91BB1879DD00D" + - W/"0x8D911E83E2FA35E" expires: - '-1' odata-version: @@ -98,7 +98,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - a31a3843-b98d-11eb-95fc-a0481ca055a9 + - 59679343-afc4-11eb-bd01-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -118,11 +118,11 @@ interactions: Content-Length: - '0' If-Match: - - '"0x8D91BB187869A55"' + - '"0x8D911E83E1007B8"' User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://search3a191d88.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://search3a191d88.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: string: '{"error":{"code":"","message":"The precondition given in one of the @@ -138,9 +138,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:05:54 GMT + - Sat, 08 May 2021 06:12:22 GMT elapsed-time: - - '14' + - '8' expires: - '-1' odata-version: @@ -150,7 +150,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - a32cd5e7-b98d-11eb-8a5e-a0481ca055a9 + - 5982840e-afc4-11eb-a0a2-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_get_skillset.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_get_skillset.yaml index 5de325f4c2a3..0e9a476860e3 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_get_skillset.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_get_skillset.yaml @@ -15,12 +15,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search9274171b.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://search9274171b.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search9274171b.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB191576001\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search9274171b.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911E84845462E\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:06:10 GMT + - Sat, 08 May 2021 06:12:39 GMT elapsed-time: - - '65' + - '49' etag: - - W/"0x8D91BB191576001" + - W/"0x8D911E84845462E" expires: - '-1' location: - - https://search9274171b.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + - https://search9274171b.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - aca91f57-b98d-11eb-82b4-a0481ca055a9 + - 634d5cc2-afc4-11eb-a8cd-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -61,12 +61,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search9274171b.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://search9274171b.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search9274171b.search.windows.net/$metadata#skillsets","value":[{"@odata.etag":"\"0x8D91BB191576001\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}]}' + string: '{"@odata.context":"https://search9274171b.search.windows.net/$metadata#skillsets","value":[{"@odata.etag":"\"0x8D911E84845462E\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}]}' headers: cache-control: - no-cache @@ -75,9 +75,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:06:11 GMT + - Sat, 08 May 2021 06:12:39 GMT elapsed-time: - - '16' + - '14' expires: - '-1' odata-version: @@ -87,7 +87,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - ace5fd15-b98d-11eb-81b4-a0481ca055a9 + - 639a9c86-afc4-11eb-bcff-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -105,12 +105,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search9274171b.search.windows.net/skillsets('test-ss')?api-version=2020-06-30 + uri: https://search9274171b.search.windows.net/skillsets('test-ss')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search9274171b.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB191576001\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search9274171b.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911E84845462E\"","name":"test-ss","description":"desc","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -119,11 +119,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:06:11 GMT + - Sat, 08 May 2021 06:12:39 GMT elapsed-time: - - '12' + - '11' etag: - - W/"0x8D91BB191576001" + - W/"0x8D911E84845462E" expires: - '-1' odata-version: @@ -133,7 +133,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - acf8257f-b98d-11eb-bcc8-a0481ca055a9 + - 63b2454b-afc4-11eb-a470-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_get_skillsets.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_get_skillsets.yaml index 1e78505d4c41..f0e1a9978a5e 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_get_skillsets.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_skillset_live.test_get_skillsets.yaml @@ -16,12 +16,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchaa02178e.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://searchaa02178e.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchaa02178e.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB19C28FB76\"","name":"test-ss-1","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchaa02178e.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911E852B638BA\"","name":"test-ss-1","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -30,15 +30,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:06:29 GMT + - Sat, 08 May 2021 06:12:56 GMT elapsed-time: - - '49' + - '74' etag: - - W/"0x8D91BB19C28FB76" + - W/"0x8D911E852B638BA" expires: - '-1' location: - - https://searchaa02178e.search.windows.net/skillsets('test-ss-1')?api-version=2020-06-30 + - https://searchaa02178e.search.windows.net/skillsets('test-ss-1')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -46,7 +46,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - b77a5b1a-b98d-11eb-86a0-a0481ca055a9 + - 6dba3814-afc4-11eb-8661-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -69,12 +69,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchaa02178e.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://searchaa02178e.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchaa02178e.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D91BB19C3CAE1C\"","name":"test-ss-2","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchaa02178e.search.windows.net/$metadata#skillsets/$entity","@odata.etag":"\"0x8D911E852D0CA72\"","name":"test-ss-2","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":null,"description":null,"context":null,"categories":[],"defaultLanguageCode":null,"minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -83,15 +83,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:06:29 GMT + - Sat, 08 May 2021 06:12:56 GMT elapsed-time: - - '35' + - '65' etag: - - W/"0x8D91BB19C3CAE1C" + - W/"0x8D911E852D0CA72" expires: - '-1' location: - - https://searchaa02178e.search.windows.net/skillsets('test-ss-2')?api-version=2020-06-30 + - https://searchaa02178e.search.windows.net/skillsets('test-ss-2')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -99,7 +99,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - b7b7d954-b98d-11eb-94a0-a0481ca055a9 + - 6e0bc5ac-afc4-11eb-ae20-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -115,12 +115,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchaa02178e.search.windows.net/skillsets?api-version=2020-06-30 + uri: https://searchaa02178e.search.windows.net/skillsets?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchaa02178e.search.windows.net/$metadata#skillsets","value":[{"@odata.etag":"\"0x8D91BB19C28FB76\"","name":"test-ss-1","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null},{"@odata.etag":"\"0x8D91BB19C3CAE1C\"","name":"test-ss-2","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}]}' + string: '{"@odata.context":"https://searchaa02178e.search.windows.net/$metadata#skillsets","value":[{"@odata.etag":"\"0x8D911E852B638BA\"","name":"test-ss-1","description":"desc1","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null},{"@odata.etag":"\"0x8D911E852D0CA72\"","name":"test-ss-2","description":"desc2","skills":[{"@odata.type":"#Microsoft.Skills.Text.EntityRecognitionSkill","name":"#1","description":null,"context":"/document","categories":["Person","Quantity","Organization","URL","Email","Location","DateTime"],"defaultLanguageCode":"en","minimumPrecision":null,"includeTypelessEntities":null,"inputs":[{"name":"text","source":"/document/content","sourceContext":null,"inputs":[]}],"outputs":[{"name":"organizations","targetName":"organizations"}]}],"cognitiveServices":null,"knowledgeStore":null,"encryptionKey":null}]}' headers: cache-control: - no-cache @@ -129,9 +129,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:06:29 GMT + - Sat, 08 May 2021 06:12:56 GMT elapsed-time: - - '48' + - '22' expires: - '-1' odata-version: @@ -141,7 +141,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - b7cb3a3b-b98d-11eb-a15b-a0481ca055a9 + - 6e274c98-afc4-11eb-a6e3-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_create_or_update_synonym_map.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_create_or_update_synonym_map.yaml index c3d47d997fbb..4d12902cf273 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_create_or_update_synonym_map.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_create_or_update_synonym_map.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search9ae91f0f.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search9ae91f0f.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search9ae91f0f.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB1A605D144\"","name":"test-syn-map","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://search9ae91f0f.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911E85D419627\"","name":"test-syn-map","format":"solr","synonyms":"USA, United States, United States of America\nWashington, Wash. => WA","encryptionKey":null}' headers: cache-control: @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:06:45 GMT + - Sat, 08 May 2021 06:13:14 GMT elapsed-time: - - '66' + - '61' etag: - - W/"0x8D91BB1A605D144" + - W/"0x8D911E85D419627" expires: - '-1' location: - - https://search9ae91f0f.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + - https://search9ae91f0f.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - c159f96b-b98d-11eb-92fa-a0481ca055a9 + - 78452d04-afc4-11eb-9586-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -61,12 +61,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search9ae91f0f.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search9ae91f0f.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search9ae91f0f.search.windows.net/$metadata#synonymmaps","value":[{"@odata.etag":"\"0x8D91BB1A605D144\"","name":"test-syn-map","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://search9ae91f0f.search.windows.net/$metadata#synonymmaps","value":[{"@odata.etag":"\"0x8D911E85D419627\"","name":"test-syn-map","format":"solr","synonyms":"USA, United States, United States of America\nWashington, Wash. => WA","encryptionKey":null}]}' headers: cache-control: @@ -76,9 +76,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:06:45 GMT + - Sat, 08 May 2021 06:13:14 GMT elapsed-time: - - '21' + - '56' expires: - '-1' odata-version: @@ -88,7 +88,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - c193a700-b98d-11eb-8ee8-a0481ca055a9 + - 789754fb-afc4-11eb-903a-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -113,12 +113,12 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search9ae91f0f.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + uri: https://search9ae91f0f.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search9ae91f0f.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB1A626F3D2\"","name":"test-syn-map","format":"solr","synonyms":"Washington, + string: '{"@odata.context":"https://search9ae91f0f.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911E85D7B4E3B\"","name":"test-syn-map","format":"solr","synonyms":"Washington, Wash. => WA","encryptionKey":null}' headers: cache-control: @@ -128,11 +128,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:06:45 GMT + - Sat, 08 May 2021 06:13:14 GMT elapsed-time: - - '22' + - '21' etag: - - W/"0x8D91BB1A626F3D2" + - W/"0x8D911E85D7B4E3B" expires: - '-1' odata-version: @@ -142,7 +142,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - c1a50c21-b98d-11eb-95ef-a0481ca055a9 + - 78b571f3-afc4-11eb-9a2c-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -160,12 +160,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search9ae91f0f.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search9ae91f0f.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search9ae91f0f.search.windows.net/$metadata#synonymmaps","value":[{"@odata.etag":"\"0x8D91BB1A626F3D2\"","name":"test-syn-map","format":"solr","synonyms":"Washington, + string: '{"@odata.context":"https://search9ae91f0f.search.windows.net/$metadata#synonymmaps","value":[{"@odata.etag":"\"0x8D911E85D7B4E3B\"","name":"test-syn-map","format":"solr","synonyms":"Washington, Wash. => WA","encryptionKey":null}]}' headers: cache-control: @@ -175,9 +175,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:06:45 GMT + - Sat, 08 May 2021 06:13:14 GMT elapsed-time: - - '19' + - '11' expires: - '-1' odata-version: @@ -187,7 +187,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - c1b49c80-b98d-11eb-aae6-a0481ca055a9 + - 78cd2e86-afc4-11eb-87c4-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -205,12 +205,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search9ae91f0f.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + uri: https://search9ae91f0f.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search9ae91f0f.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB1A626F3D2\"","name":"test-syn-map","format":"solr","synonyms":"Washington, + string: '{"@odata.context":"https://search9ae91f0f.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911E85D7B4E3B\"","name":"test-syn-map","format":"solr","synonyms":"Washington, Wash. => WA","encryptionKey":null}' headers: cache-control: @@ -220,11 +220,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:06:45 GMT + - Sat, 08 May 2021 06:13:14 GMT elapsed-time: - - '8' + - '11' etag: - - W/"0x8D91BB1A626F3D2" + - W/"0x8D911E85D7B4E3B" expires: - '-1' odata-version: @@ -234,7 +234,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - c1c31b70-b98d-11eb-8f41-a0481ca055a9 + - 78e24d76-afc4-11eb-84ff-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_create_or_update_synonym_map_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_create_or_update_synonym_map_if_unchanged.yaml index 3c8c1a2b11ee..e88f32f1f606 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_create_or_update_synonym_map_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_create_or_update_synonym_map_if_unchanged.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search53532449.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search53532449.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search53532449.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB1B02C8EB2\"","name":"test-syn-map","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://search53532449.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911E867D30F1F\"","name":"test-syn-map","format":"solr","synonyms":"USA, United States, United States of America\nWashington, Wash. => WA","encryptionKey":null}' headers: cache-control: @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:07:02 GMT + - Sat, 08 May 2021 06:13:32 GMT elapsed-time: - - '67' + - '55' etag: - - W/"0x8D91BB1B02C8EB2" + - W/"0x8D911E867D30F1F" expires: - '-1' location: - - https://search53532449.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + - https://search53532449.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - cb7f53a2-b98d-11eb-9019-a0481ca055a9 + - 82d84398-afc4-11eb-a125-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -68,12 +68,12 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search53532449.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + uri: https://search53532449.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search53532449.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB1B03B8592\"","name":"test-syn-map","format":"solr","synonyms":"Washington, + string: '{"@odata.context":"https://search53532449.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911E867EEB279\"","name":"test-syn-map","format":"solr","synonyms":"Washington, Wash. => WA","encryptionKey":null}' headers: cache-control: @@ -83,11 +83,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:07:02 GMT + - Sat, 08 May 2021 06:13:32 GMT elapsed-time: - - '22' + - '29' etag: - - W/"0x8D91BB1B03B8592" + - W/"0x8D911E867EEB279" expires: - '-1' odata-version: @@ -97,7 +97,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - cbba3a2e-b98d-11eb-ae3c-a0481ca055a9 + - 83282761-afc4-11eb-91ab-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -107,7 +107,7 @@ interactions: message: OK - request: body: '{"name": "test-syn-map", "format": "solr", "synonyms": "USA, United States, - United States of America\nWashington, Wash. => WA", "@odata.etag": "\"0x8D91BB1B02C8EB2\""}' + United States of America\nWashington, Wash. => WA", "@odata.etag": "\"0x8D911E867D30F1F\""}' headers: Accept: - application/json;odata.metadata=minimal @@ -120,13 +120,13 @@ interactions: Content-Type: - application/json If-Match: - - '"0x8D91BB1B02C8EB2"' + - '"0x8D911E867D30F1F"' Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search53532449.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + uri: https://search53532449.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview response: body: string: '{"error":{"code":"","message":"The precondition given in one of the @@ -142,7 +142,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:07:02 GMT + - Sat, 08 May 2021 06:13:32 GMT elapsed-time: - '6' expires: @@ -154,7 +154,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - cbc9073d-b98d-11eb-9796-a0481ca055a9 + - 83409d8c-afc4-11eb-bd72-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_create_synonym_map.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_create_synonym_map.yaml index 1a975e85ac6a..75253a5388fb 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_create_synonym_map.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_create_synonym_map.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search78461aed.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search78461aed.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search78461aed.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB1BA2D1FA6\"","name":"test-syn-map","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://search78461aed.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911E87234959A\"","name":"test-syn-map","format":"solr","synonyms":"USA, United States, United States of America\nWashington, Wash. => WA","encryptionKey":null}' headers: cache-control: @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:07:19 GMT + - Sat, 08 May 2021 06:13:49 GMT elapsed-time: - - '69' + - '51' etag: - - W/"0x8D91BB1BA2D1FA6" + - W/"0x8D911E87234959A" expires: - '-1' location: - - https://search78461aed.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + - https://search78461aed.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - d58405b0-b98d-11eb-8a7a-a0481ca055a9 + - 8d397f81-afc4-11eb-b59d-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -61,12 +61,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search78461aed.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search78461aed.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search78461aed.search.windows.net/$metadata#synonymmaps","value":[{"@odata.etag":"\"0x8D91BB1BA2D1FA6\"","name":"test-syn-map","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://search78461aed.search.windows.net/$metadata#synonymmaps","value":[{"@odata.etag":"\"0x8D911E87234959A\"","name":"test-syn-map","format":"solr","synonyms":"USA, United States, United States of America\nWashington, Wash. => WA","encryptionKey":null}]}' headers: cache-control: @@ -76,9 +76,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:07:19 GMT + - Sat, 08 May 2021 06:13:49 GMT elapsed-time: - - '18' + - '17' expires: - '-1' odata-version: @@ -88,7 +88,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - d5bb1c1e-b98d-11eb-b7c6-a0481ca055a9 + - 8d89c692-afc4-11eb-9ac6-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_delete_synonym_map.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_delete_synonym_map.yaml index 16c83ff0b39a..725f767b83be 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_delete_synonym_map.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_delete_synonym_map.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search78271aec.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search78271aec.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search78271aec.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB1C3B02C62\"","name":"test-syn-map","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://search78271aec.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911E87D02864B\"","name":"test-syn-map","format":"solr","synonyms":"USA, United States, United States of America\nWashington, Wash. => WA","encryptionKey":null}' headers: cache-control: @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:07:35 GMT + - Sat, 08 May 2021 06:14:07 GMT elapsed-time: - - '31' + - '49' etag: - - W/"0x8D91BB1C3B02C62" + - W/"0x8D911E87D02864B" expires: - '-1' location: - - https://search78271aec.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + - https://search78271aec.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - df0753db-b98d-11eb-850f-a0481ca055a9 + - 980348d0-afc4-11eb-a525-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -61,12 +61,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search78271aec.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search78271aec.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search78271aec.search.windows.net/$metadata#synonymmaps","value":[{"@odata.etag":"\"0x8D91BB1C3B02C62\"","name":"test-syn-map","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://search78271aec.search.windows.net/$metadata#synonymmaps","value":[{"@odata.etag":"\"0x8D911E87D02864B\"","name":"test-syn-map","format":"solr","synonyms":"USA, United States, United States of America\nWashington, Wash. => WA","encryptionKey":null}]}' headers: cache-control: @@ -76,9 +76,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:07:35 GMT + - Sat, 08 May 2021 06:14:07 GMT elapsed-time: - - '11' + - '18' expires: - '-1' odata-version: @@ -88,7 +88,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - df3df486-b98d-11eb-ac4f-a0481ca055a9 + - 985751c3-afc4-11eb-bc60-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -108,9 +108,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://search78271aec.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + uri: https://search78271aec.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview response: body: string: '' @@ -118,15 +118,15 @@ interactions: cache-control: - no-cache date: - - Thu, 20 May 2021 17:07:35 GMT + - Sat, 08 May 2021 06:14:07 GMT elapsed-time: - - '140' + - '59' expires: - '-1' pragma: - no-cache request-id: - - df4c4c51-b98d-11eb-8afa-a0481ca055a9 + - 986e8bb3-afc4-11eb-b608-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -142,9 +142,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search78271aec.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search78271aec.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: string: '{"@odata.context":"https://search78271aec.search.windows.net/$metadata#synonymmaps","value":[]}' @@ -156,9 +156,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:07:35 GMT + - Sat, 08 May 2021 06:14:07 GMT elapsed-time: - - '5' + - '15' expires: - '-1' odata-version: @@ -168,7 +168,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - df6cf37c-b98d-11eb-ba2d-a0481ca055a9 + - 988d9acd-afc4-11eb-881b-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_delete_synonym_map_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_delete_synonym_map_if_unchanged.yaml index e256963aa3f8..f77fff4d69fe 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_delete_synonym_map_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_delete_synonym_map_if_unchanged.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchfabb2026.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://searchfabb2026.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchfabb2026.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB1D4DF343D\"","name":"test-syn-map","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://searchfabb2026.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911E8881098F5\"","name":"test-syn-map","format":"solr","synonyms":"USA, United States, United States of America\nWashington, Wash. => WA","encryptionKey":null}' headers: cache-control: @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:08:04 GMT + - Sat, 08 May 2021 06:14:25 GMT elapsed-time: - - '61' + - '52' etag: - - W/"0x8D91BB1D4DF343D" + - W/"0x8D911E8881098F5" expires: - '-1' location: - - https://searchfabb2026.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + - https://searchfabb2026.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - f031db2f-b98d-11eb-a1f8-a0481ca055a9 + - a3109765-afc4-11eb-bb6e-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -68,12 +68,12 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://searchfabb2026.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + uri: https://searchfabb2026.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchfabb2026.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB1D4F1AE21\"","name":"test-syn-map","format":"solr","synonyms":"W\na\ns\nh\ni\nn\ng\nt\no\nn\n,\n + string: '{"@odata.context":"https://searchfabb2026.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911E8882D4DE8\"","name":"test-syn-map","format":"solr","synonyms":"W\na\ns\nh\ni\nn\ng\nt\no\nn\n,\n \nW\na\ns\nh\n.\n \n=\n>\n \nW\nA","encryptionKey":null}' headers: cache-control: @@ -83,11 +83,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:08:04 GMT + - Sat, 08 May 2021 06:14:25 GMT elapsed-time: - - '24' + - '39' etag: - - W/"0x8D91BB1D4F1AE21" + - W/"0x8D911E8882D4DE8" expires: - '-1' odata-version: @@ -97,7 +97,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - f06d5dcc-b98d-11eb-805c-a0481ca055a9 + - a365ced7-afc4-11eb-b24d-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -117,11 +117,11 @@ interactions: Content-Length: - '0' If-Match: - - '"0x8D91BB1D4DF343D"' + - '"0x8D911E8881098F5"' User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://searchfabb2026.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + uri: https://searchfabb2026.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview response: body: string: '{"error":{"code":"","message":"The precondition given in one of the @@ -137,9 +137,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:08:04 GMT + - Sat, 08 May 2021 06:14:26 GMT elapsed-time: - - '12' + - '10' expires: - '-1' odata-version: @@ -149,7 +149,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - f07f5f35-b98d-11eb-9858-a0481ca055a9 + - a37f2547-afc4-11eb-8b69-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_get_synonym_map.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_get_synonym_map.yaml index 4b5c3ff58d96..19d8809d0e7a 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_get_synonym_map.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_get_synonym_map.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search299919b9.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search299919b9.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search299919b9.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB1E8575E0A\"","name":"test-syn-map","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://search299919b9.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911E8925B37D6\"","name":"test-syn-map","format":"solr","synonyms":"USA, United States, United States of America\nWashington, Wash. => WA","encryptionKey":null}' headers: cache-control: @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:08:36 GMT + - Sat, 08 May 2021 06:14:43 GMT elapsed-time: - - '21' + - '55' etag: - - W/"0x8D91BB1E8575E0A" + - W/"0x8D911E8925B37D6" expires: - '-1' location: - - https://search299919b9.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + - https://search299919b9.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 03ae09da-b98e-11eb-86c4-a0481ca055a9 + - ad5c1e03-afc4-11eb-8dc3-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -61,12 +61,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search299919b9.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search299919b9.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search299919b9.search.windows.net/$metadata#synonymmaps","value":[{"@odata.etag":"\"0x8D91BB1E8575E0A\"","name":"test-syn-map","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://search299919b9.search.windows.net/$metadata#synonymmaps","value":[{"@odata.etag":"\"0x8D911E8925B37D6\"","name":"test-syn-map","format":"solr","synonyms":"USA, United States, United States of America\nWashington, Wash. => WA","encryptionKey":null}]}' headers: cache-control: @@ -76,9 +76,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:08:36 GMT + - Sat, 08 May 2021 06:14:43 GMT elapsed-time: - - '10' + - '19' expires: - '-1' odata-version: @@ -88,7 +88,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 03e4d115-b98e-11eb-a69d-a0481ca055a9 + - adb14a12-afc4-11eb-891b-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -106,12 +106,12 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search299919b9.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30 + uri: https://search299919b9.search.windows.net/synonymmaps('test-syn-map')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search299919b9.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB1E8575E0A\"","name":"test-syn-map","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://search299919b9.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911E8925B37D6\"","name":"test-syn-map","format":"solr","synonyms":"USA, United States, United States of America\nWashington, Wash. => WA","encryptionKey":null}' headers: cache-control: @@ -121,11 +121,11 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:08:36 GMT + - Sat, 08 May 2021 06:14:43 GMT elapsed-time: - '5' etag: - - W/"0x8D91BB1E8575E0A" + - W/"0x8D911E8925B37D6" expires: - '-1' odata-version: @@ -135,7 +135,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 03f301c4-b98e-11eb-8f86-a0481ca055a9 + - adc82027-afc4-11eb-88c7-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_get_synonym_maps.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_get_synonym_maps.yaml index d7766cf1a422..89e966baf5c8 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_get_synonym_maps.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_index_client_synonym_map_live.test_get_synonym_maps.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search43c51a2c.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search43c51a2c.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search43c51a2c.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB1F16A565A\"","name":"test-syn-map-1","format":"solr","synonyms":"USA, + string: '{"@odata.context":"https://search43c51a2c.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911E89D37F859\"","name":"test-syn-map-1","format":"solr","synonyms":"USA, United States, United States of America","encryptionKey":null}' headers: cache-control: @@ -29,15 +29,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:08:51 GMT + - Sat, 08 May 2021 06:15:01 GMT elapsed-time: - - '27' + - '119' etag: - - W/"0x8D91BB1F16A565A" + - W/"0x8D911E89D37F859" expires: - '-1' location: - - https://search43c51a2c.search.windows.net/synonymmaps('test-syn-map-1')?api-version=2020-06-30 + - https://search43c51a2c.search.windows.net/synonymmaps('test-syn-map-1')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -45,7 +45,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 0cc79975-b98e-11eb-ade3-a0481ca055a9 + - b8333330-afc4-11eb-be95-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -66,12 +66,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search43c51a2c.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search43c51a2c.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search43c51a2c.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D91BB1F17A37BC\"","name":"test-syn-map-2","format":"solr","synonyms":"Washington, + string: '{"@odata.context":"https://search43c51a2c.search.windows.net/$metadata#synonymmaps/$entity","@odata.etag":"\"0x8D911E89D5745D5\"","name":"test-syn-map-2","format":"solr","synonyms":"Washington, Wash. => WA","encryptionKey":null}' headers: cache-control: @@ -81,15 +81,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:08:52 GMT + - Sat, 08 May 2021 06:15:01 GMT elapsed-time: - - '30' + - '50' etag: - - W/"0x8D91BB1F17A37BC" + - W/"0x8D911E89D5745D5" expires: - '-1' location: - - https://search43c51a2c.search.windows.net/synonymmaps('test-syn-map-2')?api-version=2020-06-30 + - https://search43c51a2c.search.windows.net/synonymmaps('test-syn-map-2')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -97,7 +97,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 0cf81e88-b98e-11eb-b2bc-a0481ca055a9 + - b88ea6c5-afc4-11eb-b1b4-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -113,13 +113,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search43c51a2c.search.windows.net/synonymmaps?api-version=2020-06-30 + uri: https://search43c51a2c.search.windows.net/synonymmaps?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search43c51a2c.search.windows.net/$metadata#synonymmaps","value":[{"@odata.etag":"\"0x8D91BB1F16A565A\"","name":"test-syn-map-1","format":"solr","synonyms":"USA, - United States, United States of America","encryptionKey":null},{"@odata.etag":"\"0x8D91BB1F17A37BC\"","name":"test-syn-map-2","format":"solr","synonyms":"Washington, + string: '{"@odata.context":"https://search43c51a2c.search.windows.net/$metadata#synonymmaps","value":[{"@odata.etag":"\"0x8D911E89D37F859\"","name":"test-syn-map-1","format":"solr","synonyms":"USA, + United States, United States of America","encryptionKey":null},{"@odata.etag":"\"0x8D911E89D5745D5\"","name":"test-syn-map-2","format":"solr","synonyms":"Washington, Wash. => WA","encryptionKey":null}]}' headers: cache-control: @@ -129,9 +129,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:08:52 GMT + - Sat, 08 May 2021 06:15:01 GMT elapsed-time: - - '15' + - '34' expires: - '-1' odata-version: @@ -141,7 +141,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 0d084b15-b98e-11eb-a858-a0481ca055a9 + - b8ac47d4-afc4-11eb-b423-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_create_indexer.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_create_indexer.yaml index aab7e9eda88c..23120b36012b 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_create_indexer.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_create_indexer.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search207914e0.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search207914e0.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search207914e0.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB1FCC55F05\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search207914e0.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E8A9757310\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -28,15 +28,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:09:11 GMT + - Sat, 08 May 2021 06:15:22 GMT elapsed-time: - - '67' + - '58' etag: - - W/"0x8D91BB1FCC55F05" + - W/"0x8D911E8A9757310" expires: - '-1' location: - - https://search207914e0.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://search207914e0.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -44,7 +44,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 181ee2d8-b98e-11eb-b68e-a0481ca055a9 + - c4784c77-afc4-11eb-adc1-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -65,29 +65,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search207914e0.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search207914e0.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search207914e0.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB1FD7127C9\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://search207914e0.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E8AA054A18\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: - no-cache content-length: - - '629' + - '664' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:09:12 GMT + - Sat, 08 May 2021 06:15:22 GMT elapsed-time: - - '839' + - '499' etag: - - W/"0x8D91BB1FD7127C9" + - W/"0x8D911E8AA054A18" expires: - '-1' location: - - https://search207914e0.search.windows.net/indexes('hotels')?api-version=2020-06-30 + - https://search207914e0.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -95,7 +95,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 18547293-b98e-11eb-8a37-a0481ca055a9 + - c4cb7ba3-afc4-11eb-afe6-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -116,29 +116,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search207914e0.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search207914e0.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search207914e0.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB208B94140\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://search207914e0.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911E8B4364213\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: - no-cache content-length: - - '370' + - '383' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:09:31 GMT + - Sat, 08 May 2021 06:15:40 GMT elapsed-time: - - '18818' + - '16771' etag: - - W/"0x8D91BB208B94140" + - W/"0x8D911E8B4364213" expires: - '-1' location: - - https://search207914e0.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + - https://search207914e0.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -146,7 +146,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 19004238-b98e-11eb-a90d-a0481ca055a9 + - c55db1b0-afc4-11eb-b333-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_create_or_update_indexer.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_create_or_update_indexer.yaml index 878bee3573c9..f420e49fb5dc 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_create_or_update_indexer.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_create_or_update_indexer.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search8001902.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search8001902.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search8001902.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB21372E388\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search8001902.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E8C21ED21B\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -28,15 +28,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:09:49 GMT + - Sat, 08 May 2021 06:16:03 GMT elapsed-time: - - '33' + - '68' etag: - - W/"0x8D91BB21372E388" + - W/"0x8D911E8C21ED21B" expires: - '-1' location: - - https://search8001902.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://search8001902.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -44,7 +44,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 2eceb08f-b98e-11eb-8207-a0481ca055a9 + - dd2390d3-afc4-11eb-b80b-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -65,29 +65,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search8001902.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search8001902.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search8001902.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB21427AE5A\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://search8001902.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E8C2ED6B36\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: - no-cache content-length: - - '628' + - '663' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:09:50 GMT + - Sat, 08 May 2021 06:16:05 GMT elapsed-time: - - '907' + - '894' etag: - - W/"0x8D91BB21427AE5A" + - W/"0x8D911E8C2ED6B36" expires: - '-1' location: - - https://search8001902.search.windows.net/indexes('hotels')?api-version=2020-06-30 + - https://search8001902.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -95,7 +95,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 2f01cdc9-b98e-11eb-959d-a0481ca055a9 + - dd760bec-afc4-11eb-b63e-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -116,29 +116,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search8001902.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search8001902.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search8001902.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB21EF21C9D\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://search8001902.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911E8CD34602D\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: - no-cache content-length: - - '369' + - '382' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:10:08 GMT + - Sat, 08 May 2021 06:16:22 GMT elapsed-time: - - '17998' + - '16932' etag: - - W/"0x8D91BB21EF21C9D" + - W/"0x8D911E8CD34602D" expires: - '-1' location: - - https://search8001902.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + - https://search8001902.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -146,7 +146,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 2fb69f8a-b98e-11eb-86bc-a0481ca055a9 + - de445016-afc4-11eb-8401-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -162,23 +162,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search8001902.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search8001902.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search8001902.search.windows.net/$metadata#indexers","value":[{"@odata.etag":"\"0x8D91BB21EF21C9D\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}]}' + string: '{"@odata.context":"https://search8001902.search.windows.net/$metadata#indexers","value":[{"@odata.etag":"\"0x8D911E8CD34602D\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}]}' headers: cache-control: - no-cache content-length: - - '373' + - '386' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:10:08 GMT + - Sat, 08 May 2021 06:16:22 GMT elapsed-time: - - '27' + - '17' expires: - '-1' odata-version: @@ -188,7 +188,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 3aa207db-b98e-11eb-ba92-a0481ca055a9 + - e8a22391-afc4-11eb-8520-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -213,25 +213,25 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search8001902.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + uri: https://search8001902.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search8001902.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB21F6C44FE\"","name":"sample-indexer","description":"updated","dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://search8001902.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911E8CDA697AE\"","name":"sample-indexer","description":"updated","dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: - no-cache content-length: - - '374' + - '387' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:10:08 GMT + - Sat, 08 May 2021 06:16:22 GMT elapsed-time: - - '344' + - '304' etag: - - W/"0x8D91BB21F6C44FE" + - W/"0x8D911E8CDA697AE" expires: - '-1' odata-version: @@ -241,7 +241,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 3abc1f78-b98e-11eb-a9a1-a0481ca055a9 + - e8bb9d98-afc4-11eb-921f-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -259,23 +259,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search8001902.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search8001902.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search8001902.search.windows.net/$metadata#indexers","value":[{"@odata.etag":"\"0x8D91BB21F6C44FE\"","name":"sample-indexer","description":"updated","dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}]}' + string: '{"@odata.context":"https://search8001902.search.windows.net/$metadata#indexers","value":[{"@odata.etag":"\"0x8D911E8CDA697AE\"","name":"sample-indexer","description":"updated","dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}]}' headers: cache-control: - no-cache content-length: - - '378' + - '391' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:10:08 GMT + - Sat, 08 May 2021 06:16:22 GMT elapsed-time: - - '15' + - '22' expires: - '-1' odata-version: @@ -285,7 +285,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 3afc35b6-b98e-11eb-9639-a0481ca055a9 + - e8fd2978-afc4-11eb-9203-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -303,25 +303,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search8001902.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + uri: https://search8001902.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search8001902.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB21F6C44FE\"","name":"sample-indexer","description":"updated","dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://search8001902.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911E8CDA697AE\"","name":"sample-indexer","description":"updated","dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: - no-cache content-length: - - '374' + - '387' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:10:08 GMT + - Sat, 08 May 2021 06:16:22 GMT elapsed-time: - - '9' + - '6' etag: - - W/"0x8D91BB21F6C44FE" + - W/"0x8D911E8CDA697AE" expires: - '-1' odata-version: @@ -331,7 +331,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 3b09ca65-b98e-11eb-b097-a0481ca055a9 + - e9151d9d-afc4-11eb-83a1-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_create_or_update_indexer_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_create_or_update_indexer_if_unchanged.yaml index 54145deb25fb..15eb0ef869b9 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_create_or_update_indexer_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_create_or_update_indexer_if_unchanged.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search71b21e3c.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search71b21e3c.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search71b21e3c.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB22B4E2250\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search71b21e3c.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E8D9AF8B96\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -28,15 +28,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:10:29 GMT + - Sat, 08 May 2021 06:16:43 GMT elapsed-time: - - '81' + - '60' etag: - - W/"0x8D91BB22B4E2250" + - W/"0x8D911E8D9AF8B96" expires: - '-1' location: - - https://search71b21e3c.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://search71b21e3c.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -44,7 +44,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 4699a9f1-b98e-11eb-9d9f-a0481ca055a9 + - f4b1bbe1-afc4-11eb-8417-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -65,29 +65,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search71b21e3c.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search71b21e3c.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search71b21e3c.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB22C326A41\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://search71b21e3c.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E8DA42223D\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: - no-cache content-length: - - '629' + - '664' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:10:30 GMT + - Sat, 08 May 2021 06:16:43 GMT elapsed-time: - - '1047' + - '466' etag: - - W/"0x8D91BB22C326A41" + - W/"0x8D911E8DA42223D" expires: - '-1' location: - - https://search71b21e3c.search.windows.net/indexes('hotels')?api-version=2020-06-30 + - https://search71b21e3c.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -95,7 +95,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 46de8491-b98e-11eb-a1fa-a0481ca055a9 + - f5060cb2-afc4-11eb-9e9c-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -116,29 +116,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search71b21e3c.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search71b21e3c.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search71b21e3c.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB22C9B5150\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://search71b21e3c.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911E8E46F4769\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: - no-cache content-length: - - '370' + - '383' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:10:31 GMT + - Sat, 08 May 2021 06:17:00 GMT elapsed-time: - - '391' + - '16750' etag: - - W/"0x8D91BB22C9B5150" + - W/"0x8D911E8E46F4769" expires: - '-1' location: - - https://search71b21e3c.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + - https://search71b21e3c.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -146,7 +146,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 47c2d7a1-b98e-11eb-bcbb-a0481ca055a9 + - f5993724-afc4-11eb-b8ba-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -169,25 +169,25 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search71b21e3c.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + uri: https://search71b21e3c.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search71b21e3c.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB22CF2D020\"","name":"sample-indexer","description":"updated","dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://search71b21e3c.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911E8E4DAC6CC\"","name":"sample-indexer","description":"updated","dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: - no-cache content-length: - - '375' + - '388' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:10:31 GMT + - Sat, 08 May 2021 06:17:01 GMT elapsed-time: - - '327' + - '401' etag: - - W/"0x8D91BB22CF2D020" + - W/"0x8D911E8E4DAC6CC" expires: - '-1' odata-version: @@ -197,7 +197,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 483dff65-b98e-11eb-86b3-a0481ca055a9 + - ffdc0c84-afc4-11eb-8fc2-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -208,7 +208,7 @@ interactions: - request: body: '{"name": "sample-indexer", "description": "updated", "dataSourceName": "sample-datasource", "targetIndexName": "hotels", "disabled": false, "@odata.etag": - "\"0x8D91BB22C9B5150\""}' + "\"0x8D911E8E46F4769\""}' headers: Accept: - application/json;odata.metadata=minimal @@ -221,13 +221,13 @@ interactions: Content-Type: - application/json If-Match: - - '"0x8D91BB22C9B5150"' + - '"0x8D911E8E46F4769"' Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search71b21e3c.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + uri: https://search71b21e3c.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview response: body: string: '{"error":{"code":"","message":"The precondition given in one of the @@ -243,7 +243,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:10:31 GMT + - Sat, 08 May 2021 06:17:01 GMT elapsed-time: - '6' expires: @@ -255,7 +255,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 4882f8af-b98e-11eb-b8b0-a0481ca055a9 + - 002e3d10-afc5-11eb-9382-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_delete_indexer.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_delete_indexer.yaml index 2a0cce02ea79..ca6ad2af1bfe 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_delete_indexer.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_delete_indexer.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search205e14df.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search205e14df.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search205e14df.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB238530EF4\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search205e14df.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E8FA34ACA9\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -28,15 +28,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:10:50 GMT + - Sat, 08 May 2021 06:17:37 GMT elapsed-time: - - '140' + - '63' etag: - - W/"0x8D91BB238530EF4" + - W/"0x8D911E8FA34ACA9" expires: - '-1' location: - - https://search205e14df.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://search205e14df.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -44,7 +44,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 53686a1f-b98e-11eb-9466-a0481ca055a9 + - 153c9779-afc5-11eb-a4cb-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -65,29 +65,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search205e14df.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search205e14df.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search205e14df.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB239B68819\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://search205e14df.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E8FAFA6A88\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: - no-cache content-length: - - '629' + - '664' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:10:53 GMT + - Sat, 08 May 2021 06:17:39 GMT elapsed-time: - - '1791' + - '836' etag: - - W/"0x8D91BB239B68819" + - W/"0x8D911E8FAFA6A88" expires: - '-1' location: - - https://search205e14df.search.windows.net/indexes('hotels')?api-version=2020-06-30 + - https://search205e14df.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -95,7 +95,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 53e4fe83-b98e-11eb-a30e-a0481ca055a9 + - 158b5e45-afc5-11eb-aaef-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -116,29 +116,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search205e14df.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search205e14df.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search205e14df.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB2518C5BA2\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://search205e14df.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911E8FC295D7F\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: - no-cache content-length: - - '370' + - '383' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:11:33 GMT + - Sat, 08 May 2021 06:17:41 GMT elapsed-time: - - '39663' + - '1647' etag: - - W/"0x8D91BB2518C5BA2" + - W/"0x8D911E8FC295D7F" expires: - '-1' location: - - https://search205e14df.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + - https://search205e14df.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -146,7 +146,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 554bd949-b98e-11eb-a4f1-a0481ca055a9 + - 1651e0c6-afc5-11eb-bb62-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -162,23 +162,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search205e14df.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search205e14df.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search205e14df.search.windows.net/$metadata#indexers","value":[{"@odata.etag":"\"0x8D91BB2518C5BA2\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}]}' + string: '{"@odata.context":"https://search205e14df.search.windows.net/$metadata#indexers","value":[{"@odata.etag":"\"0x8D911E8FC295D7F\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}]}' headers: cache-control: - no-cache content-length: - - '374' + - '387' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:11:33 GMT + - Sat, 08 May 2021 06:17:41 GMT elapsed-time: - - '37' + - '16' expires: - '-1' odata-version: @@ -188,7 +188,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 6d3997ef-b98e-11eb-a208-a0481ca055a9 + - 17936bee-afc5-11eb-850b-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -208,9 +208,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://search205e14df.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + uri: https://search205e14df.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview response: body: string: '' @@ -218,15 +218,15 @@ interactions: cache-control: - no-cache date: - - Thu, 20 May 2021 17:11:33 GMT + - Sat, 08 May 2021 06:17:41 GMT elapsed-time: - - '41' + - '62' expires: - '-1' pragma: - no-cache request-id: - - 6d56ded8-b98e-11eb-85cd-a0481ca055a9 + - 17a850cb-afc5-11eb-8e42-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -242,9 +242,9 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search205e14df.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search205e14df.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: string: '{"@odata.context":"https://search205e14df.search.windows.net/$metadata#indexers","value":[]}' @@ -256,9 +256,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:11:33 GMT + - Sat, 08 May 2021 06:17:41 GMT elapsed-time: - - '6' + - '12' expires: - '-1' odata-version: @@ -268,7 +268,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 6d71597b-b98e-11eb-b574-a0481ca055a9 + - 17c45973-afc5-11eb-9283-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_delete_indexer_if_unchanged.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_delete_indexer_if_unchanged.yaml index f1cf60130291..8b35f6bacb16 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_delete_indexer_if_unchanged.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_delete_indexer_if_unchanged.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search54491a19.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search54491a19.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search54491a19.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB25DCFC1FB\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search54491a19.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E90C2AF823\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -28,15 +28,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:11:54 GMT + - Sat, 08 May 2021 06:18:07 GMT elapsed-time: - - '117' + - '67' etag: - - W/"0x8D91BB25DCFC1FB" + - W/"0x8D911E90C2AF823" expires: - '-1' location: - - https://search54491a19.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://search54491a19.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -44,7 +44,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 7900f3d0-b98e-11eb-b551-a0481ca055a9 + - 273186cc-afc5-11eb-b89a-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -65,29 +65,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search54491a19.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search54491a19.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search54491a19.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB25F4BA97E\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://search54491a19.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E90CC642EF\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: - no-cache content-length: - - '629' + - '664' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:11:55 GMT + - Sat, 08 May 2021 06:18:08 GMT elapsed-time: - - '1915' + - '528' etag: - - W/"0x8D91BB25F4BA97E" + - W/"0x8D911E90CC642EF" expires: - '-1' location: - - https://search54491a19.search.windows.net/indexes('hotels')?api-version=2020-06-30 + - https://search54491a19.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -95,7 +95,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 79615d84-b98e-11eb-a6b1-a0481ca055a9 + - 27824de7-afc5-11eb-8b31-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -116,29 +116,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search54491a19.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search54491a19.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search54491a19.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB270B6097B\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://search54491a19.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911E90DFA18DB\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: - no-cache content-length: - - '370' + - '383' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:12:26 GMT + - Sat, 08 May 2021 06:18:11 GMT elapsed-time: - - '29047' + - '1746' etag: - - W/"0x8D91BB270B6097B" + - W/"0x8D911E90DFA18DB" expires: - '-1' location: - - https://search54491a19.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + - https://search54491a19.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -146,7 +146,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 7ae0133d-b98e-11eb-99d4-a0481ca055a9 + - 281d6941-afc5-11eb-9f12-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -169,25 +169,25 @@ interactions: Prefer: - return=representation User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://search54491a19.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + uri: https://search54491a19.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search54491a19.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB27118D496\"","name":"sample-indexer","description":"updated","dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://search54491a19.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911E90E64D4F0\"","name":"sample-indexer","description":"updated","dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: - no-cache content-length: - - '375' + - '388' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:12:26 GMT + - Sat, 08 May 2021 06:18:11 GMT elapsed-time: - - '333' + - '325' etag: - - W/"0x8D91BB27118D496" + - W/"0x8D911E90E64D4F0" expires: - '-1' odata-version: @@ -197,7 +197,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 8c67a75d-b98e-11eb-b146-a0481ca055a9 + - 29715708-afc5-11eb-9e78-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -217,11 +217,11 @@ interactions: Content-Length: - '0' If-Match: - - '"0x8D91BB270B6097B"' + - '"0x8D911E90DFA18DB"' User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://search54491a19.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + uri: https://search54491a19.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview response: body: string: '{"error":{"code":"","message":"The precondition given in one of the @@ -237,9 +237,9 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:12:26 GMT + - Sat, 08 May 2021 06:18:11 GMT elapsed-time: - - '13' + - '7' expires: - '-1' odata-version: @@ -249,7 +249,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 8caac872-b98e-11eb-945f-a0481ca055a9 + - 29b83eca-afc5-11eb-a8b7-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_get_indexer.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_get_indexer.yaml index 38290f2514e9..84be6e9f6001 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_get_indexer.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_get_indexer.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searche35313ac.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searche35313ac.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searche35313ac.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB27B9F6E68\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searche35313ac.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E91A891DC4\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -28,15 +28,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:12:44 GMT + - Sat, 08 May 2021 06:18:32 GMT elapsed-time: - - '109' + - '59' etag: - - W/"0x8D91BB27B9F6E68" + - W/"0x8D911E91A891DC4" expires: - '-1' location: - - https://searche35313ac.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://searche35313ac.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -44,7 +44,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 96e1a387-b98e-11eb-8c1f-a0481ca055a9 + - 358baab1-afc5-11eb-b3bd-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -65,29 +65,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searche35313ac.search.windows.net/indexes?api-version=2020-06-30 + uri: https://searche35313ac.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searche35313ac.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB27CDC1EA0\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://searche35313ac.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E91B2C0B13\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: - no-cache content-length: - - '629' + - '664' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:12:46 GMT + - Sat, 08 May 2021 06:18:33 GMT elapsed-time: - - '1707' + - '511' etag: - - W/"0x8D91BB27CDC1EA0" + - W/"0x8D911E91B2C0B13" expires: - '-1' location: - - https://searche35313ac.search.windows.net/indexes('hotels')?api-version=2020-06-30 + - https://searche35313ac.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -95,7 +95,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 9730c248-b98e-11eb-8329-a0481ca055a9 + - 35dfcee1-afc5-11eb-b15b-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -116,29 +116,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searche35313ac.search.windows.net/indexers?api-version=2020-06-30 + uri: https://searche35313ac.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searche35313ac.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB29070C6A7\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://searche35313ac.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911E91BA3E8E7\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: - no-cache content-length: - - '370' + - '383' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:13:19 GMT + - Sat, 08 May 2021 06:18:33 GMT elapsed-time: - - '32497' + - '380' etag: - - W/"0x8D91BB29070C6A7" + - W/"0x8D911E91BA3E8E7" expires: - '-1' location: - - https://searche35313ac.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + - https://searche35313ac.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -146,7 +146,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - 986edef3-b98e-11eb-9700-a0481ca055a9 + - 3684af44-afc5-11eb-89a8-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -162,25 +162,25 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searche35313ac.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + uri: https://searche35313ac.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searche35313ac.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB29070C6A7\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://searche35313ac.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911E91BA3E8E7\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: - no-cache content-length: - - '370' + - '383' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:13:19 GMT + - Sat, 08 May 2021 06:18:33 GMT elapsed-time: - - '19' + - '10' etag: - - W/"0x8D91BB29070C6A7" + - W/"0x8D911E91BA3E8E7" expires: - '-1' odata-version: @@ -190,7 +190,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - ac186f44-b98e-11eb-b91e-a0481ca055a9 + - 370b1397-afc5-11eb-bc50-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_get_indexer_status.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_get_indexer_status.yaml index 95f985d21bcf..cc6b54d382f1 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_get_indexer_status.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_get_indexer_status.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search78e216af.search.windows.net/datasources?api-version=2020-06-30 + uri: https://search78e216af.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search78e216af.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB29B82C975\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://search78e216af.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E926A57626\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -28,15 +28,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:13:37 GMT + - Sat, 08 May 2021 06:18:52 GMT elapsed-time: - - '40' + - '68' etag: - - W/"0x8D91BB29B82C975" + - W/"0x8D911E926A57626" expires: - '-1' location: - - https://search78e216af.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://search78e216af.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -44,7 +44,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - b6ccea18-b98e-11eb-8185-a0481ca055a9 + - 41b05a41-afc5-11eb-86e3-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -65,29 +65,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search78e216af.search.windows.net/indexes?api-version=2020-06-30 + uri: https://search78e216af.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search78e216af.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB29C70D66D\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://search78e216af.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E92744B94F\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: - no-cache content-length: - - '629' + - '664' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:13:39 GMT + - Sat, 08 May 2021 06:18:53 GMT elapsed-time: - - '1179' + - '569' etag: - - W/"0x8D91BB29C70D66D" + - W/"0x8D911E92744B94F" expires: - '-1' location: - - https://search78e216af.search.windows.net/indexes('hotels')?api-version=2020-06-30 + - https://search78e216af.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -95,7 +95,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - b712de65-b98e-11eb-8491-a0481ca055a9 + - 41fccf43-afc5-11eb-b996-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -116,29 +116,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://search78e216af.search.windows.net/indexers?api-version=2020-06-30 + uri: https://search78e216af.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search78e216af.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB29DD4013C\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://search78e216af.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911E927B8509C\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: - no-cache content-length: - - '370' + - '383' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:13:41 GMT + - Sat, 08 May 2021 06:18:54 GMT elapsed-time: - - '2053' + - '484' etag: - - W/"0x8D91BB29DD4013C" + - W/"0x8D911E927B8509C" expires: - '-1' location: - - https://search78e216af.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + - https://search78e216af.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -146,7 +146,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - b801650c-b98e-11eb-9938-a0481ca055a9 + - 429c8fad-afc5-11eb-b2ff-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -162,23 +162,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://search78e216af.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30 + uri: https://search78e216af.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://search78e216af.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.IndexerExecutionInfo","name":"sample-indexer","status":"running","lastResult":null,"executionHistory":[],"limits":{"maxRunTime":"PT0S","maxDocumentExtractionSize":0,"maxDocumentContentCharactersToExtract":0}}' + string: '{"@odata.context":"https://search78e216af.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.IndexerExecutionInfo","name":"sample-indexer","status":"running","lastResult":null,"executionHistory":[],"limits":{"maxRunTime":"PT0S","maxDocumentExtractionSize":0,"maxDocumentContentCharactersToExtract":0},"currentState":{"mode":"indexingAllDocs","allDocsInitialTrackingState":null,"allDocsFinalTrackingState":null,"resetDocsInitialTrackingState":null,"resetDocsFinalTrackingState":null,"resetDocumentKeys":[]}}' headers: cache-control: - no-cache content-length: - - '314' + - '527' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:13:41 GMT + - Sat, 08 May 2021 06:18:54 GMT elapsed-time: - - '18' + - '16' expires: - '-1' odata-version: @@ -188,7 +188,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - b97d64cb-b98e-11eb-82e4-a0481ca055a9 + - 4327e685-afc5-11eb-9834-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_list_indexer.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_list_indexer.yaml index 9ea219f14e55..d3f81468f236 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_list_indexer.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_list_indexer.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchf8231428.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searchf8231428.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchf8231428.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB2A91384CB\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchf8231428.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E932B43748\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -28,15 +28,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:13:59 GMT + - Sat, 08 May 2021 06:19:11 GMT elapsed-time: - - '45' + - '86' etag: - - W/"0x8D91BB2A91384CB" + - W/"0x8D911E932B43748" expires: - '-1' location: - - https://searchf8231428.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://searchf8231428.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -44,7 +44,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - c46530b9-b98e-11eb-b71d-a0481ca055a9 + - 4db17b4a-afc5-11eb-95c9-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -65,29 +65,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchf8231428.search.windows.net/indexes?api-version=2020-06-30 + uri: https://searchf8231428.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchf8231428.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB2AA05D84B\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://searchf8231428.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E9333E40DD\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: - no-cache content-length: - - '629' + - '664' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:14:02 GMT + - Sat, 08 May 2021 06:19:13 GMT elapsed-time: - - '1158' + - '431' etag: - - W/"0x8D91BB2AA05D84B" + - W/"0x8D911E9333E40DD" expires: - '-1' location: - - https://searchf8231428.search.windows.net/indexes('hotels')?api-version=2020-06-30 + - https://searchf8231428.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -95,7 +95,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - c4a2fad5-b98e-11eb-a73e-a0481ca055a9 + - 4e0a67f1-afc5-11eb-aea8-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -116,12 +116,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchf8231428.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searchf8231428.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchf8231428.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB2AA47CF0F\"","name":"another-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchf8231428.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E933BAB366\"","name":"another-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -130,15 +130,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:14:02 GMT + - Sat, 08 May 2021 06:19:13 GMT elapsed-time: - - '38' + - '63' etag: - - W/"0x8D91BB2AA47CF0F" + - W/"0x8D911E933BAB366" expires: - '-1' location: - - https://searchf8231428.search.windows.net/datasources('another-datasource')?api-version=2020-06-30 + - https://searchf8231428.search.windows.net/datasources('another-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -146,7 +146,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - c5969c80-b98e-11eb-ab06-a0481ca055a9 + - 4ec08aab-afc5-11eb-903d-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -167,29 +167,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchf8231428.search.windows.net/indexes?api-version=2020-06-30 + uri: https://searchf8231428.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchf8231428.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB2AB3CBB49\"","name":"another-index","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://searchf8231428.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E9347E4E02\"","name":"another-index","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: - no-cache content-length: - - '636' + - '671' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:14:04 GMT + - Sat, 08 May 2021 06:19:15 GMT elapsed-time: - - '1194' + - '810' etag: - - W/"0x8D91BB2AB3CBB49" + - W/"0x8D911E9347E4E02" expires: - '-1' location: - - https://searchf8231428.search.windows.net/indexes('another-index')?api-version=2020-06-30 + - https://searchf8231428.search.windows.net/indexes('another-index')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -197,7 +197,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - c5d761e1-b98e-11eb-a45e-a0481ca055a9 + - 4f11cc7b-afc5-11eb-aa0a-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -218,29 +218,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchf8231428.search.windows.net/indexers?api-version=2020-06-30 + uri: https://searchf8231428.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchf8231428.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB2ABBE5E8A\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://searchf8231428.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911E935AF6456\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: - no-cache content-length: - - '370' + - '383' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:14:04 GMT + - Sat, 08 May 2021 06:19:17 GMT elapsed-time: - - '546' + - '1686' etag: - - W/"0x8D91BB2ABBE5E8A" + - W/"0x8D911E935AF6456" expires: - '-1' location: - - https://searchf8231428.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + - https://searchf8231428.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -248,7 +248,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - c6cc6416-b98e-11eb-979a-a0481ca055a9 + - 4fd656cb-afc5-11eb-bca6-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -269,29 +269,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchf8231428.search.windows.net/indexers?api-version=2020-06-30 + uri: https://searchf8231428.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchf8231428.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB2AC1DCDA7\"","name":"another-indexer","description":null,"dataSourceName":"another-datasource","skillsetName":null,"targetIndexName":"another-index","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://searchf8231428.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911E93607CD93\"","name":"another-indexer","description":null,"dataSourceName":"another-datasource","skillsetName":null,"targetIndexName":"another-index","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: - no-cache content-length: - - '379' + - '392' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:14:04 GMT + - Sat, 08 May 2021 06:19:17 GMT elapsed-time: - - '384' + - '502' etag: - - W/"0x8D91BB2AC1DCDA7" + - W/"0x8D911E93607CD93" expires: - '-1' location: - - https://searchf8231428.search.windows.net/indexers('another-indexer')?api-version=2020-06-30 + - https://searchf8231428.search.windows.net/indexers('another-indexer')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -299,7 +299,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - c76cc515-b98e-11eb-bb15-a0481ca055a9 + - 512032a4-afc5-11eb-a125-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -315,23 +315,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchf8231428.search.windows.net/indexers?api-version=2020-06-30 + uri: https://searchf8231428.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchf8231428.search.windows.net/$metadata#indexers","value":[{"@odata.etag":"\"0x8D91BB2AC1DCDA7\"","name":"another-indexer","description":null,"dataSourceName":"another-datasource","skillsetName":null,"targetIndexName":"another-index","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null},{"@odata.etag":"\"0x8D91BB2ABBE5E8A\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}]}' + string: '{"@odata.context":"https://searchf8231428.search.windows.net/$metadata#indexers","value":[{"@odata.etag":"\"0x8D911E93607CD93\"","name":"another-indexer","description":null,"dataSourceName":"another-datasource","skillsetName":null,"targetIndexName":"another-index","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null},{"@odata.etag":"\"0x8D911E935AF6456\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}]}' headers: cache-control: - no-cache content-length: - - '666' + - '692' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:14:04 GMT + - Sat, 08 May 2021 06:19:17 GMT elapsed-time: - - '46' + - '22' expires: - '-1' odata-version: @@ -341,7 +341,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - c7be6c93-b98e-11eb-b595-a0481ca055a9 + - 517f2e2e-afc5-11eb-8b78-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_reset_indexer.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_reset_indexer.yaml index 279c8df3fb93..0ba99af38e7c 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_reset_indexer.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_reset_indexer.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchca8148f.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searchca8148f.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchca8148f.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB2B6414DF8\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searchca8148f.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E9412C2B69\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -28,15 +28,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:14:21 GMT + - Sat, 08 May 2021 06:19:36 GMT elapsed-time: - - '33' + - '66' etag: - - W/"0x8D91BB2B6414DF8" + - W/"0x8D911E9412C2B69" expires: - '-1' location: - - https://searchca8148f.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://searchca8148f.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -44,7 +44,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - d1924b6b-b98e-11eb-bfc5-a0481ca055a9 + - 5c3423af-afc5-11eb-ab0a-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -65,29 +65,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchca8148f.search.windows.net/indexes?api-version=2020-06-30 + uri: https://searchca8148f.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchca8148f.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB2B7348C01\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://searchca8148f.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E941EBCDA8\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: - no-cache content-length: - - '628' + - '663' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:14:24 GMT + - Sat, 08 May 2021 06:19:38 GMT elapsed-time: - - '1202' + - '793' etag: - - W/"0x8D91BB2B7348C01" + - W/"0x8D911E941EBCDA8" expires: - '-1' location: - - https://searchca8148f.search.windows.net/indexes('hotels')?api-version=2020-06-30 + - https://searchca8148f.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -95,7 +95,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - d1d165ea-b98e-11eb-9899-a0481ca055a9 + - 5c8393dc-afc5-11eb-af7d-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -116,29 +116,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchca8148f.search.windows.net/indexers?api-version=2020-06-30 + uri: https://searchca8148f.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchca8148f.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB2B7929B6F\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://searchca8148f.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911E94259495D\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: - no-cache content-length: - - '369' + - '382' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:14:24 GMT + - Sat, 08 May 2021 06:19:38 GMT elapsed-time: - - '383' + - '457' etag: - - W/"0x8D91BB2B7929B6F" + - W/"0x8D911E94259495D" expires: - '-1' location: - - https://searchca8148f.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + - https://searchca8148f.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -146,7 +146,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - d2c3e6e9-b98e-11eb-be91-a0481ca055a9 + - 5d431d2e-afc5-11eb-ad8d-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -162,23 +162,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchca8148f.search.windows.net/indexers?api-version=2020-06-30 + uri: https://searchca8148f.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchca8148f.search.windows.net/$metadata#indexers","value":[{"@odata.etag":"\"0x8D91BB2B7929B6F\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}]}' + string: '{"@odata.context":"https://searchca8148f.search.windows.net/$metadata#indexers","value":[{"@odata.etag":"\"0x8D911E94259495D\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}]}' headers: cache-control: - no-cache content-length: - - '373' + - '386' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:14:24 GMT + - Sat, 08 May 2021 06:19:38 GMT elapsed-time: - - '11' + - '10' expires: - '-1' odata-version: @@ -188,7 +188,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - d335e81c-b98e-11eb-8f99-a0481ca055a9 + - 5dce7eec-afc5-11eb-9b6f-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -208,9 +208,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searchca8148f.search.windows.net/indexers('sample-indexer')/search.reset?api-version=2020-06-30 + uri: https://searchca8148f.search.windows.net/indexers('sample-indexer')/search.reset?api-version=2020-06-30-Preview response: body: string: '' @@ -218,15 +218,15 @@ interactions: cache-control: - no-cache date: - - Thu, 20 May 2021 17:14:24 GMT + - Sat, 08 May 2021 06:19:38 GMT elapsed-time: - - '307' + - '314' expires: - '-1' pragma: - no-cache request-id: - - d345eca1-b98e-11eb-b996-a0481ca055a9 + - 5de4f25a-afc5-11eb-a4c3-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -242,23 +242,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searchca8148f.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30 + uri: https://searchca8148f.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searchca8148f.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.IndexerExecutionInfo","name":"sample-indexer","status":"running","lastResult":{"status":"reset","errorMessage":null,"startTime":"2021-05-20T17:14:25.124Z","endTime":"2021-05-20T17:14:25.124Z","itemsProcessed":0,"itemsFailed":0,"initialTrackingState":null,"finalTrackingState":null,"errors":[],"warnings":[],"metrics":null},"executionHistory":[{"status":"reset","errorMessage":null,"startTime":"2021-05-20T17:14:25.124Z","endTime":"2021-05-20T17:14:25.124Z","itemsProcessed":0,"itemsFailed":0,"initialTrackingState":null,"finalTrackingState":null,"errors":[],"warnings":[],"metrics":null}],"limits":null}' + string: '{"@odata.context":"https://searchca8148f.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.IndexerExecutionInfo","name":"sample-indexer","status":"running","lastResult":{"status":"reset","statusDetail":null,"errorMessage":null,"startTime":"2021-05-08T06:19:39.313Z","endTime":"2021-05-08T06:19:39.313Z","itemsProcessed":0,"itemsFailed":0,"initialTrackingState":null,"finalTrackingState":null,"mode":"indexingAllDocs","errors":[],"warnings":[],"metrics":null},"executionHistory":[{"status":"reset","statusDetail":null,"errorMessage":null,"startTime":"2021-05-08T06:19:39.313Z","endTime":"2021-05-08T06:19:39.313Z","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":[]}}' headers: cache-control: - no-cache content-length: - - '708' + - '1011' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:14:24 GMT + - Sat, 08 May 2021 06:19:38 GMT elapsed-time: - - '18' + - '17' expires: - '-1' odata-version: @@ -268,7 +268,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - d382a777-b98e-11eb-bbc0-a0481ca055a9 + - 5e290de1-afc5-11eb-96bd-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: diff --git a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_run_indexer.yaml b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_run_indexer.yaml index 00beefdc6e32..db21d9eaab0b 100644 --- a/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_run_indexer.yaml +++ b/sdk/search/azure-search-documents/tests/recordings/test_search_indexer_client_live.test_run_indexer.yaml @@ -14,12 +14,12 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searche43613c1.search.windows.net/datasources?api-version=2020-06-30 + uri: https://searche43613c1.search.windows.net/datasources?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searche43613c1.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D91BB2C290EB84\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' + string: '{"@odata.context":"https://searche43613c1.search.windows.net/$metadata#datasources/$entity","@odata.etag":"\"0x8D911E94CE67B9F\"","name":"sample-datasource","description":null,"type":"azureblob","subtype":null,"credentials":{"connectionString":null},"container":{"name":"searchcontainer","query":null},"dataChangeDetectionPolicy":null,"dataDeletionDetectionPolicy":null,"encryptionKey":null}' headers: cache-control: - no-cache @@ -28,15 +28,15 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:14:43 GMT + - Sat, 08 May 2021 06:19:56 GMT elapsed-time: - - '41' + - '57' etag: - - W/"0x8D91BB2C290EB84" + - W/"0x8D911E94CE67B9F" expires: - '-1' location: - - https://searche43613c1.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30 + - https://searche43613c1.search.windows.net/datasources('sample-datasource')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -44,7 +44,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - dde21b46-b98e-11eb-81fc-a0481ca055a9 + - 67ed806d-afc5-11eb-ab3b-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -65,29 +65,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searche43613c1.search.windows.net/indexes?api-version=2020-06-30 + uri: https://searche43613c1.search.windows.net/indexes?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searche43613c1.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D91BB2C3871042\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' + string: '{"@odata.context":"https://searche43613c1.search.windows.net/$metadata#indexes/$entity","@odata.etag":"\"0x8D911E94D740844\"","name":"hotels","defaultScoringProfile":null,"fields":[{"name":"hotelId","type":"Edm.String","searchable":false,"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}}' headers: cache-control: - no-cache content-length: - - '629' + - '664' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:14:44 GMT + - Sat, 08 May 2021 06:19:56 GMT elapsed-time: - - '1186' + - '496' etag: - - W/"0x8D91BB2C3871042" + - W/"0x8D911E94D740844" expires: - '-1' location: - - https://searche43613c1.search.windows.net/indexes('hotels')?api-version=2020-06-30 + - https://searche43613c1.search.windows.net/indexes('hotels')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -95,7 +95,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - de219fd2-b98e-11eb-ada7-a0481ca055a9 + - 683c2bcf-afc5-11eb-81fa-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -116,29 +116,29 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searche43613c1.search.windows.net/indexers?api-version=2020-06-30 + uri: https://searche43613c1.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searche43613c1.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D91BB2C40222B5\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}' + string: '{"@odata.context":"https://searche43613c1.search.windows.net/$metadata#indexers/$entity","@odata.etag":"\"0x8D911E94E9A2019\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}' headers: cache-control: - no-cache content-length: - - '370' + - '383' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:14:45 GMT + - Sat, 08 May 2021 06:19:59 GMT elapsed-time: - - '409' + - '1629' etag: - - W/"0x8D91BB2C40222B5" + - W/"0x8D911E94E9A2019" expires: - '-1' location: - - https://searche43613c1.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30 + - https://searche43613c1.search.windows.net/indexers('sample-indexer')?api-version=2020-06-30-Preview odata-version: - '4.0' pragma: @@ -146,7 +146,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - df17e584-b98e-11eb-9248-a0481ca055a9 + - 68cae6d1-afc5-11eb-989b-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -162,23 +162,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searche43613c1.search.windows.net/indexers?api-version=2020-06-30 + uri: https://searche43613c1.search.windows.net/indexers?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searche43613c1.search.windows.net/$metadata#indexers","value":[{"@odata.etag":"\"0x8D91BB2C40222B5\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"encryptionKey":null}]}' + string: '{"@odata.context":"https://searche43613c1.search.windows.net/$metadata#indexers","value":[{"@odata.etag":"\"0x8D911E94E9A2019\"","name":"sample-indexer","description":null,"dataSourceName":"sample-datasource","skillsetName":null,"targetIndexName":"hotels","disabled":false,"schedule":null,"parameters":null,"fieldMappings":[],"outputFieldMappings":[],"cache":null,"encryptionKey":null}]}' headers: cache-control: - no-cache content-length: - - '374' + - '387' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:14:45 GMT + - Sat, 08 May 2021 06:19:59 GMT elapsed-time: - - '10' + - '9' expires: - '-1' odata-version: @@ -188,7 +188,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - dfa62134-b98e-11eb-8138-a0481ca055a9 + - 6a0e245c-afc5-11eb-acd5-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: @@ -208,9 +208,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: POST - uri: https://searche43613c1.search.windows.net/indexers('sample-indexer')/search.run?api-version=2020-06-30 + uri: https://searche43613c1.search.windows.net/indexers('sample-indexer')/search.run?api-version=2020-06-30-Preview response: body: string: '' @@ -220,15 +220,15 @@ interactions: content-length: - '0' date: - - Thu, 20 May 2021 17:14:45 GMT + - Sat, 08 May 2021 06:19:59 GMT elapsed-time: - - '50' + - '44' expires: - '-1' pragma: - no-cache request-id: - - dfb83794-b98e-11eb-8786-a0481ca055a9 + - 6a254e63-afc5-11eb-8f41-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains status: @@ -244,23 +244,23 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-search-documents/11.2.0 Python/3.8.6 (Windows-10-10.0.19041-SP0) + - azsdk-python-search-documents/11.2.0b3 Python/3.8.6 (Windows-10-10.0.19041-SP0) method: GET - uri: https://searche43613c1.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30 + uri: https://searche43613c1.search.windows.net/indexers('sample-indexer')/search.status?api-version=2020-06-30-Preview response: body: - string: '{"@odata.context":"https://searche43613c1.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30.IndexerExecutionInfo","name":"sample-indexer","status":"running","lastResult":null,"executionHistory":[],"limits":{"maxRunTime":"PT0S","maxDocumentExtractionSize":0,"maxDocumentContentCharactersToExtract":0}}' + string: '{"@odata.context":"https://searche43613c1.search.windows.net/$metadata#Microsoft.Azure.Search.V2020_06_30_Preview.IndexerExecutionInfo","name":"sample-indexer","status":"running","lastResult":null,"executionHistory":[],"limits":{"maxRunTime":"PT0S","maxDocumentExtractionSize":0,"maxDocumentContentCharactersToExtract":0},"currentState":{"mode":"indexingAllDocs","allDocsInitialTrackingState":null,"allDocsFinalTrackingState":null,"resetDocsInitialTrackingState":null,"resetDocsFinalTrackingState":null,"resetDocumentKeys":[]}}' headers: cache-control: - no-cache content-length: - - '314' + - '527' content-type: - application/json; odata.metadata=minimal date: - - Thu, 20 May 2021 17:14:45 GMT + - Sat, 08 May 2021 06:19:59 GMT elapsed-time: - - '14' + - '13' expires: - '-1' odata-version: @@ -270,7 +270,7 @@ interactions: preference-applied: - odata.include-annotations="*" request-id: - - dfd03fc9-b98e-11eb-b391-a0481ca055a9 + - 6a414cb6-afc5-11eb-80a8-a0481ca055a9 strict-transport-security: - max-age=15724800; includeSubDomains vary: