diff --git a/sdk/communication/azure-communication-chat/azure/communication/chat/_chat_client.py b/sdk/communication/azure-communication-chat/azure/communication/chat/_chat_client.py index ca3914de99da..cf7c0047b22f 100644 --- a/sdk/communication/azure-communication-chat/azure/communication/chat/_chat_client.py +++ b/sdk/communication/azure-communication-chat/azure/communication/chat/_chat_client.py @@ -12,9 +12,9 @@ from azure.core.tracing.decorator import distributed_trace from azure.core.exceptions import HttpResponseError +from azure.core.pipeline.policies import BearerTokenCredentialPolicy from ._chat_thread_client import ChatThreadClient -from ._common import CommunicationUserCredentialPolicy from ._shared.user_credential import CommunicationUserCredential from ._generated import AzureCommunicationChatService from ._generated.models import CreateChatThreadRequest @@ -75,7 +75,7 @@ def __init__( self._client = AzureCommunicationChatService( self._endpoint, - authentication_policy=CommunicationUserCredentialPolicy(self._credential), + authentication_policy=BearerTokenCredentialPolicy(self._credential), sdk_moniker=SDK_MONIKER, **kwargs ) diff --git a/sdk/communication/azure-communication-chat/azure/communication/chat/_chat_thread_client.py b/sdk/communication/azure-communication-chat/azure/communication/chat/_chat_thread_client.py index fee9156a2b63..98ac9960b833 100644 --- a/sdk/communication/azure-communication-chat/azure/communication/chat/_chat_thread_client.py +++ b/sdk/communication/azure-communication-chat/azure/communication/chat/_chat_thread_client.py @@ -11,9 +11,9 @@ from urlparse import urlparse # type: ignore from azure.core.tracing.decorator import distributed_trace +from azure.core.pipeline.policies import BearerTokenCredentialPolicy from ._shared.user_credential import CommunicationUserCredential -from ._common import CommunicationUserCredentialPolicy from ._generated import AzureCommunicationChatService from ._generated.models import ( AddChatThreadMembersRequest, @@ -97,7 +97,7 @@ def __init__( self._client = AzureCommunicationChatService( endpoint, - authentication_policy=CommunicationUserCredentialPolicy(self._credential), + authentication_policy=BearerTokenCredentialPolicy(self._credential), sdk_moniker=SDK_MONIKER, **kwargs ) diff --git a/sdk/communication/azure-communication-chat/azure/communication/chat/_common/__init__.py b/sdk/communication/azure-communication-chat/azure/communication/chat/_common/__init__.py index b23c271ffdb9..e69de29bb2d1 100644 --- a/sdk/communication/azure-communication-chat/azure/communication/chat/_common/__init__.py +++ b/sdk/communication/azure-communication-chat/azure/communication/chat/_common/__init__.py @@ -1,12 +0,0 @@ -# ------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# -------------------------------------------------------------------------- - -from ._communication_user_credential_policy import CommunicationUserCredentialPolicy - - -__all__ = [ - 'CommunicationUserCredentialPolicy' -] diff --git a/sdk/communication/azure-communication-chat/azure/communication/chat/_common/_communication_user_credential_policy.py b/sdk/communication/azure-communication-chat/azure/communication/chat/_common/_communication_user_credential_policy.py deleted file mode 100644 index 6f66a9171a8c..000000000000 --- a/sdk/communication/azure-communication-chat/azure/communication/chat/_common/_communication_user_credential_policy.py +++ /dev/null @@ -1,24 +0,0 @@ -# ------------------------------------------------------------------------- -# Copyright (c) Microsoft Corporation. All rights reserved. -# Licensed under the MIT License. See License.txt in the project root for -# license information. -# -------------------------------------------------------------------------- - -from azure.core.pipeline.policies import SansIOHTTPPolicy - -HEADER_NAME = "Authorization" - - -class CommunicationUserCredentialPolicy(SansIOHTTPPolicy): - """Adds a key header for the provided credential. - - :param credential: The credential used to authenticate requests. - :type credential: ~azure.communication.chat.common.CommunicationUserCredential - """ - def __init__(self, credential, **kwargs): # pylint: disable=unused-argument - # type: (CommunicationUserCredential, str, Any) -> None - super(CommunicationUserCredentialPolicy, self).__init__() - self._credential = credential - - def on_request(self, request): - request.http_request.headers[HEADER_NAME] = "Bearer " + self._credential.get_token().token diff --git a/sdk/communication/azure-communication-chat/azure/communication/chat/_shared/user_credential.py b/sdk/communication/azure-communication-chat/azure/communication/chat/_shared/user_credential.py index c27a32369185..f922d9cba5b9 100644 --- a/sdk/communication/azure-communication-chat/azure/communication/chat/_shared/user_credential.py +++ b/sdk/communication/azure-communication-chat/azure/communication/chat/_shared/user_credential.py @@ -10,6 +10,7 @@ Tuple, ) import six + from msrest.serialization import TZ_UTC from .utils import create_access_token @@ -70,7 +71,6 @@ def get_token(self): self._lock.notify_all() raise - return self._token def _wait_till_inprogress_thread_finish_refreshing(self): diff --git a/sdk/communication/azure-communication-chat/azure/communication/chat/_shared/user_credential_async.py b/sdk/communication/azure-communication-chat/azure/communication/chat/_shared/user_credential_async.py index 1c9b2318aa09..a88d9966f8ff 100644 --- a/sdk/communication/azure-communication-chat/azure/communication/chat/_shared/user_credential_async.py +++ b/sdk/communication/azure-communication-chat/azure/communication/chat/_shared/user_credential_async.py @@ -9,7 +9,9 @@ cast, Tuple, ) + import six + from msrest.serialization import TZ_UTC from .utils import create_access_token diff --git a/sdk/communication/azure-communication-chat/azure/communication/chat/_shared/utils.py b/sdk/communication/azure-communication-chat/azure/communication/chat/_shared/utils.py index cd7e5c92a2c9..b54224758a10 100644 --- a/sdk/communication/azure-communication-chat/azure/communication/chat/_shared/utils.py +++ b/sdk/communication/azure-communication-chat/azure/communication/chat/_shared/utils.py @@ -6,6 +6,7 @@ import base64 import json +import time from typing import ( # pylint: disable=unused-import cast, Tuple, @@ -65,6 +66,12 @@ def create_access_token(token): try: padded_base64_payload = base64.b64decode(parts[1] + "==").decode('ascii') payload = json.loads(padded_base64_payload) - return AccessToken(token, datetime.fromtimestamp(payload['exp']).replace(tzinfo=TZ_UTC)) + return AccessToken(token, + _convert_expires_on_datetime_to_utc_int(datetime.fromtimestamp(payload['exp']).replace(tzinfo=TZ_UTC))) except ValueError: raise ValueError(token_parse_err_msg) + +def _convert_expires_on_datetime_to_utc_int(expires_on): + epoch = time.mktime(datetime(1970, 1, 1).timetuple()) + return epoch-time.mktime(expires_on.timetuple()) + \ No newline at end of file diff --git a/sdk/communication/azure-communication-chat/azure/communication/chat/aio/_chat_client_async.py b/sdk/communication/azure-communication-chat/azure/communication/chat/aio/_chat_client_async.py index 1997b165c18a..c3390c7178fe 100644 --- a/sdk/communication/azure-communication-chat/azure/communication/chat/aio/_chat_client_async.py +++ b/sdk/communication/azure-communication-chat/azure/communication/chat/aio/_chat_client_async.py @@ -15,11 +15,11 @@ import six from azure.core.tracing.decorator import distributed_trace from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.pipeline.policies import BearerTokenCredentialPolicy from azure.core.exceptions import HttpResponseError from azure.core.async_paging import AsyncItemPaged from ._chat_thread_client_async import ChatThreadClient -from .._common import CommunicationUserCredentialPolicy from .._shared.user_credential_async import CommunicationUserCredential from .._generated.aio import AzureCommunicationChatService from .._generated.models import ( @@ -78,7 +78,7 @@ def __init__( self._client = AzureCommunicationChatService( self._endpoint, - authentication_policy=CommunicationUserCredentialPolicy(self._credential), + authentication_policy=BearerTokenCredentialPolicy(self._credential), sdk_moniker=SDK_MONIKER, **kwargs) diff --git a/sdk/communication/azure-communication-chat/azure/communication/chat/aio/_chat_thread_client_async.py b/sdk/communication/azure-communication-chat/azure/communication/chat/aio/_chat_thread_client_async.py index 703cfb80ece5..30a3dcae551d 100644 --- a/sdk/communication/azure-communication-chat/azure/communication/chat/aio/_chat_thread_client_async.py +++ b/sdk/communication/azure-communication-chat/azure/communication/chat/aio/_chat_thread_client_async.py @@ -15,9 +15,9 @@ import six from azure.core.tracing.decorator import distributed_trace from azure.core.tracing.decorator_async import distributed_trace_async +from azure.core.pipeline.policies import BearerTokenCredentialPolicy from azure.core.async_paging import AsyncItemPaged -from .._common import CommunicationUserCredentialPolicy from .._shared.user_credential_async import CommunicationUserCredential from .._generated.aio import AzureCommunicationChatService from .._generated.models import ( @@ -96,7 +96,7 @@ def __init__( self._client = AzureCommunicationChatService( endpoint, - authentication_policy=CommunicationUserCredentialPolicy(self._credential), + authentication_policy=BearerTokenCredentialPolicy(self._credential), sdk_moniker=SDK_MONIKER, **kwargs) diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_create_chat_thread.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_create_chat_thread.yaml index 373dedcff227..65f89f733eee 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_create_chat_thread.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_create_chat_thread.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:04 GMT + - Wed, 02 Dec 2020 23:47:04 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:04 GMT + - Wed, 02 Dec 2020 23:47:03 GMT ms-cv: - - fe8GIULrmE6QhpXm1qICYQ.0 + - y545XwThskuqneWPpI2J5g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 226ms + - 206ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:48:04 GMT + - Wed, 02 Dec 2020 23:47:05 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:48:04.2945816+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:47:03.1417047+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:04 GMT + - Wed, 02 Dec 2020 23:47:04 GMT ms-cv: - - 1hqRr6NaHkKQuQschfqWGQ.0 + - hsf4fi9k20SDG3oDg0ZUUA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 292ms + - 283ms status: code: 200 message: OK @@ -93,26 +93,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:05 GMT + - Wed, 02 Dec 2020 23:47:04 GMT ms-cv: - - uBNvvJKY+0Oh3CuI/A8sNQ.0 + - cXxT3zNRQU+4EHUOWmcQ9w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 181ms + - 215ms status: code: 207 message: Multi-Status @@ -128,7 +128,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:05 GMT + - Wed, 02 Dec 2020 23:47:06 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -140,15 +140,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:48:06 GMT + - Wed, 02 Dec 2020 23:47:05 GMT ms-cv: - - CyKTdQdMlk6bJqwL6tj9BQ.0 + - FkccrBO7BEKSIxThg7d5bA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 711ms + - 834ms status: code: 204 message: No Content @@ -164,7 +164,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -172,15 +172,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:48:06 GMT + - Wed, 02 Dec 2020 23:47:06 GMT ms-cv: - - XTK1Jm4VZ0ibw36diC8kng.0 + - z2W4cATUr0qN3rO0M3JG3Q.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 73ms + - 145ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_delete_chat_thread.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_delete_chat_thread.yaml index db29ed63cc3f..89208acd8754 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_delete_chat_thread.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_delete_chat_thread.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:07 GMT + - Wed, 02 Dec 2020 23:47:07 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:07 GMT + - Wed, 02 Dec 2020 23:47:06 GMT ms-cv: - - cft8FETd2UenFqgeAw98sQ.0 + - gWsoTNIIsESeHKQoyza/LA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 205ms + - 209ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:48:07 GMT + - Wed, 02 Dec 2020 23:47:08 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:48:07.0340593+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:47:06.1263309+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:07 GMT + - Wed, 02 Dec 2020 23:47:06 GMT ms-cv: - - MdHwjpKprkWMYv6+/3eEKg.0 + - R1/BpTiBsE+I8UbwKUR/0w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 275ms + - 278ms status: code: 200 message: OK @@ -93,26 +93,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:07 GMT + - Wed, 02 Dec 2020 23:47:07 GMT ms-cv: - - cKYTG/oDkUGXVLvim9h/fQ.0 + - WpuQkQmOmE6DGBY5BWe4IA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 312ms + - 381ms status: code: 207 message: Multi-Status @@ -128,7 +128,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -136,15 +136,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:48:08 GMT + - Wed, 02 Dec 2020 23:47:07 GMT ms-cv: - - XyKlM6f0X06+KtoO2znMow.0 + - ZtUAO0OxB0q8ivftF6Yc0A.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 127ms + - 165ms status: code: 204 message: No Content @@ -160,7 +160,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:09 GMT + - Wed, 02 Dec 2020 23:47:09 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -172,15 +172,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:48:09 GMT + - Wed, 02 Dec 2020 23:47:09 GMT ms-cv: - - JkDTB7thgEu6K+Afey0hcA.0 + - +h+VlWjjeUigsk2oZMhtHw.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 1143ms + - 1071ms status: code: 204 message: No Content @@ -196,7 +196,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -204,15 +204,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:48:09 GMT + - Wed, 02 Dec 2020 23:47:09 GMT ms-cv: - - P/JKbYmTQ0qaJ6vsKCrOGQ.0 + - 3glYFarFr0aeJn9IGjsjGA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 26ms + - 62ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_get_chat_thread.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_get_chat_thread.yaml index 6dc4dad27296..86098377aaf2 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_get_chat_thread.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_get_chat_thread.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:10 GMT + - Wed, 02 Dec 2020 23:47:11 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:10 GMT + - Wed, 02 Dec 2020 23:47:10 GMT ms-cv: - - 5vACECezBEyDSy5w3VORLQ.0 + - tVlzxts3H0CGdNKx4oL4cg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 210ms + - 211ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:48:11 GMT + - Wed, 02 Dec 2020 23:47:11 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:48:10.5782778+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:47:09.8304716+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:10 GMT + - Wed, 02 Dec 2020 23:47:10 GMT ms-cv: - - 3/Cmsjb/lUmflZSClTOkyQ.0 + - vUtd9yMZMUqj+jyslkke8g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 276ms + - 286ms status: code: 200 message: OK @@ -93,26 +93,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:12 GMT + - Wed, 02 Dec 2020 23:47:11 GMT ms-cv: - - z2B2eOCdzkCNpgqC28YFzw.0 + - pcsN13x5eEuWMzOHELEEUg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 554ms + - 262ms status: code: 207 message: Multi-Status @@ -126,27 +126,27 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: - body: '{"id": "sanitized", "topic": "test topic", "createdOn": "2020-10-01T22:48:12Z", + body: '{"id": "sanitized", "topic": "test topic", "createdOn": "2020-12-02T23:47:11Z", "createdBy": "sanitized", "members": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:12 GMT + - Wed, 02 Dec 2020 23:47:11 GMT ms-cv: - - aDV48+ZQsEuC4x5W5jWwTg.0 + - vWVn824KxkONTMHJgd+cQw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 40ms + - 67ms status: code: 200 message: OK @@ -162,7 +162,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:12 GMT + - Wed, 02 Dec 2020 23:47:13 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -174,15 +174,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:48:13 GMT + - Wed, 02 Dec 2020 23:47:13 GMT ms-cv: - - AVq30DZDM0u/cQqTQsdlgA.0 + - jq9t7+ckWUi1Gqf+L8SP8Q.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 1007ms + - 1495ms status: code: 204 message: No Content @@ -198,7 +198,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -206,15 +206,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:48:13 GMT + - Wed, 02 Dec 2020 23:47:13 GMT ms-cv: - - apLQYuh0kE6e/ZK01i2aTQ.0 + - HQR5UmiuqUCdHM6nzdSLFA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 110ms + - 139ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_get_thread_client.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_get_thread_client.yaml index 9b43fc008f6b..b9ad691d0b25 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_get_thread_client.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_get_thread_client.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:14 GMT + - Wed, 02 Dec 2020 23:47:14 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:14 GMT + - Wed, 02 Dec 2020 23:47:14 GMT ms-cv: - - v25eHGzcHEalxqZSO8wCDw.0 + - unWGwaW/mkecuJOVqQYQjQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 225ms + - 244ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:48:15 GMT + - Wed, 02 Dec 2020 23:47:15 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:48:14.369386+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:47:13.8882327+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:15 GMT + - Wed, 02 Dec 2020 23:47:14 GMT ms-cv: - - 3q1j7VOFVkuio7mS1RByjA.0 + - uMKM1KYK60mrKhR4TYZzyg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 278ms + - 284ms status: code: 200 message: OK @@ -93,26 +93,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:16 GMT + - Wed, 02 Dec 2020 23:47:15 GMT ms-cv: - - Etag0jtBwkCHXR6dn2hV0Q.0 + - sdG/7ul5N06rvyrn+0EsOA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 405ms + - 271ms status: code: 207 message: Multi-Status @@ -128,7 +128,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:16 GMT + - Wed, 02 Dec 2020 23:47:17 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -140,15 +140,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:48:16 GMT + - Wed, 02 Dec 2020 23:47:16 GMT ms-cv: - - zOVlGk9D6Uq8CvO7ddoUFA.0 + - YrsGqGLkKEKiqYcu6131dA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 961ms + - 1488ms status: code: 204 message: No Content @@ -164,7 +164,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -172,15 +172,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:48:17 GMT + - Wed, 02 Dec 2020 23:47:17 GMT ms-cv: - - gYVJZBeVd0SN5k49zKaf9Q.0 + - xvywnUjse0S6fKP4F1bgQw.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 66ms + - 145ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_list_chat_threads.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_list_chat_threads.yaml index fddfa3ccfa6d..a5676b4b1410 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_list_chat_threads.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e.test_list_chat_threads.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:17 GMT + - Wed, 02 Dec 2020 23:47:19 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:17 GMT + - Wed, 02 Dec 2020 23:47:17 GMT ms-cv: - - AOUpOr5lqEeuEClYbLGQow.0 + - JYdK+w62Mky4+PnOgkIrYQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 208ms + - 207ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:48:18 GMT + - Wed, 02 Dec 2020 23:47:19 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:48:17.6733861+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:47:17.6875722+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:18 GMT + - Wed, 02 Dec 2020 23:47:17 GMT ms-cv: - - sQoafUKDCE+DscyI7g3GUQ.0 + - PZXxCIENDUCVME1Uz0qfvQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 275ms + - 279ms status: code: 200 message: OK @@ -93,26 +93,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:19 GMT + - Wed, 02 Dec 2020 23:47:18 GMT ms-cv: - - vQ/O7g4eDEiL9aSLGDPT4w.0 + - YyA7Qs0k4kC5Il5kP1uGtw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 241ms + - 421ms status: code: 207 message: Multi-Status @@ -126,26 +126,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads?maxPageSize=1&api-version=2020-09-21-preview2 response: body: '{"value": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:21 GMT + - Wed, 02 Dec 2020 23:47:21 GMT ms-cv: - - WYJfu7+2l0aDpzcem5Y2Kw.0 + - 6gKpeApOKkeKLQ+jeIUeGw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 45ms + - 25ms status: code: 200 message: OK @@ -161,7 +161,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:21 GMT + - Wed, 02 Dec 2020 23:47:23 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -173,15 +173,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:48:21 GMT + - Wed, 02 Dec 2020 23:47:22 GMT ms-cv: - - xeND38DwIk6HZG1ygLTioA.0 + - RiySMAdHEUOed6NAhjeWvQ.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 715ms + - 977ms status: code: 204 message: No Content @@ -197,7 +197,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -205,15 +205,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:48:22 GMT + - Wed, 02 Dec 2020 23:47:22 GMT ms-cv: - - 0rDmR1kkyUimsvKSGxkbwg.0 + - KH74ovx+8UOD57kDDLDMkw.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 81ms + - 125ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_create_chat_thread_async.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_create_chat_thread_async.yaml index 0955dc57a35b..732cbf8ea0b1 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_create_chat_thread_async.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_create_chat_thread_async.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:22 GMT + - Wed, 02 Dec 2020 23:47:24 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:22 GMT + - Wed, 02 Dec 2020 23:47:23 GMT ms-cv: - - QSCbSrgO7U2Adg+S3C68Rg.0 + - k1uhIxxIHkytdDJYNJB1bQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 212ms + - 211ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:48:23 GMT + - Wed, 02 Dec 2020 23:47:25 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:48:22.7572342+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:47:23.1482132+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:23 GMT + - Wed, 02 Dec 2020 23:47:23 GMT ms-cv: - - KrqZ4jB1n0OzwHiNZo8q+w.0 + - FeXfd+E6kEyk1Xiy6LG7dw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 270ms + - 290ms status: code: 200 message: OK @@ -89,19 +89,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:48:23 GMT - ms-cv: 2Y1gQKJ+EUyl0fF+H1ulFQ.0 + date: Wed, 02 Dec 2020 23:47:23 GMT + ms-cv: DAjO6UVirkKR+lanq+6LOA.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 294ms + x-processing-time: 278ms status: code: 207 message: Multi-Status @@ -112,18 +112,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:48:23 GMT - ms-cv: eDflju2COECRm6Lzy5iiVw.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:47:24 GMT + ms-cv: pMwU+IZh+kiRDUMa8dbiyw.0 strict-transport-security: max-age=2592000 - x-processing-time: 133ms + x-processing-time: 164ms status: code: 204 message: No Content @@ -140,7 +140,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:24 GMT + - Wed, 02 Dec 2020 23:47:26 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -152,15 +152,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:48:25 GMT + - Wed, 02 Dec 2020 23:47:26 GMT ms-cv: - - Pxl6t9kWIE2sUX52lEHOTg.0 + - MpmHa7pSQ0Km89WjP/kthA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 1058ms + - 1432ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_delete_chat_thread.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_delete_chat_thread.yaml index 1b105347f499..306b2f0c72ea 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_delete_chat_thread.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_delete_chat_thread.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:25 GMT + - Wed, 02 Dec 2020 23:47:28 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:26 GMT + - Wed, 02 Dec 2020 23:47:26 GMT ms-cv: - - PI5HRuD/F06qldFWyCOXtQ.0 + - fhyGerZaykiz43C1wQrfKg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 236ms + - 206ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:48:26 GMT + - Wed, 02 Dec 2020 23:47:28 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:48:25.9847651+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:47:26.6202219+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:26 GMT + - Wed, 02 Dec 2020 23:47:27 GMT ms-cv: - - yW1xnufq20O4sEXQhtqzbw.0 + - c7+GC/LdXkm5C16fJbebnQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 294ms + - 283ms status: code: 200 message: OK @@ -85,23 +85,23 @@ interactions: Accept: - application/json Content-Length: - - '201' + - '200' Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:48:26 GMT - ms-cv: EzHyAxuiU0CSqwzJ+oWiWg.0 + date: Wed, 02 Dec 2020 23:47:27 GMT + ms-cv: o3tiOtodrEOKVKshGpP1QA.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 300ms + x-processing-time: 177ms status: code: 207 message: Multi-Status @@ -112,18 +112,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:48:26 GMT - ms-cv: VVrHZhE7o0+AuzhYvrh0/g.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:47:27 GMT + ms-cv: NkzF0V5ua0GC8deYEIT8WA.0 strict-transport-security: max-age=2592000 - x-processing-time: 65ms + x-processing-time: 161ms status: code: 204 message: No Content @@ -134,18 +134,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:48:27 GMT - ms-cv: QmT2ALRHWE+GS6vqkO4lAQ.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:47:28 GMT + ms-cv: V87A8A4W2EmEcsoety6PuA.0 strict-transport-security: max-age=2592000 - x-processing-time: 301ms + x-processing-time: 83ms status: code: 204 message: No Content @@ -162,7 +162,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:28 GMT + - Wed, 02 Dec 2020 23:47:30 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -174,15 +174,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:48:28 GMT + - Wed, 02 Dec 2020 23:47:29 GMT ms-cv: - - JspE4e7FgUCeNsXU49YE2w.0 + - O3f1a1jO9EipDhJSu8jHAQ.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 821ms + - 1006ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_get_chat_thread.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_get_chat_thread.yaml index dffc2aad4e32..89581c1582a9 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_get_chat_thread.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_get_chat_thread.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:29 GMT + - Wed, 02 Dec 2020 23:47:31 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:29 GMT + - Wed, 02 Dec 2020 23:47:30 GMT ms-cv: - - lwKVCJE5F06uFt4/VU6aMg.0 + - 6R4gU+twbkyBcY7nsqsp8w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 206ms + - 207ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:48:29 GMT + - Wed, 02 Dec 2020 23:47:31 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:48:29.0659228+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:47:29.9669179+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:29 GMT + - Wed, 02 Dec 2020 23:47:30 GMT ms-cv: - - qmHBkTmmi0aDlF4do9PzhA.0 + - x27mn1NLyk2+f4Fk2OwOVQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 276ms + - 274ms status: code: 200 message: OK @@ -89,19 +89,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:48:30 GMT - ms-cv: o2MF9Zgjj0mwIMNKKm/noA.0 + date: Wed, 02 Dec 2020 23:47:31 GMT + ms-cv: Ky0SiCHD90ytgwrnq0mBeg.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 173ms + x-processing-time: 279ms status: code: 207 message: Multi-Status @@ -112,20 +112,20 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: - body: '{"id": "sanitized", "topic": "test topic", "createdOn": "2020-10-01T22:48:30Z", + body: '{"id": "sanitized", "topic": "test topic", "createdOn": "2020-12-02T23:47:31Z", "createdBy": "sanitized", "members": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:48:30 GMT - ms-cv: v50+x4YTiEqJLZKZGxltjA.0 + date: Wed, 02 Dec 2020 23:47:31 GMT + ms-cv: /QksQtqV20ClYpZEdwRc7Q.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 39ms + x-processing-time: 67ms status: code: 200 message: OK @@ -136,18 +136,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:48:30 GMT - ms-cv: 4x0MOpKhw0qadgA6xg9+5w.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:47:31 GMT + ms-cv: gmZJhV+trEC1ejQ25JN4dw.0 strict-transport-security: max-age=2592000 - x-processing-time: 53ms + x-processing-time: 140ms status: code: 204 message: No Content @@ -164,7 +164,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:30 GMT + - Wed, 02 Dec 2020 23:47:33 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -176,15 +176,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:48:31 GMT + - Wed, 02 Dec 2020 23:47:32 GMT ms-cv: - - //nLBSlVqkymBv5VfCeVjA.0 + - m5aAQ69baEm0y2+QI/DRpw.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 1345ms + - 1084ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_get_thread_client.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_get_thread_client.yaml index 87c117057689..6d9a8d2845a6 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_get_thread_client.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_get_thread_client.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:32 GMT + - Wed, 02 Dec 2020 23:47:34 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:32 GMT + - Wed, 02 Dec 2020 23:47:33 GMT ms-cv: - - Ff06YaMrR0+Ym1jPO1KDaQ.0 + - ZExDC3TnIEGTf6fVcPScQg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 233ms + - 213ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:48:33 GMT + - Wed, 02 Dec 2020 23:47:35 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:48:32.464477+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:47:33.1685786+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:32 GMT + - Wed, 02 Dec 2020 23:47:33 GMT ms-cv: - - H4g7sZOx10e5hA7ZrijZvw.0 + - /+UR2bHAJUyDqqri1UcWoQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 278ms + - 281ms status: code: 200 message: OK @@ -89,19 +89,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:48:33 GMT - ms-cv: dE/9ZSRef0yrm6WWJAoN/Q.0 + date: Wed, 02 Dec 2020 23:47:33 GMT + ms-cv: NIGCXoZoCUu/aozrXfQgaA.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 212ms + x-processing-time: 349ms status: code: 207 message: Multi-Status @@ -112,18 +112,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:48:34 GMT - ms-cv: MA4Ar2rKKkaquEBoD4a1HA.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:47:34 GMT + ms-cv: cKlqBBe6XkSO60+WvuyrMg.0 strict-transport-security: max-age=2592000 - x-processing-time: 64ms + x-processing-time: 167ms status: code: 204 message: No Content @@ -140,7 +140,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:34 GMT + - Wed, 02 Dec 2020 23:47:36 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -152,15 +152,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:48:35 GMT + - Wed, 02 Dec 2020 23:47:36 GMT ms-cv: - - 3Rqn+fOjDE2y2m0y+IZzAQ.0 + - S/5JtwWLa02aUFmSk3Fp4Q.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 1476ms + - 1237ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_list_chat_threads.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_list_chat_threads.yaml index 73e1724c3fe7..e8d3ed70cd4c 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_list_chat_threads.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_client_e2e_async.test_list_chat_threads.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:35 GMT + - Wed, 02 Dec 2020 23:47:37 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:35 GMT + - Wed, 02 Dec 2020 23:47:36 GMT ms-cv: - - zn/jmJiONEyuuseP/iz7vA.0 + - qOanpWQSTUONn9sl7m00cw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 205ms + - 221ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:48:36 GMT + - Wed, 02 Dec 2020 23:47:38 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:48:35.8662311+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:47:36.5603341+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:36 GMT + - Wed, 02 Dec 2020 23:47:36 GMT ms-cv: - - 9alIkXSsXESDZAS6K9Gk9g.0 + - 3L7EM7UHeEimdupefnGSnw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 279ms + - 287ms status: code: 200 message: OK @@ -89,19 +89,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:48:37 GMT - ms-cv: 0fzbNJSoDUyX8Aj1rE4cSw.0 + date: Wed, 02 Dec 2020 23:47:37 GMT + ms-cv: tQcin5ycYE6yPjW5vdPqXg.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 260ms + x-processing-time: 188ms status: code: 207 message: Multi-Status @@ -112,19 +112,19 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads?maxPageSize=1&api-version=2020-09-21-preview2 response: body: '{"value": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:48:39 GMT - ms-cv: 6aLwM4jC4kOpGpUmRP2xqQ.0 + date: Wed, 02 Dec 2020 23:47:39 GMT + ms-cv: XF6pilSaCkWx437Td0gmjQ.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 82ms + x-processing-time: 120ms status: code: 200 message: OK @@ -135,18 +135,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:48:39 GMT - ms-cv: 5cuAM0L5A0y9tzm5hQVKDQ.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:47:39 GMT + ms-cv: 3rfDKCV2x0GKUdOYfcSPNw.0 strict-transport-security: max-age=2592000 - x-processing-time: 104ms + x-processing-time: 198ms status: code: 204 message: No Content @@ -163,7 +163,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:39 GMT + - Wed, 02 Dec 2020 23:47:41 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -175,15 +175,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:48:40 GMT + - Wed, 02 Dec 2020 23:47:40 GMT ms-cv: - - bFl0bfWM6Emlz7/WLQwjpQ.0 + - vymdAQrEHUuXVyrWXx6l2Q.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 898ms + - 1026ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_add_members.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_add_members.yaml index aa4ff5b6e9e9..c438cf2e903c 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_add_members.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_add_members.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:40 GMT + - Wed, 02 Dec 2020 23:47:43 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:40 GMT + - Wed, 02 Dec 2020 23:47:41 GMT ms-cv: - - ZPmU6PVvZEmrrXJmUwgymQ.0 + - /dSOvdLqhE2TBW1ZKAq33w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 201ms + - 212ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:48:41 GMT + - Wed, 02 Dec 2020 23:47:43 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:48:40.9884181+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:47:41.8647504+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:41 GMT + - Wed, 02 Dec 2020 23:47:41 GMT ms-cv: - - o3n50hF3FU69D73NNbxzfA.0 + - 4uYP1s3lI0K8dJPtsPhiug.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 277ms + - 287ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:42 GMT + - Wed, 02 Dec 2020 23:47:44 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:41 GMT + - Wed, 02 Dec 2020 23:47:42 GMT ms-cv: - - gf/vHbe160i4t70V7zyWkg.0 + - s+0FlY1sQUqbX/ZI4I/b0Q.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 201ms + - 225ms status: code: 200 message: OK @@ -132,26 +132,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:42 GMT + - Wed, 02 Dec 2020 23:47:44 GMT ms-cv: - - cAn/gA0vaUGXqU2ajnp+zQ.0 + - QzWl8SqWDke9hsq60Kpl7Q.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 185ms + - 960ms status: code: 207 message: Multi-Status @@ -165,11 +165,11 @@ interactions: Connection: - keep-alive Content-Length: - - '177' + - '178' Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/members?api-version=2020-09-21-preview2 response: @@ -180,15 +180,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:42 GMT + - Wed, 02 Dec 2020 23:47:44 GMT ms-cv: - - uvX1rywlDEagHNR34rs0LA.0 + - A9UGxzV5dkGm95G/RW+vsw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 126ms + - 165ms status: code: 207 message: Multi-Status @@ -204,7 +204,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:43 GMT + - Wed, 02 Dec 2020 23:47:46 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -216,15 +216,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:48:45 GMT + - Wed, 02 Dec 2020 23:47:45 GMT ms-cv: - - KOEuz5W6kEm2i2NsJfO4Mw.0 + - 2w5xfB1lsUGr+o4bpVEEiA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 1446ms + - 824ms status: code: 204 message: No Content @@ -240,7 +240,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:45 GMT + - Wed, 02 Dec 2020 23:47:47 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -252,15 +252,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:48:45 GMT + - Wed, 02 Dec 2020 23:47:46 GMT ms-cv: - - cW1wW7cLSkaFwoQDYGaC2w.0 + - Bt9bbhsJBkG+1tFAQrVCSg.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 596ms + - 876ms status: code: 204 message: No Content @@ -276,7 +276,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -284,15 +284,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:48:45 GMT + - Wed, 02 Dec 2020 23:47:46 GMT ms-cv: - - k3L0V9PH9Uacxcf4rpl2sg.0 + - 68xdUPx1LkSn924UjfiPAQ.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 68ms + - 164ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_delete_message.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_delete_message.yaml index c15444fc243a..9bac64957ad4 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_delete_message.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_delete_message.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:46 GMT + - Wed, 02 Dec 2020 23:47:49 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:45 GMT + - Wed, 02 Dec 2020 23:47:47 GMT ms-cv: - - EnMLWQ9jpE+7q/UNlYJCQg.0 + - 8oKQj4k/jkawyR9Os9ofQQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 200ms + - 205ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:48:46 GMT + - Wed, 02 Dec 2020 23:47:49 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:48:46.1273593+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:47:47.7821291+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:46 GMT + - Wed, 02 Dec 2020 23:47:48 GMT ms-cv: - - 3TKmu7GgXU+fIhOV3PUIYw.0 + - afP0kPL660CVSrzdVWsfWg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 271ms + - 276ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:47 GMT + - Wed, 02 Dec 2020 23:47:50 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:46 GMT + - Wed, 02 Dec 2020 23:47:48 GMT ms-cv: - - 7k8UcPEzhUKsx0dDluxBuw.0 + - LBslmmhJlEagI0SPnWx0Fg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 200ms + - 206ms status: code: 200 message: OK @@ -132,26 +132,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:47 GMT + - Wed, 02 Dec 2020 23:47:49 GMT ms-cv: - - wWPQ+Q3hnEaaR1tGZYj8+g.0 + - xdLGTdiTGEKeYkNbzsP3Rw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 319ms + - 274ms status: code: 207 message: Multi-Status @@ -170,26 +170,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2020-09-21-preview2 response: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:48 GMT + - Wed, 02 Dec 2020 23:47:50 GMT ms-cv: - - sD8hvsFJuEa+kltTBrtRnw.0 + - GV5O22CtHkSTYlObkXKwdg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 158ms + - 257ms status: code: 201 message: Created @@ -205,7 +205,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2020-09-21-preview2 response: @@ -213,15 +213,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:48:48 GMT + - Wed, 02 Dec 2020 23:47:50 GMT ms-cv: - - 5TjUA4oxnE6MrAX2wpGMaw.0 + - 5SfIxLjjwECfVLKSS66aLg.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 69ms + - 163ms status: code: 204 message: No Content @@ -237,7 +237,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:49 GMT + - Wed, 02 Dec 2020 23:47:52 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -249,15 +249,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:48:49 GMT + - Wed, 02 Dec 2020 23:47:51 GMT ms-cv: - - kAjCMg56YE65+rd1WbOMig.0 + - +BxolgU4sEOsK9DmY6AsWg.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 797ms + - 1243ms status: code: 204 message: No Content @@ -273,7 +273,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:50 GMT + - Wed, 02 Dec 2020 23:47:53 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -285,15 +285,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:48:49 GMT + - Wed, 02 Dec 2020 23:47:52 GMT ms-cv: - - 4ThWtTb6lEu5lp9hYtQwxg.0 + - /M2pQM5rK0eCi7+UTwVRRA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 419ms + - 901ms status: code: 204 message: No Content @@ -309,7 +309,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -317,15 +317,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:48:50 GMT + - Wed, 02 Dec 2020 23:47:52 GMT ms-cv: - - ZYuFiwL1tUWgcYwQTBGaaw.0 + - 19EqY/+7E0uxsDCqsU9zmw.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 116ms + - 142ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_get_message.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_get_message.yaml index c100c65fdf39..a81e92321761 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_get_message.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_get_message.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:50 GMT + - Wed, 02 Dec 2020 23:47:55 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:50 GMT + - Wed, 02 Dec 2020 23:47:53 GMT ms-cv: - - WS7ND5c3WUuDn89v7EfWbg.0 + - fbjmYcKW60ubTWnJTQr0Nw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 208ms + - 206ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:48:51 GMT + - Wed, 02 Dec 2020 23:47:55 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:48:50.8663366+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:47:53.5773001+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:51 GMT + - Wed, 02 Dec 2020 23:47:53 GMT ms-cv: - - utDeUWiMe0Gn2Wah1sXGBQ.0 + - XzuuhI3Hlk+cHol4v8bq+Q.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 277ms + - 282ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:51 GMT + - Wed, 02 Dec 2020 23:47:55 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:51 GMT + - Wed, 02 Dec 2020 23:47:54 GMT ms-cv: - - Ry9XK/V/cUKPCBSPDZjaFA.0 + - D7nTc9qn2ESonYAn7j3xZg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 204ms + - 207ms status: code: 200 message: OK @@ -132,26 +132,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:52 GMT + - Wed, 02 Dec 2020 23:47:55 GMT ms-cv: - - Z2pEODAcXU62EN1+FJnhMg.0 + - OW+DOIdcc0eudoz5uQ/EAg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 197ms + - 288ms status: code: 207 message: Multi-Status @@ -170,26 +170,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2020-09-21-preview2 response: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:52 GMT + - Wed, 02 Dec 2020 23:47:55 GMT ms-cv: - - vrYs17LtTk20gGb3BgneNw.0 + - 09MM/wSUmE6L0YD7HVwjfg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 98ms + - 293ms status: code: 201 message: Created @@ -203,28 +203,28 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2020-09-21-preview2 response: - body: '{"id": "sanitized", "type": "Text", "priority": "Normal", "version": "1601592533507", - "content": "hello world", "senderDisplayName": "sender name", "createdOn": "2020-10-01T22:48:53Z", + body: '{"id": "sanitized", "type": "Text", "priority": "Normal", "version": "1606952876147", + "content": "hello world", "senderDisplayName": "sender name", "createdOn": "2020-12-02T23:47:56Z", "senderId": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:52 GMT + - Wed, 02 Dec 2020 23:47:55 GMT ms-cv: - - 2HP7uIuMTU2NM1j0+PatjA.0 + - ul+EwLJcrUKGYDVIkJPN6A.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 29ms + - 54ms status: code: 200 message: OK @@ -240,7 +240,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:53 GMT + - Wed, 02 Dec 2020 23:47:57 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -252,15 +252,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:48:53 GMT + - Wed, 02 Dec 2020 23:47:56 GMT ms-cv: - - XtVwvl76U0CsZVtFMcHUow.0 + - mmIpuZUqqkef3QRYHivU0A.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 843ms + - 578ms status: code: 204 message: No Content @@ -276,7 +276,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:54 GMT + - Wed, 02 Dec 2020 23:47:58 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -288,15 +288,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:48:54 GMT + - Wed, 02 Dec 2020 23:47:57 GMT ms-cv: - - JHWAxwFKWkiiWueZDcAHlA.0 + - 8IzCnBcfDkeQ+vu1RA+arQ.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 788ms + - 608ms status: code: 204 message: No Content @@ -312,7 +312,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -320,15 +320,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:48:55 GMT + - Wed, 02 Dec 2020 23:47:57 GMT ms-cv: - - Sr6kvX5BWU+WCyrn7zAvZw.0 + - DeNIfD+tokmIsLmG4d3HaA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 86ms + - 152ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_list_members.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_list_members.yaml index d0216148718c..fe87b4a477cd 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_list_members.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_list_members.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:55 GMT + - Wed, 02 Dec 2020 23:47:59 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:55 GMT + - Wed, 02 Dec 2020 23:47:58 GMT ms-cv: - - /WM+03/OBEGivAagCt124g.0 + - Y5UoRL9iO0GIhw6ZCtbj0g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 199ms + - 214ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:48:56 GMT + - Wed, 02 Dec 2020 23:48:00 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:48:55.9114088+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:47:58.3116926+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:56 GMT + - Wed, 02 Dec 2020 23:47:59 GMT ms-cv: - - fF/+OcyNfEWu2yRoqff6WQ.0 + - lnLR371He0aZRec2CURtYQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 271ms + - 281ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:48:56 GMT + - Wed, 02 Dec 2020 23:48:00 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:56 GMT + - Wed, 02 Dec 2020 23:47:59 GMT ms-cv: - - jboNH6TtsUG9RzjLjuYRaA.0 + - JXGvxSWB4kGSiupxw2aCgg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 198ms + - 216ms status: code: 200 message: OK @@ -132,26 +132,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:48:57 GMT + - Wed, 02 Dec 2020 23:47:59 GMT ms-cv: - - mIFyXC6t5E2ERzXNQHjKxg.0 + - 0rPG3Q2290KFSBu17Xfvgw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 214ms + - 287ms status: code: 207 message: Multi-Status @@ -165,7 +165,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads/sanitized/members?api-version=2020-09-21-preview2 response: @@ -176,15 +176,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:00 GMT + - Wed, 02 Dec 2020 23:48:01 GMT ms-cv: - - kXhlx3uYtESvQF3B1Ad/0A.0 + - hDYkk5Xy/Ump7V+SNuGwaw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 40ms + - 77ms status: code: 200 message: OK @@ -200,7 +200,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:49:00 GMT + - Wed, 02 Dec 2020 23:48:04 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -212,15 +212,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:49:00 GMT + - Wed, 02 Dec 2020 23:48:03 GMT ms-cv: - - UrQ7vZbuR0u42YF9BrY1ew.0 + - wzmG/CyyDUWV4jm4yCGCDA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 777ms + - 885ms status: code: 204 message: No Content @@ -236,7 +236,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:49:01 GMT + - Wed, 02 Dec 2020 23:48:05 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -248,15 +248,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:49:01 GMT + - Wed, 02 Dec 2020 23:48:04 GMT ms-cv: - - WwwkewMoKEmFkiIfwznrWA.0 + - uDYwrjkUWEWzLdEDU1A3YA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 575ms + - 830ms status: code: 204 message: No Content @@ -272,7 +272,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -280,15 +280,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:49:01 GMT + - Wed, 02 Dec 2020 23:48:04 GMT ms-cv: - - XbCbbCpuDk6xpR9XnvHRJg.0 + - O85+vyS3HkyRtfMIJmXDyw.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 51ms + - 113ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_list_messages.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_list_messages.yaml index 1a3e5d54f05a..d26f14361101 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_list_messages.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_list_messages.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:49:02 GMT + - Wed, 02 Dec 2020 23:48:06 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:02 GMT + - Wed, 02 Dec 2020 23:48:04 GMT ms-cv: - - qL7UQ4ygKUmcBaucjPAStw.0 + - nLvuwJyzCEqOmRlRVwPieQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 208ms + - 209ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:49:03 GMT + - Wed, 02 Dec 2020 23:48:06 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:49:02.3817726+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:48:04.9878314+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:02 GMT + - Wed, 02 Dec 2020 23:48:05 GMT ms-cv: - - xndN0tgzDEGPfT10J5Ltkw.0 + - EJmBjwtQCkC5FORYgjvp2Q.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 275ms + - 288ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:49:03 GMT + - Wed, 02 Dec 2020 23:48:07 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:02 GMT + - Wed, 02 Dec 2020 23:48:05 GMT ms-cv: - - g6J6xbDnykSHDssaSX8WuA.0 + - yV4WHAECv0iFswyl9dvHvw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 205ms + - 204ms status: code: 200 message: OK @@ -128,30 +128,30 @@ interactions: Connection: - keep-alive Content-Length: - - '201' + - '200' Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:04 GMT + - Wed, 02 Dec 2020 23:48:06 GMT ms-cv: - - /KEwbshP4kK9aIDSvGLhqw.0 + - yeWjKKKUqEiUzs/q2TaxyQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 270ms + - 295ms status: code: 207 message: Multi-Status @@ -170,26 +170,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2020-09-21-preview2 response: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:04 GMT + - Wed, 02 Dec 2020 23:48:07 GMT ms-cv: - - 8yxddUHAxka8KKrGpiw8OQ.0 + - g+U1IMtfwkmfdkcJ/dLXeQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 73ms + - 135ms status: code: 201 message: Created @@ -203,26 +203,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?maxPageSize=1&api-version=2020-09-21-preview2 response: body: '{"value": "sanitized", "nextLink": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:06 GMT + - Wed, 02 Dec 2020 23:48:09 GMT ms-cv: - - iEHHhD2Nj0K+KjWGc4PzPQ.0 + - 7U27XzEbKkudPC4UTOnGZQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 48ms + - 75ms status: code: 200 message: OK @@ -236,26 +236,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?syncState=sanitized&startTime=1%2F1%2F1970%2012%3A00%3A00%20AM%20%2B00%3A00&maxPageSize=1&api-version=2020-09-21-preview2 response: body: '{"value": "sanitized", "nextLink": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:06 GMT + - Wed, 02 Dec 2020 23:48:09 GMT ms-cv: - - mCx1vcc7xEmiUzPmcjt9gw.0 + - HY0zsn1BukaCd/q94HOnOg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 51ms + - 113ms status: code: 200 message: OK @@ -269,26 +269,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?syncState=sanitized&startTime=1%2F1%2F1970%2012%3A00%3A00%20AM%20%2B00%3A00&maxPageSize=1&api-version=2020-09-21-preview2 response: body: '{"value": "sanitized", "nextLink": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:06 GMT + - Wed, 02 Dec 2020 23:48:09 GMT ms-cv: - - COvNsOwGN0OZVAByhVVEXg.0 + - TDtUAjvK1kSNW2ivKJMnMQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 61ms + - 131ms status: code: 200 message: OK @@ -302,26 +302,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?syncState=sanitized&startTime=1%2F1%2F1970%2012%3A00%3A00%20AM%20%2B00%3A00&maxPageSize=1&api-version=2020-09-21-preview2 response: body: '{"value": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:07 GMT + - Wed, 02 Dec 2020 23:48:10 GMT ms-cv: - - /lkJGiDpN0yVAbE1H9PfWg.0 + - LbLy869FFEaMO5P9v3zGLQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 58ms + - 115ms status: code: 200 message: OK @@ -337,7 +337,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:49:07 GMT + - Wed, 02 Dec 2020 23:48:11 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -349,15 +349,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:49:07 GMT + - Wed, 02 Dec 2020 23:48:11 GMT ms-cv: - - gZNu21k/sEOdZCXTSDz/9Q.0 + - GCpgfk1N6USYYyU0gz1PqA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 832ms + - 1207ms status: code: 204 message: No Content @@ -373,7 +373,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:49:08 GMT + - Wed, 02 Dec 2020 23:48:13 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -385,15 +385,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:49:08 GMT + - Wed, 02 Dec 2020 23:48:12 GMT ms-cv: - - ku8bbLn0n0WR6HKhZguTJw.0 + - nHhfvU1fn0GDB9OdzjYF5g.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 643ms + - 575ms status: code: 204 message: No Content @@ -409,7 +409,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -417,15 +417,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:49:09 GMT + - Wed, 02 Dec 2020 23:48:11 GMT ms-cv: - - de3ZyVjBu0um2HbLJ/f4XA.0 + - T6RB/qatYU26z+k74U9fsw.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 59ms + - 145ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_list_read_receipts.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_list_read_receipts.yaml index 557afc3dc756..d3106a1c6c1a 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_list_read_receipts.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_list_read_receipts.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:49:09 GMT + - Wed, 02 Dec 2020 23:48:14 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:09 GMT + - Wed, 02 Dec 2020 23:48:13 GMT ms-cv: - - QW5+EPDi4kuDBJENEGaeWQ.0 + - UXFUbFpZ3Euhv6Wzs2SuOw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 202ms + - 211ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:49:10 GMT + - Wed, 02 Dec 2020 23:48:14 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:49:09.6442672+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:48:12.725889+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:09 GMT + - Wed, 02 Dec 2020 23:48:13 GMT ms-cv: - - rkd2UN8Tmk2I24ASaFwM3g.0 + - pgJuov9s8ECXEy34ytY0aA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 272ms + - 279ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:49:10 GMT + - Wed, 02 Dec 2020 23:48:15 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:09 GMT + - Wed, 02 Dec 2020 23:48:13 GMT ms-cv: - - nlcIPGPSxEeW1i6uwYRF2Q.0 + - VEZKAlxdbESfJ3Y0AcG68w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 197ms + - 213ms status: code: 200 message: OK @@ -128,30 +128,30 @@ interactions: Connection: - keep-alive Content-Length: - - '200' + - '201' Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:11 GMT + - Wed, 02 Dec 2020 23:48:13 GMT ms-cv: - - bCITJJz1x0ur2lJr6xWOtA.0 + - kTQSGcUDw0iG13E7iuesgw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 189ms + - 173ms status: code: 207 message: Multi-Status @@ -170,26 +170,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2020-09-21-preview2 response: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:11 GMT + - Wed, 02 Dec 2020 23:48:14 GMT ms-cv: - - H0JLEz8XM0+3KGw5Qk/sBA.0 + - M6UhXnur/EWHApSoq9UlAw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 77ms + - 242ms status: code: 201 message: Created @@ -207,7 +207,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/readreceipts?api-version=2020-09-21-preview2 response: @@ -215,17 +215,17 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-length: - '0' date: - - Thu, 01 Oct 2020 22:49:12 GMT + - Wed, 02 Dec 2020 23:48:14 GMT ms-cv: - - JowfBSb2ykysq77Lz+vljw.0 + - 4okukMqotEyFs2DnI3j6xg.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 43ms + - 143ms status: code: 201 message: Created @@ -239,26 +239,26 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads/sanitized/readreceipts?api-version=2020-09-21-preview2 response: body: '{"value": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:14 GMT + - Wed, 02 Dec 2020 23:48:16 GMT ms-cv: - - vus31CqeikaLUeLq6t7W4A.0 + - GLlZDghW0UWaWEVlLLqDLQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 29ms + - 53ms status: code: 200 message: OK @@ -274,7 +274,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:49:14 GMT + - Wed, 02 Dec 2020 23:48:19 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -286,15 +286,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:49:15 GMT + - Wed, 02 Dec 2020 23:48:18 GMT ms-cv: - - UUFuuAVChUqQpCoTk6aC+w.0 + - DIZ569QpIUaOw7qNLl09ow.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 1277ms + - 784ms status: code: 204 message: No Content @@ -310,7 +310,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:49:15 GMT + - Wed, 02 Dec 2020 23:48:19 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -322,15 +322,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:49:16 GMT + - Wed, 02 Dec 2020 23:48:19 GMT ms-cv: - - DSB4fsJ5EkuqRYSCFGtnyg.0 + - TJcqiD+FFEmexjNdwAhT6A.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 601ms + - 753ms status: code: 204 message: No Content @@ -346,7 +346,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -354,15 +354,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:49:16 GMT + - Wed, 02 Dec 2020 23:48:18 GMT ms-cv: - - K5WSAsuL4UOBINl3WiLxDg.0 + - FZsaFCyAQ0CMQT/xeCO0SA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 57ms + - 147ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_remove_member.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_remove_member.yaml index e32792a654d5..7b9aa4691253 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_remove_member.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_remove_member.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:49:51 GMT + - Wed, 02 Dec 2020 23:48:21 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:51 GMT + - Wed, 02 Dec 2020 23:48:19 GMT ms-cv: - - wtj0L1qLI0ubRsESoECgig.0 + - spDYMfwsjUO4sdTPMYpeyQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 215ms + - 207ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:49:51 GMT + - Wed, 02 Dec 2020 23:48:21 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:49:51.1252198+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:48:19.6389726+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:51 GMT + - Wed, 02 Dec 2020 23:48:19 GMT ms-cv: - - 7s7gNyDwFUymnDHa5n8lIQ.0 + - j1A5lKmD6k6yaCxg34IDZw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 280ms + - 277ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:49:52 GMT + - Wed, 02 Dec 2020 23:48:22 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:52 GMT + - Wed, 02 Dec 2020 23:48:20 GMT ms-cv: - - 3VdTCgYO+EOt9u7hM+BV8w.0 + - V6aLhLppc0qL+1XS2+R7nQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 205ms + - 204ms status: code: 200 message: OK @@ -132,26 +132,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:53 GMT + - Wed, 02 Dec 2020 23:48:20 GMT ms-cv: - - wypv63BPe0WfTda+GCYV6g.0 + - 5+vxvCiOzUmV6BQKnGjAmA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 395ms + - 263ms status: code: 207 message: Multi-Status @@ -169,7 +169,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/members?api-version=2020-09-21-preview2 response: @@ -180,15 +180,15 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:52 GMT + - Wed, 02 Dec 2020 23:48:21 GMT ms-cv: - - iNdAaBP3HkS+dacBB0ODfw.0 + - WshetgaAI0OBgqK3zaG4Wg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 137ms + - 314ms status: code: 207 message: Multi-Status @@ -204,9 +204,9 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/members/8%3Aacs%3A21751f5b-bf9e-438b-8c89-2c9e22c44fef_00000005-863d-2c05-e7a1-1c482200042b?api-version=2020-09-21-preview2 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/members/8%3Aacs%3Abff431b2-eb28-43ab-b2fc-546ea8974212_00000006-c5bc-fd20-6216-1f3a0d000075?api-version=2020-09-21-preview2 response: body: string: '' @@ -214,13 +214,13 @@ interactions: api-supported-versions: - 2020-09-21-preview2 date: - - Thu, 01 Oct 2020 22:49:53 GMT + - Wed, 02 Dec 2020 23:48:21 GMT ms-cv: - - GQNkp6M0eUed6/GheNUP6A.0 + - +xeY6MnaXE6VMzBtwZIF7g.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 122ms + - 217ms status: code: 204 message: No Content @@ -236,7 +236,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:49:54 GMT + - Wed, 02 Dec 2020 23:48:23 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -248,15 +248,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:49:55 GMT + - Wed, 02 Dec 2020 23:48:23 GMT ms-cv: - - NSBqXuo+2kWV6eM8FcYB/A.0 + - tftTaQYwSEWjkMG2VPLSDw.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 1115ms + - 1128ms status: code: 204 message: No Content @@ -272,7 +272,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:49:55 GMT + - Wed, 02 Dec 2020 23:48:25 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -284,15 +284,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:49:56 GMT + - Wed, 02 Dec 2020 23:48:23 GMT ms-cv: - - A776UjunjkuOw7VXtWrYOQ.0 + - DFIgvVZXNUWovfQH21M96A.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 972ms + - 642ms status: code: 204 message: No Content @@ -308,7 +308,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -316,15 +316,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:49:56 GMT + - Wed, 02 Dec 2020 23:48:24 GMT ms-cv: - - n4tV8nn3REWQlJR8qCkdAg.0 + - nYZhIL+hcEWO393RuWeyRA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 59ms + - 149ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_send_message.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_send_message.yaml index 0850c9d0fb0c..1522c9610320 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_send_message.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_send_message.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:49:56 GMT + - Wed, 02 Dec 2020 23:48:26 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:56 GMT + - Wed, 02 Dec 2020 23:48:25 GMT ms-cv: - - GMVOn586ckCmNFeWshbP/Q.0 + - AAuokt9JZ06/sHReeOMfqg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 199ms + - 215ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:49:57 GMT + - Wed, 02 Dec 2020 23:48:26 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:49:56.8632234+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:48:24.8997922+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:57 GMT + - Wed, 02 Dec 2020 23:48:25 GMT ms-cv: - - tnBunc2ZEUeO+78I0/wm5g.0 + - fjzCYbpw3UC08N3mjmThhw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 273ms + - 287ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:49:57 GMT + - Wed, 02 Dec 2020 23:48:27 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:57 GMT + - Wed, 02 Dec 2020 23:48:25 GMT ms-cv: - - UauaJy88IkKtPRfrgEtheg.0 + - +vSgDSIZtE20p1mJUy45Yg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 201ms + - 212ms status: code: 200 message: OK @@ -132,26 +132,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:58 GMT + - Wed, 02 Dec 2020 23:48:26 GMT ms-cv: - - Y5gJZriTyE6uKIhoAuE6eA.0 + - RbB/1owxZUujMTqzyiuzMQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 373ms + - 236ms status: code: 207 message: Multi-Status @@ -170,26 +170,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2020-09-21-preview2 response: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:49:58 GMT + - Wed, 02 Dec 2020 23:48:27 GMT ms-cv: - - 4rvkImjvUEyFLHmTbgKacQ.0 + - bCiIeO4wR02mtYYjyTl2xA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 67ms + - 122ms status: code: 201 message: Created @@ -205,7 +205,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:49:59 GMT + - Wed, 02 Dec 2020 23:48:28 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -217,15 +217,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:49:59 GMT + - Wed, 02 Dec 2020 23:48:28 GMT ms-cv: - - uShxY/ox1Ui1ZK71kxCQgQ.0 + - lPbfRbdo7UGWENSpTBBjvg.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 662ms + - 1708ms status: code: 204 message: No Content @@ -241,7 +241,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:00 GMT + - Wed, 02 Dec 2020 23:48:30 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -253,15 +253,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:00 GMT + - Wed, 02 Dec 2020 23:48:29 GMT ms-cv: - - mQ/pQO5ay06GTJOmk/vunQ.0 + - igDoQ4EQxkm1Bk5Oyp2DwA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 459ms + - 551ms status: code: 204 message: No Content @@ -277,7 +277,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -285,15 +285,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:50:00 GMT + - Wed, 02 Dec 2020 23:48:29 GMT ms-cv: - - k9EuA5eQeUm3U+MBFAFqNw.0 + - 5y9uh7SEakCypOrjfVL/JQ.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 70ms + - 215ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_send_read_receipt.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_send_read_receipt.yaml index 8ce715454af3..2f98fdbbacc2 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_send_read_receipt.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_send_read_receipt.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:01 GMT + - Wed, 02 Dec 2020 23:48:31 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:01 GMT + - Wed, 02 Dec 2020 23:48:30 GMT ms-cv: - - 2NL+sWgV00eHrxyL1QonUw.0 + - q2ZoI9UyXUCh2YVS1DtFmQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 205ms + - 221ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:50:02 GMT + - Wed, 02 Dec 2020 23:48:32 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:50:01.3598198+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:48:30.3534309+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:02 GMT + - Wed, 02 Dec 2020 23:48:31 GMT ms-cv: - - V70jxqqZ80aqpUvTvj6+1g.0 + - RifIfbEX8kuCWKzWt+IFgQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 276ms + - 291ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:02 GMT + - Wed, 02 Dec 2020 23:48:32 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:02 GMT + - Wed, 02 Dec 2020 23:48:31 GMT ms-cv: - - wMGSEqIS1ke1TUc/T1DE/w.0 + - Oj/tnHcRhku6DocRa4L+XA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 204ms + - 218ms status: code: 200 message: OK @@ -132,26 +132,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:02 GMT + - Wed, 02 Dec 2020 23:48:31 GMT ms-cv: - - o/EBnanYV0qRliUZvt/mWw.0 + - MZ9d4amrJ0Wa/g4uWZUWQg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 297ms + - 217ms status: code: 207 message: Multi-Status @@ -170,26 +170,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2020-09-21-preview2 response: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:03 GMT + - Wed, 02 Dec 2020 23:48:32 GMT ms-cv: - - 5vGw1XBHc06aZsmcRTkmYg.0 + - VoTkSnRdmkC2VEHujr+jYA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 65ms + - 133ms status: code: 201 message: Created @@ -207,7 +207,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/readreceipts?api-version=2020-09-21-preview2 response: @@ -215,17 +215,17 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-length: - '0' date: - - Thu, 01 Oct 2020 22:50:04 GMT + - Wed, 02 Dec 2020 23:48:32 GMT ms-cv: - - y+4Q3revMkSksBXJjWFe7w.0 + - mT4t4G9eh0qEBCe/j4NIsg.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 42ms + - 153ms status: code: 201 message: Created @@ -241,7 +241,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:04 GMT + - Wed, 02 Dec 2020 23:48:34 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -253,15 +253,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:04 GMT + - Wed, 02 Dec 2020 23:48:34 GMT ms-cv: - - cGFxifVgfk+eS1Ku04w2dQ.0 + - JsDFx89AZUCwuwcH1j5rGA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 705ms + - 1568ms status: code: 204 message: No Content @@ -277,7 +277,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:05 GMT + - Wed, 02 Dec 2020 23:48:36 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -289,15 +289,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:05 GMT + - Wed, 02 Dec 2020 23:48:35 GMT ms-cv: - - USWh214NHkmms6sECX7qmg.0 + - PwTmpDMNfkSe6V5nvle0/Q.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 640ms + - 871ms status: code: 204 message: No Content @@ -313,7 +313,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -321,15 +321,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:50:05 GMT + - Wed, 02 Dec 2020 23:48:35 GMT ms-cv: - - PwYvezTmckK0e0xqC8SilA.0 + - /mD4HYJ2mEKYOdaEunkGIg.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 53ms + - 140ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_send_typing_notification.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_send_typing_notification.yaml index 459c8140623f..44bc880fce17 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_send_typing_notification.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_send_typing_notification.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:06 GMT + - Wed, 02 Dec 2020 23:48:37 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:06 GMT + - Wed, 02 Dec 2020 23:48:36 GMT ms-cv: - - VmM8wDvzrkiHIHNE0XbzaQ.0 + - PsrtaVmqd0qzBl4SZpw12Q.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 200ms + - 217ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:50:06 GMT + - Wed, 02 Dec 2020 23:48:38 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:50:06.0334401+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:48:36.0084687+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:06 GMT + - Wed, 02 Dec 2020 23:48:36 GMT ms-cv: - - s8+qa7zvMUC/6Gy6a2lFqA.0 + - H7EUkVVamUiZnu8ebaxG5w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 275ms + - 282ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:07 GMT + - Wed, 02 Dec 2020 23:48:38 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:07 GMT + - Wed, 02 Dec 2020 23:48:36 GMT ms-cv: - - 506Tzg4W+EmIdZKp4AP6MA.0 + - kBimdgSPL0KtIu4zpDh+Tw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 207ms + - 216ms status: code: 200 message: OK @@ -132,26 +132,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:07 GMT + - Wed, 02 Dec 2020 23:48:37 GMT ms-cv: - - Evz/tIUBqEOOn9c4Gnz6bg.0 + - C3VAO2ifHUCuKqnlnTv5Og.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 225ms + - 285ms status: code: 207 message: Multi-Status @@ -167,7 +167,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/typing?api-version=2020-09-21-preview2 response: @@ -175,17 +175,17 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-length: - '0' date: - - Thu, 01 Oct 2020 22:50:08 GMT + - Wed, 02 Dec 2020 23:48:38 GMT ms-cv: - - zs31jIqMLEaOPdZMlRbQyQ.0 + - 4gH9HXNHg0qFCUrbPHeFmw.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 65ms + - 84ms status: code: 200 message: OK @@ -201,7 +201,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:08 GMT + - Wed, 02 Dec 2020 23:48:39 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -213,15 +213,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:09 GMT + - Wed, 02 Dec 2020 23:48:39 GMT ms-cv: - - E20ATDs6Uk6wKtSoNHNfug.0 + - b1sER/4MtEKJGAKhPjs4iQ.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 742ms + - 1005ms status: code: 204 message: No Content @@ -237,7 +237,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:09 GMT + - Wed, 02 Dec 2020 23:48:41 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -249,15 +249,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:09 GMT + - Wed, 02 Dec 2020 23:48:39 GMT ms-cv: - - KbIsxuu9LUOUo7o1uQLZ7g.0 + - BXR1SfVSkEqcEcBCwnHA+Q.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 620ms + - 612ms status: code: 204 message: No Content @@ -273,7 +273,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -281,15 +281,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:50:10 GMT + - Wed, 02 Dec 2020 23:48:40 GMT ms-cv: - - 2GTWx80uIkqOBcAVkCc0gg.0 + - ojOXeX3c7EqwanSn/7Wvcw.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 59ms + - 146ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_update_message.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_update_message.yaml index 6698f9ec29df..7061988e2ce2 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_update_message.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_update_message.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:10 GMT + - Wed, 02 Dec 2020 23:48:42 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:10 GMT + - Wed, 02 Dec 2020 23:48:41 GMT ms-cv: - - HNojnIgb10WFDBGUh75Bbw.0 + - FH4gaqMP5EyoOMXx8y9yGg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 206ms + - 221ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:50:10 GMT + - Wed, 02 Dec 2020 23:48:42 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:50:10.3383697+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:48:40.8988867+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:11 GMT + - Wed, 02 Dec 2020 23:48:41 GMT ms-cv: - - /UT11m+/R06gfuTSBS5iqg.0 + - AHtcUw/WVEq3XSx3W9uNjw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 277ms + - 309ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:11 GMT + - Wed, 02 Dec 2020 23:48:43 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:11 GMT + - Wed, 02 Dec 2020 23:48:42 GMT ms-cv: - - hggVevMOQ0CPKSL12BbMvw.0 + - fllaL37CkU2F/KDAbi8+iA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 204ms + - 206ms status: code: 200 message: OK @@ -128,30 +128,30 @@ interactions: Connection: - keep-alive Content-Length: - - '199' + - '201' Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:12 GMT + - Wed, 02 Dec 2020 23:48:42 GMT ms-cv: - - XuEqBLJ60Ea3CTknvIE97A.0 + - omxReFSmZEycvq7M/fXJUg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 454ms + - 264ms status: code: 207 message: Multi-Status @@ -170,26 +170,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2020-09-21-preview2 response: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:12 GMT + - Wed, 02 Dec 2020 23:48:43 GMT ms-cv: - - IWzlGZPNaEmsvsfwnu98pA.0 + - BFBjsE51lUWds9d72Rgtbg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 75ms + - 225ms status: code: 201 message: Created @@ -207,7 +207,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2020-09-21-preview2 response: @@ -215,17 +215,17 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-length: - '0' date: - - Thu, 01 Oct 2020 22:50:13 GMT + - Wed, 02 Dec 2020 23:48:43 GMT ms-cv: - - zN6AHjwvR0mgNBn1L6kDaQ.0 + - VSaPfNc1EkC5vZAEoh2ZnQ.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 94ms + - 228ms status: code: 200 message: OK @@ -241,7 +241,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:13 GMT + - Wed, 02 Dec 2020 23:48:45 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -253,15 +253,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:13 GMT + - Wed, 02 Dec 2020 23:48:45 GMT ms-cv: - - kHFbkRZRH0ukIPa6WdDurA.0 + - luNIoqjUskKI7/Lpbw798A.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 676ms + - 1584ms status: code: 204 message: No Content @@ -277,7 +277,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:14 GMT + - Wed, 02 Dec 2020 23:48:46 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -289,15 +289,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:14 GMT + - Wed, 02 Dec 2020 23:48:46 GMT ms-cv: - - mDz38y4RQUGGEXWo2yCH/w.0 + - uIKAA0zsA0OgdKGMwxsE5w.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 544ms + - 750ms status: code: 204 message: No Content @@ -313,7 +313,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -321,15 +321,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:50:14 GMT + - Wed, 02 Dec 2020 23:48:45 GMT ms-cv: - - EsOpCrfm6kePCxpuNH7UIQ.0 + - 9gtdU5Wp3UW8iYVOgre2bg.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 86ms + - 142ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_update_thread.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_update_thread.yaml index d79f20aeeca3..43239d9fd301 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_update_thread.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e.test_update_thread.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:15 GMT + - Wed, 02 Dec 2020 23:48:48 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:15 GMT + - Wed, 02 Dec 2020 23:48:46 GMT ms-cv: - - wtOsqax8cUqpMcCHwKZr4w.0 + - su+m1WI4P0WlrGJpBdxsdg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 251ms + - 218ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:50:15 GMT + - Wed, 02 Dec 2020 23:48:48 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:50:15.1680728+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:48:46.7725564+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:16 GMT + - Wed, 02 Dec 2020 23:48:47 GMT ms-cv: - - msos0u0nOEOejfbmKptQzQ.0 + - URPvbY9/uECdD5gk1SqkTA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 272ms + - 282ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:16 GMT + - Wed, 02 Dec 2020 23:48:49 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:16 GMT + - Wed, 02 Dec 2020 23:48:47 GMT ms-cv: - - i3JKq8Mk+0WnQe7XlLsaiQ.0 + - dOGKnynaWUuB+xgPoKZ/aw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 205ms + - 208ms status: code: 200 message: OK @@ -132,26 +132,26 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:17 GMT + - Wed, 02 Dec 2020 23:48:48 GMT ms-cv: - - yvYLq5VefkSnSJCV1UbnzA.0 + - dNgVjrtKDU+XnBUBWR+SHA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 210ms + - 246ms status: code: 207 message: Multi-Status @@ -169,7 +169,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -177,17 +177,17 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 content-length: - '0' date: - - Thu, 01 Oct 2020 22:50:17 GMT + - Wed, 02 Dec 2020 23:48:48 GMT ms-cv: - - plqRXgDHDE2N2Crvzo3KtQ.0 + - hyHxXebUrkq/adTumpHVNg.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 85ms + - 180ms status: code: 200 message: OK @@ -203,7 +203,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:17 GMT + - Wed, 02 Dec 2020 23:48:50 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -215,15 +215,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:18 GMT + - Wed, 02 Dec 2020 23:48:49 GMT ms-cv: - - AnN9eJ/eMEuyxb+ssB8nWQ.0 + - Rb5dzuoyd0KiAEJrIuHb0A.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 815ms + - 749ms status: code: 204 message: No Content @@ -239,7 +239,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:18 GMT + - Wed, 02 Dec 2020 23:48:51 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -251,15 +251,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:18 GMT + - Wed, 02 Dec 2020 23:48:50 GMT ms-cv: - - YJkKWBNPgE2tDsJ5WEAG7A.0 + - 88xSAcW6M0q3koagujHCIw.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 418ms + - 833ms status: code: 204 message: No Content @@ -275,7 +275,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: @@ -283,15 +283,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-09-21-preview2 + - 2020-09-21-preview2, 2020-11-01-preview3 date: - - Thu, 01 Oct 2020 22:50:19 GMT + - Wed, 02 Dec 2020 23:48:50 GMT ms-cv: - - DQI7mHCIEkC4zdGmfs6cFg.0 + - lb5SRHzHA0GXXfKfd4FrPA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 73ms + - 106ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_add_members.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_add_members.yaml index 5fe8108f723a..1e9cb598fe81 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_add_members.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_add_members.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:19 GMT + - Wed, 02 Dec 2020 23:48:52 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:20 GMT + - Wed, 02 Dec 2020 23:48:51 GMT ms-cv: - - +sCo4bL+e0yznHlGysON+g.0 + - DGyh2QZkTEecIiy6fCd+SA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 201ms + - 203ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:50:20 GMT + - Wed, 02 Dec 2020 23:48:53 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:50:19.5149341+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:48:51.335101+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:20 GMT + - Wed, 02 Dec 2020 23:48:51 GMT ms-cv: - - h6KY29Bsvk2wAGFRAW+rpA.0 + - cUHF5dYRiESJ2mxcxSXbxQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 272ms + - 273ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:20 GMT + - Wed, 02 Dec 2020 23:48:53 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:20 GMT + - Wed, 02 Dec 2020 23:48:52 GMT ms-cv: - - 3cgEcvG2LU2dd/ARYaB/hw.0 + - xSQMCtbdkEGljLq/7BlyNw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 203ms + - 204ms status: code: 200 message: OK @@ -128,19 +128,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:21 GMT - ms-cv: z7fRQoHNUEyyXnyuLPQRMA.0 + date: Wed, 02 Dec 2020 23:48:52 GMT + ms-cv: Zf/4RBRJu0+mnojcETIvVQ.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 239ms + x-processing-time: 288ms status: code: 207 message: Multi-Status @@ -155,7 +155,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/members?api-version=2020-09-21-preview2 response: @@ -163,11 +163,11 @@ interactions: headers: api-supported-versions: 2020-09-21-preview2 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:21 GMT - ms-cv: R9JCA7J+uUeNM0clusTLKg.0 + date: Wed, 02 Dec 2020 23:48:53 GMT + ms-cv: 2lBlEV3u802/LqonRXOccA.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 170ms + x-processing-time: 190ms status: code: 207 message: Multi-Status @@ -178,18 +178,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:50:21 GMT - ms-cv: DHluKnyfk0GSCKJvgQqbbw.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:48:53 GMT + ms-cv: Dbakzfk6b0ulL/9T4PMCYg.0 strict-transport-security: max-age=2592000 - x-processing-time: 87ms + x-processing-time: 157ms status: code: 204 message: No Content @@ -206,7 +206,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:22 GMT + - Wed, 02 Dec 2020 23:48:55 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -218,15 +218,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:22 GMT + - Wed, 02 Dec 2020 23:48:55 GMT ms-cv: - - D79qP6fddkm3QXrVj4ppSg.0 + - YHrQENAPTk+Ri0os7sylAQ.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 868ms + - 1280ms status: code: 204 message: No Content @@ -242,7 +242,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:23 GMT + - Wed, 02 Dec 2020 23:48:56 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -254,15 +254,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:23 GMT + - Wed, 02 Dec 2020 23:48:55 GMT ms-cv: - - H7K2xp1qakC/7E0kBlrRNA.0 + - xFdFXEvyoEOIkTgHgE/Ojg.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 465ms + - 606ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_delete_message.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_delete_message.yaml index fb116bc6eb77..f68e34af7d18 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_delete_message.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_delete_message.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:23 GMT + - Wed, 02 Dec 2020 23:48:57 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:23 GMT + - Wed, 02 Dec 2020 23:48:57 GMT ms-cv: - - v3TMDj1D0Um09fxCXw+1Sw.0 + - wdQV/lSBw0uN0UgYNlTfDg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 205ms + - 219ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:50:24 GMT + - Wed, 02 Dec 2020 23:48:58 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:50:23.7114719+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:48:56.5214356+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:24 GMT + - Wed, 02 Dec 2020 23:48:57 GMT ms-cv: - - KnAreO90k0iyjLoJNS6ISQ.0 + - UqFVyAX9YEixkIKP3J7UBQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 280ms + - 278ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:24 GMT + - Wed, 02 Dec 2020 23:48:58 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:24 GMT + - Wed, 02 Dec 2020 23:48:57 GMT ms-cv: - - Ej2eNO22FEuni3lZ6uY1gg.0 + - mToUTQdVHUec9wq5UD6DbQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 203ms + - 214ms status: code: 200 message: OK @@ -128,19 +128,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:25 GMT - ms-cv: 9atEWqszcUmYGFTT6JtHgw.0 + date: Wed, 02 Dec 2020 23:48:57 GMT + ms-cv: Pl79ryteckyD7/eIWyoc4g.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 223ms + x-processing-time: 181ms status: code: 207 message: Multi-Status @@ -156,19 +156,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2020-09-21-preview2 response: body: '{"id": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:25 GMT - ms-cv: L7LSiiDNpUe3+4Ldq3sYmw.0 + date: Wed, 02 Dec 2020 23:48:58 GMT + ms-cv: wwXa64V02ESSzUp0S2fHXg.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 63ms + x-processing-time: 96ms status: code: 201 message: Created @@ -179,18 +179,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:50:25 GMT - ms-cv: AbkyGCr+YECMVhiQHwb+sA.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:48:58 GMT + ms-cv: UMYGLPAwMk29gF0ekSoXmw.0 strict-transport-security: max-age=2592000 - x-processing-time: 79ms + x-processing-time: 134ms status: code: 204 message: No Content @@ -201,18 +201,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:50:25 GMT - ms-cv: wR1vYfm950edBonlVmLdVg.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:48:58 GMT + ms-cv: rN4TAfZQX0ShISKaQdPZJg.0 strict-transport-security: max-age=2592000 - x-processing-time: 55ms + x-processing-time: 90ms status: code: 204 message: No Content @@ -229,7 +229,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:26 GMT + - Wed, 02 Dec 2020 23:49:00 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -241,15 +241,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:27 GMT + - Wed, 02 Dec 2020 23:48:59 GMT ms-cv: - - JrjN4h+WPk+/fZBncoYzGw.0 + - mxwbB5MM90GtEIYxR8f26w.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 1302ms + - 862ms status: code: 204 message: No Content @@ -265,7 +265,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:27 GMT + - Wed, 02 Dec 2020 23:49:01 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -277,15 +277,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:27 GMT + - Wed, 02 Dec 2020 23:49:00 GMT ms-cv: - - T6XAfdJ0H0eRzvlp3+xixQ.0 + - Ze172zvq1EyndD3zTMN/CQ.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 446ms + - 714ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_get_message.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_get_message.yaml index 41b752c586f2..485ec7eb93fa 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_get_message.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_get_message.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:28 GMT + - Wed, 02 Dec 2020 23:49:02 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:28 GMT + - Wed, 02 Dec 2020 23:49:00 GMT ms-cv: - - 9+nA7UhyOU6jee3+JvpISw.0 + - zu48Wl0Kfk6OUBVpQ08CvA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 202ms + - 210ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:50:28 GMT + - Wed, 02 Dec 2020 23:49:03 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:50:28.3048923+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:49:01.0174082+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:28 GMT + - Wed, 02 Dec 2020 23:49:01 GMT ms-cv: - - uh9E2zGsXE+DgklDWrDxFA.0 + - oQpARCnnGE2oAIgjfIAYvw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 273ms + - 285ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:29 GMT + - Wed, 02 Dec 2020 23:49:03 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:28 GMT + - Wed, 02 Dec 2020 23:49:01 GMT ms-cv: - - /FcSAxa8NkSxwwBoYT4kKw.0 + - oanTIy+GDEysCij3YYokYg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 199ms + - 209ms status: code: 200 message: OK @@ -128,19 +128,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:29 GMT - ms-cv: tqdNTCJBMkOxGAfLMEdk3g.0 + date: Wed, 02 Dec 2020 23:49:02 GMT + ms-cv: QfNhINTJhU6JNCcUnefpkg.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 190ms + x-processing-time: 177ms status: code: 207 message: Multi-Status @@ -156,19 +156,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2020-09-21-preview2 response: body: '{"id": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:30 GMT - ms-cv: SbS5W6lgNUebZZB7rBQ5HQ.0 + date: Wed, 02 Dec 2020 23:49:02 GMT + ms-cv: x8RIG2jXd0+gIx3YBG9Jyw.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 70ms + x-processing-time: 90ms status: code: 201 message: Created @@ -179,21 +179,21 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2020-09-21-preview2 response: - body: '{"id": "sanitized", "type": "Text", "priority": "Normal", "version": "1601592630391", - "content": "hello world", "senderDisplayName": "sender name", "createdOn": "2020-10-01T22:50:30Z", + body: '{"id": "sanitized", "type": "Text", "priority": "Normal", "version": "1606952943205", + "content": "hello world", "senderDisplayName": "sender name", "createdOn": "2020-12-02T23:49:03Z", "senderId": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:30 GMT - ms-cv: 4VlZeh9HkUaid3lVErpD1g.0 + date: Wed, 02 Dec 2020 23:49:03 GMT + ms-cv: LTdlLLaAzE68H1ZoWZR4ow.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 32ms + x-processing-time: 61ms status: code: 200 message: OK @@ -204,18 +204,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:50:30 GMT - ms-cv: EGm8pZ5rE0COvgq+PqOQYQ.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:49:03 GMT + ms-cv: 0uuyBLyiL0ScdJb6dbO1Cw.0 strict-transport-security: max-age=2592000 - x-processing-time: 54ms + x-processing-time: 94ms status: code: 204 message: No Content @@ -232,7 +232,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:30 GMT + - Wed, 02 Dec 2020 23:49:05 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -244,15 +244,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:30 GMT + - Wed, 02 Dec 2020 23:49:04 GMT ms-cv: - - QnU6Q7f2wUizMuUlvagulA.0 + - TvIBxZGLb0CR+b34JWDftQ.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 746ms + - 1055ms status: code: 204 message: No Content @@ -268,7 +268,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:31 GMT + - Wed, 02 Dec 2020 23:49:06 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -280,15 +280,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:31 GMT + - Wed, 02 Dec 2020 23:49:04 GMT ms-cv: - - obgUaNfQ30WqUEogYLlnLA.0 + - fmDKuR5sKU6a8I4amar+bg.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 534ms + - 428ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_list_members.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_list_members.yaml index dab4cf69288f..f1e426bf4bba 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_list_members.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_list_members.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:32 GMT + - Wed, 02 Dec 2020 23:49:06 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:31 GMT + - Wed, 02 Dec 2020 23:49:05 GMT ms-cv: - - 5MAtUhp4SkKGYEkNr9BNzQ.0 + - dVJTiFunz0692b+BLd/Txw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 199ms + - 203ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:50:32 GMT + - Wed, 02 Dec 2020 23:49:07 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:50:32.2869348+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:49:05.6239622+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:32 GMT + - Wed, 02 Dec 2020 23:49:06 GMT ms-cv: - - x+Wc8x6cREWBbZaKi4sSuA.0 + - 9KVao4PELUam5sxXOx6LGg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 271ms + - 305ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:33 GMT + - Wed, 02 Dec 2020 23:49:08 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:32 GMT + - Wed, 02 Dec 2020 23:49:06 GMT ms-cv: - - 3gkFV/gDQ0CQz1UWpBCdUA.0 + - C97FAAqlF0q7RZ7ZosGqsg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 199ms + - 205ms status: code: 200 message: OK @@ -128,19 +128,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:33 GMT - ms-cv: JX/HxLpTlkSDtrqM+gFjlg.0 + date: Wed, 02 Dec 2020 23:49:07 GMT + ms-cv: VlihoaHP3kifjaK72OVIdA.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 208ms + x-processing-time: 238ms status: code: 207 message: Multi-Status @@ -151,7 +151,7 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads/sanitized/members?api-version=2020-09-21-preview2 response: @@ -159,11 +159,11 @@ interactions: headers: api-supported-versions: 2020-09-21-preview2 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:34 GMT - ms-cv: 85SN3njzmUaEfTfuOTabQw.0 + date: Wed, 02 Dec 2020 23:49:07 GMT + ms-cv: gXnnGT3kfE+HqOImEXpFTw.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 38ms + x-processing-time: 78ms status: code: 200 message: OK @@ -174,18 +174,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:50:33 GMT - ms-cv: BY0Ru0cNPkqgs+panrkq4g.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:49:07 GMT + ms-cv: 6nEC/Dqce0Ku7IWhVpzyiA.0 strict-transport-security: max-age=2592000 - x-processing-time: 51ms + x-processing-time: 87ms status: code: 204 message: No Content @@ -202,7 +202,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:34 GMT + - Wed, 02 Dec 2020 23:49:09 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -214,15 +214,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:34 GMT + - Wed, 02 Dec 2020 23:49:09 GMT ms-cv: - - a6L+1PNxPkKnNG0rpAi6ig.0 + - q7JNwnBvmkaTjy8XQON7Tg.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 886ms + - 1338ms status: code: 204 message: No Content @@ -238,7 +238,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:35 GMT + - Wed, 02 Dec 2020 23:49:10 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -250,15 +250,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:35 GMT + - Wed, 02 Dec 2020 23:49:09 GMT ms-cv: - - vztdIokaIEKT2I9QiAa8KQ.0 + - jL2BVAVOeUq+me1QwUP64Q.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 598ms + - 453ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_list_messages.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_list_messages.yaml index a6727328e6ac..198baa7162ac 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_list_messages.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_list_messages.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:36 GMT + - Wed, 02 Dec 2020 23:49:11 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:36 GMT + - Wed, 02 Dec 2020 23:49:10 GMT ms-cv: - - sUl1Xag2w0i2dvBDVcHatg.0 + - 7ME8TRAENEKehSjODr/QGw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 199ms + - 206ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:50:37 GMT + - Wed, 02 Dec 2020 23:49:12 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,16 +60,16 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:50:36.4024084+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:49:09.9850684+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:36 GMT + - Wed, 02 Dec 2020 23:49:10 GMT ms-cv: - - 4Da0dlsQxkWXhTkkXcr1Rg.0 + - c2hgPqShoEWiVOtOQZQB/w.0 strict-transport-security: - max-age=2592000 transfer-encoding: @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:37 GMT + - Wed, 02 Dec 2020 23:49:12 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:37 GMT + - Wed, 02 Dec 2020 23:49:10 GMT ms-cv: - - a2rfvZ9VoU6x3DtJ3j7SbQ.0 + - tK3bl6NioU+tADWtID9wGQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 200ms + - 203ms status: code: 200 message: OK @@ -124,23 +124,23 @@ interactions: Accept: - application/json Content-Length: - - '200' + - '201' Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:37 GMT - ms-cv: yEgkVNGOc0WLOsr8CEnn+A.0 + date: Wed, 02 Dec 2020 23:49:10 GMT + ms-cv: enzEf1fxJk+/FJoX29owmg.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 210ms + x-processing-time: 193ms status: code: 207 message: Multi-Status @@ -156,19 +156,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2020-09-21-preview2 response: body: '{"id": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:38 GMT - ms-cv: tIDnrWUM6kCtvhgn+50A1A.0 + date: Wed, 02 Dec 2020 23:49:11 GMT + ms-cv: 1RBSMXu6yUW2PSmfjUfQwg.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 93ms + x-processing-time: 102ms status: code: 201 message: Created @@ -179,19 +179,19 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?maxPageSize=1&api-version=2020-09-21-preview2 response: body: '{"value": "sanitized", "nextLink": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:40 GMT - ms-cv: kDUMkfOW+02xZQod07iqfg.0 + date: Wed, 02 Dec 2020 23:49:13 GMT + ms-cv: UelsWb9O9kaGCPs6VdkwwQ.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 48ms + x-processing-time: 76ms status: code: 200 message: OK @@ -202,19 +202,19 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?syncState=sanitized&startTime=1/1/1970%2012:00:00%20AM%20%2B00:00&maxPageSize=1&api-version=2020-09-21-preview2 response: body: '{"value": "sanitized", "nextLink": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:40 GMT - ms-cv: zlhRW1IIS0SyEG5ZDRycpg.0 + date: Wed, 02 Dec 2020 23:49:13 GMT + ms-cv: YWRvY/whUUSNVufFPREvkA.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 49ms + x-processing-time: 112ms status: code: 200 message: OK @@ -225,19 +225,19 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?syncState=sanitized&startTime=1/1/1970%2012:00:00%20AM%20%2B00:00&maxPageSize=1&api-version=2020-09-21-preview2 response: body: '{"value": "sanitized", "nextLink": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:40 GMT - ms-cv: Zw3ivc0Wx0OzUXIVGslbLQ.0 + date: Wed, 02 Dec 2020 23:49:13 GMT + ms-cv: gVVFATwqW0Srp9eIHJnPHQ.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 74ms + x-processing-time: 117ms status: code: 200 message: OK @@ -248,19 +248,19 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?syncState=sanitized&startTime=1/1/1970%2012:00:00%20AM%20%2B00:00&maxPageSize=1&api-version=2020-09-21-preview2 response: body: '{"value": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:40 GMT - ms-cv: qxpFNRaMVkiwuo1BYXKtJg.0 + date: Wed, 02 Dec 2020 23:49:14 GMT + ms-cv: zig9f/IrUEqkjIy1G7eq7A.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 45ms + x-processing-time: 166ms status: code: 200 message: OK @@ -271,18 +271,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:50:40 GMT - ms-cv: Umh5IyKJJUSy7YzMENCMHw.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:49:14 GMT + ms-cv: 2DvNW/CRRUe2Rp7NUGSx/Q.0 strict-transport-security: max-age=2592000 - x-processing-time: 55ms + x-processing-time: 93ms status: code: 204 message: No Content @@ -299,7 +299,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:41 GMT + - Wed, 02 Dec 2020 23:49:16 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -311,15 +311,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:41 GMT + - Wed, 02 Dec 2020 23:49:16 GMT ms-cv: - - ey6USD06DkK0IW5u5fZ9aQ.0 + - LaLObeySHUKZBW7N1cbvUQ.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 1079ms + - 1276ms status: code: 204 message: No Content @@ -335,7 +335,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:42 GMT + - Wed, 02 Dec 2020 23:49:18 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -347,15 +347,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:42 GMT + - Wed, 02 Dec 2020 23:49:17 GMT ms-cv: - - F0C0g25g4UaxRnEOPr8BiQ.0 + - KYTPvOKohkWYyAMC1ZQUqA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 618ms + - 622ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_list_read_receipts.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_list_read_receipts.yaml index b76d815d29bc..3b62ea31575f 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_list_read_receipts.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_list_read_receipts.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:43 GMT + - Wed, 02 Dec 2020 23:49:18 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:43 GMT + - Wed, 02 Dec 2020 23:49:17 GMT ms-cv: - - sK70q2MIOkuK0myYXjF9AA.0 + - MFA0fCdWf0WD1s2GiIF6OQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 221ms + - 211ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:50:44 GMT + - Wed, 02 Dec 2020 23:49:19 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:50:43.5874705+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:49:17.5284907+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:44 GMT + - Wed, 02 Dec 2020 23:49:18 GMT ms-cv: - - 7bxlSS6VHUCmsEKKnxfoWQ.0 + - KfBFTejYlk+ojRPfQYeMjg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 272ms + - 285ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:44 GMT + - Wed, 02 Dec 2020 23:49:19 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:44 GMT + - Wed, 02 Dec 2020 23:49:18 GMT ms-cv: - - hnuooiF+t0yhxv2v8juecg.0 + - Baa/47Q1fkybaZbIw/uq0g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 206ms + - 209ms status: code: 200 message: OK @@ -128,19 +128,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:44 GMT - ms-cv: kjbqUF/LwUGvbNBLq/c++Q.0 + date: Wed, 02 Dec 2020 23:49:18 GMT + ms-cv: o8cJpVWVw0CBJgqRFYClIQ.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 179ms + x-processing-time: 234ms status: code: 207 message: Multi-Status @@ -156,19 +156,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2020-09-21-preview2 response: body: '{"id": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:45 GMT - ms-cv: 50IEwp4usU+sAuc6QP91aw.0 + date: Wed, 02 Dec 2020 23:49:19 GMT + ms-cv: 8bmNykKMgES/bLDPsFSGlA.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 126ms + x-processing-time: 101ms status: code: 201 message: Created @@ -183,19 +183,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/readreceipts?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-length: '0' - date: Thu, 01 Oct 2020 22:50:45 GMT - ms-cv: dy+/I60mUEKplYLDd8fGxQ.0 + date: Wed, 02 Dec 2020 23:49:19 GMT + ms-cv: YaU2bQAQ2UC+/VO58sZFtg.0 strict-transport-security: max-age=2592000 - x-processing-time: 86ms + x-processing-time: 102ms status: code: 201 message: Created @@ -206,19 +206,19 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads/sanitized/readreceipts?api-version=2020-09-21-preview2 response: body: '{"value": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:47 GMT - ms-cv: nlnT6e2Zb06ZZLaNAzMItw.0 + date: Wed, 02 Dec 2020 23:49:22 GMT + ms-cv: qh3bQCWQaEunxY5Ph3rHPg.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 28ms + x-processing-time: 59ms status: code: 200 message: OK @@ -229,18 +229,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:50:47 GMT - ms-cv: fUAVNq3/Uk2YQqmL0A8Hqw.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:49:21 GMT + ms-cv: FjJ4Aqd2Z0+IQAxk9RRYNQ.0 strict-transport-security: max-age=2592000 - x-processing-time: 60ms + x-processing-time: 90ms status: code: 204 message: No Content @@ -257,7 +257,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:48 GMT + - Wed, 02 Dec 2020 23:49:23 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -269,15 +269,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:48 GMT + - Wed, 02 Dec 2020 23:49:22 GMT ms-cv: - - VY930vaGDkGaA+pTNNewtg.0 + - efHJEr2PCE63FYv7O+VO0Q.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 700ms + - 607ms status: code: 204 message: No Content @@ -293,7 +293,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:49 GMT + - Wed, 02 Dec 2020 23:49:24 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -305,15 +305,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:49 GMT + - Wed, 02 Dec 2020 23:49:23 GMT ms-cv: - - Lu58EmAspkuixCust3zBcw.0 + - 9B5p6RxxZ0WoMuifWIhtlw.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 572ms + - 730ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_remove_member.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_remove_member.yaml index 3455f7738f8a..1447c3a49e9f 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_remove_member.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_remove_member.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:49 GMT + - Wed, 02 Dec 2020 23:49:25 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:49 GMT + - Wed, 02 Dec 2020 23:49:24 GMT ms-cv: - - Uf2ypQ0EJEuo95BNd0YVqQ.0 + - YJYvHDmC/0ezgby3lU1lrA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 200ms + - 206ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:50:50 GMT + - Wed, 02 Dec 2020 23:49:26 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:50:49.9248137+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:49:24.0593806+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:50 GMT + - Wed, 02 Dec 2020 23:49:24 GMT ms-cv: - - aVEfRUL0EEK6gIhZvVTqxQ.0 + - aqtNIBpOdkGG6qI1t5yU/g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 276ms + - 277ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:50 GMT + - Wed, 02 Dec 2020 23:49:26 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:50 GMT + - Wed, 02 Dec 2020 23:49:24 GMT ms-cv: - - h+BucVnGXUOqt7yNPOpKSg.0 + - DXiJDIIgtE60EPy4ufTHMg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 214ms + - 206ms status: code: 200 message: OK @@ -128,19 +128,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:51 GMT - ms-cv: panw3qDq9Ey572uR8pbE2Q.0 + date: Wed, 02 Dec 2020 23:49:25 GMT + ms-cv: qPl7MlCK4k+eo1In/Q0OOA.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 253ms + x-processing-time: 170ms status: code: 207 message: Multi-Status @@ -155,7 +155,7 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/members?api-version=2020-09-21-preview2 response: @@ -163,11 +163,11 @@ interactions: headers: api-supported-versions: 2020-09-21-preview2 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:52 GMT - ms-cv: VRJJuTA7cEOGjOVF+bIO+g.0 + date: Wed, 02 Dec 2020 23:49:25 GMT + ms-cv: /UlkNEp38kuTIe5bU+TEuQ.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 1003ms + x-processing-time: 229ms status: code: 207 message: Multi-Status @@ -178,40 +178,40 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE - uri: https://sanitized.communication.azure.com/chat/threads/sanitized/members/8:acs:21751f5b-bf9e-438b-8c89-2c9e22c44fef_00000005-863e-11bc-92fd-8b3a0d00108e?api-version=2020-09-21-preview2 + uri: https://sanitized.communication.azure.com/chat/threads/sanitized/members/8:acs:bff431b2-eb28-43ab-b2fc-546ea8974212_00000006-c5bd-f8ce-b218-1f3a0d000056?api-version=2020-09-21-preview2 response: body: string: '' headers: api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:50:52 GMT - ms-cv: DPiRUvSLYUuEaKtpcJtaQg.0 + date: Wed, 02 Dec 2020 23:49:26 GMT + ms-cv: wBSuuGS4lke2LNHqYn9z3w.0 strict-transport-security: max-age=2592000 - x-processing-time: 116ms + x-processing-time: 176ms status: code: 204 message: No Content - url: https://sanitized.communication.azure.com/chat/threads/sanitized/members/8:acs:21751f5b-bf9e-438b-8c89-2c9e22c44fef_00000005-863e-11bc-92fd-8b3a0d00108e?api-version=2020-09-21-preview2 + url: https://sanitized.communication.azure.com/chat/threads/sanitized/members/8:acs:bff431b2-eb28-43ab-b2fc-546ea8974212_00000006-c5bd-f8ce-b218-1f3a0d000056?api-version=2020-09-21-preview2 - request: body: null headers: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:50:52 GMT - ms-cv: xsxP/Mvlvk+C5rQt+i5oFA.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:49:26 GMT + ms-cv: dxTC8kYye0GT8etpOLQhiQ.0 strict-transport-security: max-age=2592000 - x-processing-time: 64ms + x-processing-time: 78ms status: code: 204 message: No Content @@ -228,7 +228,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:53 GMT + - Wed, 02 Dec 2020 23:49:28 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -240,15 +240,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:53 GMT + - Wed, 02 Dec 2020 23:49:27 GMT ms-cv: - - ymBDSbQnxU2YGg3zsCNShw.0 + - 25aKS3oJ+Uu0r6xsb8Lp1w.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 1174ms + - 1191ms status: code: 204 message: No Content @@ -264,7 +264,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:54 GMT + - Wed, 02 Dec 2020 23:49:29 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -276,15 +276,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:50:54 GMT + - Wed, 02 Dec 2020 23:49:28 GMT ms-cv: - - Sx5YTNU400ifL/Zixh1QQQ.0 + - LTfyQMs/ak+powoP2o1rqw.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 613ms + - 766ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_send_message.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_send_message.yaml index ba0bb7555791..eb7f861297b2 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_send_message.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_send_message.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:55 GMT + - Wed, 02 Dec 2020 23:49:30 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:55 GMT + - Wed, 02 Dec 2020 23:49:29 GMT ms-cv: - - BPU+aUX95EqVZq9b5rRO3A.0 + - +8PaTSWVY06U2QBrO6FkCg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 201ms + - 268ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:50:56 GMT + - Wed, 02 Dec 2020 23:49:31 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:50:55.574861+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:49:29.121514+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:55 GMT + - Wed, 02 Dec 2020 23:49:29 GMT ms-cv: - - KGcpoXRr4kKEUbO+D5RrKw.0 + - fBXm7ljQskS+Q2IUa1Secg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 275ms + - 295ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:56 GMT + - Wed, 02 Dec 2020 23:49:31 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:50:56 GMT + - Wed, 02 Dec 2020 23:49:30 GMT ms-cv: - - Wp5CiTkhy0628lYMUTVWdw.0 + - WynRQVRPt0ec0bBm8M87jA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 202ms + - 220ms status: code: 200 message: OK @@ -128,19 +128,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:56 GMT - ms-cv: QHQ/qlMCcUSVnmEix9IJSg.0 + date: Wed, 02 Dec 2020 23:49:30 GMT + ms-cv: bZFdHSIFBEK8vnf8e3xUtA.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 345ms + x-processing-time: 152ms status: code: 207 message: Multi-Status @@ -156,19 +156,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2020-09-21-preview2 response: body: '{"id": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:50:57 GMT - ms-cv: clo0gTjlq0uwVqd6REttLA.0 + date: Wed, 02 Dec 2020 23:49:30 GMT + ms-cv: Cn+CKyy59UWPGNXmKkvxsA.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 74ms + x-processing-time: 93ms status: code: 201 message: Created @@ -179,18 +179,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:50:57 GMT - ms-cv: OePjRSymykab17YmuIsetg.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:49:31 GMT + ms-cv: e2ldsvxP2kaoVBv+YyBU4Q.0 strict-transport-security: max-age=2592000 - x-processing-time: 86ms + x-processing-time: 88ms status: code: 204 message: No Content @@ -207,7 +207,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:50:58 GMT + - Wed, 02 Dec 2020 23:49:32 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -219,15 +219,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:51:14 GMT + - Wed, 02 Dec 2020 23:49:32 GMT ms-cv: - - bVaIOF97Pk2iAwF1mB+big.0 + - 4D6dsqY9XE2tDXSwPCkyCQ.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 17275ms + - 1008ms status: code: 204 message: No Content @@ -243,7 +243,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:51:15 GMT + - Wed, 02 Dec 2020 23:49:33 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -255,15 +255,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:51:15 GMT + - Wed, 02 Dec 2020 23:49:32 GMT ms-cv: - - tqBzXy5eT0SkrG95kdsj4Q.0 + - DK38g/F6nEyTEKhvBQeaMg.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 644ms + - 535ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_send_read_receipt.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_send_read_receipt.yaml index f46a4c9be467..fb8c7f976b5d 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_send_read_receipt.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_send_read_receipt.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:51:16 GMT + - Wed, 02 Dec 2020 23:49:34 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:51:16 GMT + - Wed, 02 Dec 2020 23:49:33 GMT ms-cv: - - Ke6DbY2bVEaAq6l4OLVKHQ.0 + - EqUHOOM990aKfceOp0+UNw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 203ms + - 210ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:51:17 GMT + - Wed, 02 Dec 2020 23:49:35 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:51:16.3859242+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:49:33.3418379+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:51:16 GMT + - Wed, 02 Dec 2020 23:49:34 GMT ms-cv: - - HXK2gd4CQUOAIM3uKaStFA.0 + - C3qV6vRLPkyZE0CzgYYOsA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 273ms + - 277ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:51:17 GMT + - Wed, 02 Dec 2020 23:49:35 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:51:17 GMT + - Wed, 02 Dec 2020 23:49:34 GMT ms-cv: - - XgDJb/JLb0GqTR9z0IqelA.0 + - g6S/+1jL5kuxzttgUMn3/w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 200ms + - 204ms status: code: 200 message: OK @@ -124,23 +124,23 @@ interactions: Accept: - application/json Content-Length: - - '201' + - '200' Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:51:17 GMT - ms-cv: iMt9jIEoUEa5+CQ68n9DOg.0 + date: Wed, 02 Dec 2020 23:49:34 GMT + ms-cv: +aMkagNeI0uz+22koAwIlQ.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 193ms + x-processing-time: 184ms status: code: 207 message: Multi-Status @@ -156,19 +156,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2020-09-21-preview2 response: body: '{"id": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:51:17 GMT - ms-cv: X+TmPzJJwEm7Cxlx0RfkIg.0 + date: Wed, 02 Dec 2020 23:49:35 GMT + ms-cv: As/Nx6uGm0ieq9pJB9UCYQ.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 84ms + x-processing-time: 101ms status: code: 201 message: Created @@ -183,19 +183,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/readreceipts?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-length: '0' - date: Thu, 01 Oct 2020 22:51:18 GMT - ms-cv: faVVDHL/cUmEfeooJfGQcw.0 + date: Wed, 02 Dec 2020 23:49:35 GMT + ms-cv: O1vfleRhn06HhPQxFA4BVw.0 strict-transport-security: max-age=2592000 - x-processing-time: 54ms + x-processing-time: 132ms status: code: 201 message: Created @@ -206,18 +206,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:51:18 GMT - ms-cv: KWu4qZGGmUi2BUxz/Uqdqw.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:49:35 GMT + ms-cv: k/Z5h7zVaEKh02fSxpziuA.0 strict-transport-security: max-age=2592000 - x-processing-time: 53ms + x-processing-time: 84ms status: code: 204 message: No Content @@ -234,7 +234,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:51:18 GMT + - Wed, 02 Dec 2020 23:49:37 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -246,15 +246,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:51:19 GMT + - Wed, 02 Dec 2020 23:49:36 GMT ms-cv: - - PYEcRHnJ4E6s/V2uso/ZMg.0 + - Hx6vyiNcNU+Cvg6fQrfH7Q.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 1049ms + - 717ms status: code: 204 message: No Content @@ -270,7 +270,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:51:20 GMT + - Wed, 02 Dec 2020 23:49:38 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -282,15 +282,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:51:20 GMT + - Wed, 02 Dec 2020 23:49:37 GMT ms-cv: - - VntmqAP1e0+hwOOS8wqGEw.0 + - MahryC6U5EiPJBP/sKQZzw.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 630ms + - 545ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_send_typing_notification.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_send_typing_notification.yaml index 46c53ffa5ae0..2d49bce69a03 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_send_typing_notification.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_send_typing_notification.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:51:20 GMT + - Wed, 02 Dec 2020 23:49:39 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:51:21 GMT + - Wed, 02 Dec 2020 23:49:38 GMT ms-cv: - - YGTxha89b0W6sHk4lkjKEw.0 + - 7Jt2dt5lX0uFPkqrKMCPGQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 204ms + - 207ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:51:21 GMT + - Wed, 02 Dec 2020 23:49:39 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:51:20.86266+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:49:37.7069043+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:51:21 GMT + - Wed, 02 Dec 2020 23:49:38 GMT ms-cv: - - 4aTyTPALbEi9B2mX6szSog.0 + - b07vxOLR7021fMgzSIYZgQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 276ms + - 279ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:51:21 GMT + - Wed, 02 Dec 2020 23:49:40 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,13 +102,13 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:51:21 GMT + - Wed, 02 Dec 2020 23:49:38 GMT ms-cv: - - /dcOSL70NEClgAkb9NRQRg.0 + - Rklj6F97LU2alkqFPs8RCw.0 strict-transport-security: - max-age=2592000 transfer-encoding: @@ -128,19 +128,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:51:22 GMT - ms-cv: gaxAU4lfYEyR6JoWSiB5JA.0 + date: Wed, 02 Dec 2020 23:49:38 GMT + ms-cv: nHnPDZ9zske5zVqEeo1Rwg.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 207ms + x-processing-time: 171ms status: code: 207 message: Multi-Status @@ -151,19 +151,19 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/typing?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-length: '0' - date: Thu, 01 Oct 2020 22:51:22 GMT - ms-cv: Y46F01o3XkS8ukixmGrLow.0 + date: Wed, 02 Dec 2020 23:49:38 GMT + ms-cv: g2ibz0Lg70qp85EMy6B76g.0 strict-transport-security: max-age=2592000 - x-processing-time: 57ms + x-processing-time: 83ms status: code: 200 message: OK @@ -174,18 +174,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:51:23 GMT - ms-cv: FeGxBYYFyUq7eN+Lfi/SaA.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:49:39 GMT + ms-cv: T3jidqAjOkOL9Ni1PTjgXQ.0 strict-transport-security: max-age=2592000 - x-processing-time: 65ms + x-processing-time: 79ms status: code: 204 message: No Content @@ -202,7 +202,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:51:23 GMT + - Wed, 02 Dec 2020 23:49:41 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -214,15 +214,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:51:23 GMT + - Wed, 02 Dec 2020 23:49:40 GMT ms-cv: - - FguqR21IfkeKSKg2IYfQ2A.0 + - sljkjsu7PEyQDqQfm6CNkQ.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 942ms + - 717ms status: code: 204 message: No Content @@ -238,7 +238,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:51:24 GMT + - Wed, 02 Dec 2020 23:49:42 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -250,15 +250,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:51:24 GMT + - Wed, 02 Dec 2020 23:49:41 GMT ms-cv: - - Zr+lF+jy5UWB2G2WEN9inQ.0 + - k0P4W17ddEe7ENijf1dIkg.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 676ms + - 703ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_update_message.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_update_message.yaml index edd9c26e40d6..d81271abf4c1 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_update_message.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_update_message.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:51:25 GMT + - Wed, 02 Dec 2020 23:49:43 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:51:25 GMT + - Wed, 02 Dec 2020 23:49:41 GMT ms-cv: - - wsVH465ioE+/x9hYGbnqaQ.0 + - N73rrWjhBkGSrNEbCrP6dg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 205ms + - 209ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:51:25 GMT + - Wed, 02 Dec 2020 23:49:43 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:51:25.3203233+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:49:41.6235498+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:51:26 GMT + - Wed, 02 Dec 2020 23:49:41 GMT ms-cv: - - YGii/fRmXkyxh5CfS9n1Lw.0 + - f07EHbw410O2qeMWD4ROjg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 282ms + - 287ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:51:26 GMT + - Wed, 02 Dec 2020 23:49:44 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:51:26 GMT + - Wed, 02 Dec 2020 23:49:42 GMT ms-cv: - - /h67hiZTaU27ashWwFMRew.0 + - A+AAztbiYkuydc+P4qGkBQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 207ms + - 208ms status: code: 200 message: OK @@ -128,19 +128,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:51:26 GMT - ms-cv: Yy2rEZCNdUKVVrfmcMbN0Q.0 + date: Wed, 02 Dec 2020 23:49:42 GMT + ms-cv: 5loZ2TqpTEm0pLkv/dqqwg.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 223ms + x-processing-time: 181ms status: code: 207 message: Multi-Status @@ -156,19 +156,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2020-09-21-preview2 response: body: '{"id": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:51:27 GMT - ms-cv: 9Fz/Icff9kmG58hFOlCvTQ.0 + date: Wed, 02 Dec 2020 23:49:42 GMT + ms-cv: chFV9Sahr0Wlk83TRzePYA.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 67ms + x-processing-time: 129ms status: code: 201 message: Created @@ -183,19 +183,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-length: '0' - date: Thu, 01 Oct 2020 22:51:27 GMT - ms-cv: 1r626ex0o0G2tiGOuTQZtA.0 + date: Wed, 02 Dec 2020 23:49:43 GMT + ms-cv: NBx6Y45IU0uLuc8c8lOR0Q.0 strict-transport-security: max-age=2592000 - x-processing-time: 124ms + x-processing-time: 150ms status: code: 200 message: OK @@ -206,18 +206,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:51:27 GMT - ms-cv: 0F+uuYwMKEeC2CDZ1yHkfw.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:49:43 GMT + ms-cv: HKK87HnDKkKZg0QNYkB9Ow.0 strict-transport-security: max-age=2592000 - x-processing-time: 60ms + x-processing-time: 83ms status: code: 204 message: No Content @@ -234,7 +234,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:51:27 GMT + - Wed, 02 Dec 2020 23:49:45 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -246,15 +246,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:51:28 GMT + - Wed, 02 Dec 2020 23:49:44 GMT ms-cv: - - a1BlSagxrUarQn4FpMHXXw.0 + - o+7XSgI0a0W7uiRuXA2eQw.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 739ms + - 977ms status: code: 204 message: No Content @@ -270,7 +270,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:51:28 GMT + - Wed, 02 Dec 2020 23:49:46 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -282,15 +282,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:51:29 GMT + - Wed, 02 Dec 2020 23:49:45 GMT ms-cv: - - RbcELvRydkSRY4FFsemzAw.0 + - nNACx7udx0moIlSNnZSOrA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 867ms + - 819ms status: code: 204 message: No Content diff --git a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_update_thread.yaml b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_update_thread.yaml index 0f6157ffbf0c..4d8e704304c7 100644 --- a/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_update_thread.yaml +++ b/sdk/communication/azure-communication-chat/tests/recordings/test_chat_thread_client_e2e_async.test_update_thread.yaml @@ -11,7 +11,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:51:29 GMT + - Wed, 02 Dec 2020 23:49:47 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -22,19 +22,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:51:29 GMT + - Wed, 02 Dec 2020 23:49:45 GMT ms-cv: - - I9v4qfHJFECJF6Zo/2QjiQ.0 + - 8xHstEATe0u2NMjbbQFUWA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 206ms + - 209ms status: code: 200 message: OK @@ -52,7 +52,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 01 Oct 2020 22:51:30 GMT + - Wed, 02 Dec 2020 23:49:48 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -60,22 +60,22 @@ interactions: method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/token?api-version=2020-07-20-preview2 response: - body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-10-02T22:51:29.7719267+00:00"}' + body: '{"id": "sanitized", "token": "sanitized", "expiresOn": "2020-12-03T23:49:46.2484051+00:00"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:51:30 GMT + - Wed, 02 Dec 2020 23:49:46 GMT ms-cv: - - 82L7H6dq10eIhUhZ62dJQA.0 + - bvSRt+yDMkiJBZV1mJh8gw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 274ms + - 280ms status: code: 200 message: OK @@ -91,7 +91,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:51:30 GMT + - Wed, 02 Dec 2020 23:49:48 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -102,19 +102,19 @@ interactions: body: '{"id": "sanitized"}' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 content-type: - application/json; charset=utf-8 date: - - Thu, 01 Oct 2020 22:51:30 GMT + - Wed, 02 Dec 2020 23:49:46 GMT ms-cv: - - svh8epLELEamJxGZxe2Eew.0 + - MRLd0dW4bEWGhsjNOuHckA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-processing-time: - - 197ms + - 217ms status: code: 200 message: OK @@ -128,19 +128,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2020-09-21-preview2 response: body: '{"multipleStatus": "sanitized"}' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-type: application/json; charset=utf-8 - date: Thu, 01 Oct 2020 22:51:31 GMT - ms-cv: C4KDex8oI0+DxrVOvOMV9g.0 + date: Wed, 02 Dec 2020 23:49:48 GMT + ms-cv: sHP0NEWiCk2EuLmqTDLrVg.0 strict-transport-security: max-age=2592000 transfer-encoding: chunked - x-processing-time: 291ms + x-processing-time: 298ms status: code: 207 message: Multi-Status @@ -155,19 +155,19 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: PATCH uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 content-length: '0' - date: Thu, 01 Oct 2020 22:51:31 GMT - ms-cv: VzdIcCUsVE2yFTQ9bSk8AA.0 + date: Wed, 02 Dec 2020 23:49:48 GMT + ms-cv: xVessK5Ku0CvRvFKJbet9A.0 strict-transport-security: max-age=2592000 - x-processing-time: 94ms + x-processing-time: 125ms status: code: 200 message: OK @@ -178,18 +178,18 @@ interactions: Accept: - application/json User-Agent: - - azsdk-python-communication-chat/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) + - azsdk-python-communication-chat/1.0.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2020-09-21-preview2 response: body: string: '' headers: - api-supported-versions: 2020-09-21-preview2 - date: Thu, 01 Oct 2020 22:51:31 GMT - ms-cv: 3ycJrMDnY0++gZ2cRv8DBw.0 + api-supported-versions: 2020-09-21-preview2, 2020-11-01-preview3 + date: Wed, 02 Dec 2020 23:49:48 GMT + ms-cv: WeW3H3EXfE+9IZ4YC1R4RQ.0 strict-transport-security: max-age=2592000 - x-processing-time: 120ms + x-processing-time: 92ms status: code: 204 message: No Content @@ -206,7 +206,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:51:32 GMT + - Wed, 02 Dec 2020 23:49:50 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -218,15 +218,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:51:32 GMT + - Wed, 02 Dec 2020 23:49:49 GMT ms-cv: - - ZV5CQMXyX0CHVbgMxKGuew.0 + - ouhuP4aj10mQwOYMLMgzvg.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 612ms + - 1154ms status: code: 204 message: No Content @@ -242,7 +242,7 @@ interactions: Content-Length: - '0' Date: - - Thu, 01 Oct 2020 22:51:33 GMT + - Wed, 02 Dec 2020 23:49:51 GMT User-Agent: - azsdk-python-communication-administration/1.0.0b1 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-return-client-request-id: @@ -254,15 +254,15 @@ interactions: string: '' headers: api-supported-versions: - - 2020-07-20-preview1, 2020-07-20-preview2 + - 2020-01-15-preview3, 2020-07-20-preview1, 2020-07-20-preview2 date: - - Thu, 01 Oct 2020 22:51:33 GMT + - Wed, 02 Dec 2020 23:49:50 GMT ms-cv: - - 20DYo6u2zUi5AGmUiOPCAA.0 + - 9rXgr09dO0eQx9y1JIM/wA.0 strict-transport-security: - max-age=2592000 x-processing-time: - - 698ms + - 871ms status: code: 204 message: No Content