diff --git a/src/communication/HISTORY.rst b/src/communication/HISTORY.rst index e3c89e15e18..34b8965b27e 100644 --- a/src/communication/HISTORY.rst +++ b/src/communication/HISTORY.rst @@ -3,6 +3,11 @@ Release History =============== +1.3.0 +++++++ + * Add AzureCli to the user-agent header + + 1.2.2 ++++++ * Fix a bug in chat 'message delete command' diff --git a/src/communication/azext_communication/generated/_client_factory.py b/src/communication/azext_communication/generated/_client_factory.py index 98dce81dedb..9522662b9e2 100644 --- a/src/communication/azext_communication/generated/_client_factory.py +++ b/src/communication/azext_communication/generated/_client_factory.py @@ -12,8 +12,13 @@ def cf_communication_cl(cli_ctx, *_): from azure.cli.core.commands.client_factory import get_mgmt_service_client from azext_communication.vendored_sdks.communication import CommunicationServiceManagementClient + from ..version import cli_application_id + + args = {'user_agent': cli_application_id()} + return get_mgmt_service_client(cli_ctx, - CommunicationServiceManagementClient) + CommunicationServiceManagementClient, + **args) def cf_communication_service(cli_ctx, *_): diff --git a/src/communication/azext_communication/manual/_client_factory.py b/src/communication/azext_communication/manual/_client_factory.py index 8ec5d5806f7..df5fef0a3c8 100644 --- a/src/communication/azext_communication/manual/_client_factory.py +++ b/src/communication/azext_communication/manual/_client_factory.py @@ -3,10 +3,10 @@ # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- - # pylint: disable=unused-argument from azure.cli.core.azclierror import RequiredArgumentMissingError +from ..version import cli_application_id def cf_communication_identity(cli_ctx, kwargs): @@ -17,7 +17,9 @@ def cf_communication_identity(cli_ctx, kwargs): error_msg = 'Please specify --connection-string, or set AZURE_COMMUNICATION_CONNECTION_STRING.' raise RequiredArgumentMissingError(error_msg) - client = CommunicationIdentityClient.from_connection_string(connection_string) + args = {'user_agent': cli_application_id()} + client = CommunicationIdentityClient.from_connection_string(connection_string, **args) + return client @@ -29,7 +31,9 @@ def cf_communication_sms(cli_ctx, kwargs): error_msg = 'Please specify --connection-string, or set AZURE_COMMUNICATION_CONNECTION_STRING.' raise RequiredArgumentMissingError(error_msg) - client = SmsClient.from_connection_string(connection_string) + args = {'user_agent': cli_application_id()} + client = SmsClient.from_connection_string(connection_string, **args) + return client @@ -41,7 +45,9 @@ def cf_communication_phonenumbers(cli_ctx, kwargs): error_msg = 'Please specify --connection-string, or set AZURE_COMMUNICATION_CONNECTION_STRING.' raise RequiredArgumentMissingError(error_msg) - client = PhoneNumbersClient.from_connection_string(connection_string) + args = {'user_agent': cli_application_id()} + client = PhoneNumbersClient.from_connection_string(connection_string, **args) + return client @@ -56,5 +62,7 @@ def cf_communication_chat(cli_ctx, kwargs): if token is None: raise RequiredArgumentMissingError('Please specify --access-token or set AZURE_COMMUNICATION_ACCESS_TOKEN.') - client = ChatClient(endpoint, CommunicationTokenCredential(token)) + args = {'user_agent': cli_application_id()} + client = ChatClient(endpoint, CommunicationTokenCredential(token), **args) + return client diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_add_participant.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_add_participant.yaml index d6a2f1326dc..069568ecbd1 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_add_participant.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_add_participant.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:50:00 GMT + - Wed, 21 Sep 2022 22:41:14 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:50:02.4106148+00:00"}}' + "expiresOn": "2022-09-22T22:41:15.8297447+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:50:02 GMT + - Wed, 21 Sep 2022 22:41:15 GMT ms-cv: - - LsIStMJYHEarY2XXM8Rscw.0 + - Uk4cxbwlTE69xVxfBQIbhA.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095002Z-ue5bcnvs3t2n5ee38b8kwchyq400000000dg00000000hm2r + - 0C5MrYwAAAAB5NO/e2SjMQq0C5SQDzl7zWVZSMzExMDAwMTE2MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 118ms + - 127ms status: code: 201 message: Created @@ -67,11 +65,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:50:01 GMT + - Wed, 21 Sep 2022 22:41:14 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -79,31 +77,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:50:02.9481547+00:00"}}' + "expiresOn": "2022-09-22T22:41:16.5064586+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:50:03 GMT + - Wed, 21 Sep 2022 22:41:15 GMT ms-cv: - - ZDXwchTQ0kuzz5DHfSUcvA.0 + - 3YY1wBloMES23Ftf/HinNw.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095002Z-p18hf8s3dx4xf8cgexx53pe93400000000dg000000006ehu + - 0DJMrYwAAAADU0T+WXw9LT5KZzeebgMdVWVZSMzExMDAwMTE2MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 126ms + - 122ms status: code: 201 message: Created @@ -121,15 +117,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - ce6eaa92-b047-49b7-a5e9-0a708cf21f5f + - 9f33df8b-7bbe-497b-910b-661dfd3de1ad method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "chat-topic", "createdOn": - "2022-08-16T09:50:03Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:41:16Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: @@ -137,27 +133,27 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:50:03 GMT + - Wed, 21 Sep 2022 22:41:16 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3Asu9i_s8IXogihisX1C3q1cvIcYcJj-4d4MLhzNbVGus1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AE6Jfa050emgshaPagc283M92Dz85balT8-OlCgy0KQ81@thread.v2 ms-cv: - - k0FPjPB5rEqLYBZ40jT4hQ.0 + - yC29GuxeS0uOIKbHVVm8fw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0S2j7YgAAAACOfhbXaANLToG2Dzi575PeWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0DJMrYwAAAADFr9cqWOqPSLtimBnCGDLeWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 736ms + - 525ms status: code: 201 message: Created - request: - body: '{"participants": [{"communicationIdentifier": {"communicationUser": {"id": - "8:acs:21fe0420-a046-426d-b99b-c089229ea1be_00000013-45f1-08bf-eef0-8b3a0d0003fe"}}}]}' + body: '{"participants": [{"communicationIdentifier": {"rawId": "8:acs:7746014f-86bf-4850-8c90-b19f3788206d_00000014-0218-0cd5-570c-113a0d0097b9", + "communicationUser": {"id": "8:acs:7746014f-86bf-4850-8c90-b19f3788206d_00000014-0218-0cd5-570c-113a0d0097b9"}}}]}' headers: Accept: - application/json @@ -166,7 +162,7 @@ interactions: Connection: - keep-alive Content-Length: - - '161' + - '253' Content-Type: - application/json User-Agent: @@ -182,19 +178,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:50:04 GMT + - Wed, 21 Sep 2022 22:41:17 GMT ms-cv: - - rJBLJ9il20+PZ/mOkRPtbg.0 + - SgECEBudb0exB6g4g0MEEQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0TGj7YgAAAABrI6O5f3jZSbgEDTx0OAuRWVZSMzBFREdFMDMxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= + - 0DZMrYwAAAADQo2Gy6zZ9RoQdpPOQJM8pWVZSMzExMDAwMTE2MDA5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 259ms + - 357ms status: code: 201 message: Created diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_add_participant_bad_user.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_add_participant_bad_user.yaml index 0e934fa81c8..fd6ecfa3dd0 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_add_participant_bad_user.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_add_participant_bad_user.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:49:59 GMT + - Wed, 21 Sep 2022 22:41:14 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:50:01.7960868+00:00"}}' + "expiresOn": "2022-09-22T22:41:16.271187+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - - '122' + - '121' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:50:01 GMT + - Wed, 21 Sep 2022 22:41:16 GMT ms-cv: - - NFWG7AE5QU6Ft4Dpgrp08A.0 + - 3l9foS2TfEm0slkiDV7nIg.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095001Z-ue5bcnvs3t2n5ee38b8kwchyq400000000dg000000009xg7 + - 0C5MrYwAAAADu5DeSq0t3Qo54O0DFIfVtWVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 120ms + - 323ms status: code: 201 message: Created @@ -67,45 +65,43 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - 3e8e8614-9b47-4033-8c52-8585877e2504 + - 40ff2fa7-ae5f-4680-a916-ed8129c5a9f9 method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "chat-topic", "createdOn": - "2022-08-16T09:50:02Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:41:17Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:50:02 GMT + - Wed, 21 Sep 2022 22:41:17 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AljMjuiP-Rqo10MByM7aOuQQ5nu2K3KuQuSfZegxgfkQ1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AFE6nk20fADD4kKJxpahpWcOpe6LSKt_umVSk8LBdhig1@thread.v2 ms-cv: - - 6YlBDJLdpUCYvjwlPGctLg.0 + - 9ImhfyOxCEusgeSxJwvxYg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095002Z-p18hf8s3dx4xf8cgexx53pe93400000000dg000000004v6e + - 0DJMrYwAAAAD+x+OIIv+xTJYifdXrkwObWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 649ms + - 814ms status: code: 201 message: Created - request: - body: '{"participants": [{"communicationIdentifier": {"communicationUser": {"id": - "8:acs:00000000-1111-2222-3333-444444444444_55555555-6666-7777-8888-999999999999"}}}]}' + body: '{"participants": [{"communicationIdentifier": {"rawId": "8:acs:00000000-1111-2222-3333-444444444444_55555555-6666-7777-8888-999999999999", + "communicationUser": {"id": "8:acs:00000000-1111-2222-3333-444444444444_55555555-6666-7777-8888-999999999999"}}}]}' headers: Accept: - application/json @@ -114,7 +110,7 @@ interactions: Connection: - keep-alive Content-Length: - - '161' + - '253' Content-Type: - application/json User-Agent: @@ -131,25 +127,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:50:02 GMT + - Wed, 21 Sep 2022 22:41:17 GMT ms-cv: - - bE+G+thWwEewZJ/G2XBK+w.0 + - sFU2KB/Rv02CMPLp4REhDA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0S2j7YgAAAAA860Xr7NzwSaWgnSaX78ZCWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0DZMrYwAAAABWIv8yRpY0Tpd2ipRsIgpzWVZSMzExMDAwMTE1MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 187ms + - 235ms status: code: 201 message: Created - request: - body: '{"participants": [{"communicationIdentifier": {"communicationUser": {"id": - "8:acs:fakeid==="}}}]}' + body: '{"participants": [{"communicationIdentifier": {"rawId": "8:acs:fakeid===", + "communicationUser": {"id": "8:acs:fakeid==="}}}]}' headers: Accept: - application/json @@ -158,7 +154,7 @@ interactions: Connection: - keep-alive Content-Length: - - '97' + - '125' Content-Type: - application/json User-Agent: @@ -175,19 +171,19 @@ interactions: content-type: - application/json date: - - Tue, 16 Aug 2022 09:50:04 GMT + - Wed, 21 Sep 2022 22:41:17 GMT ms-cv: - - zCWTru5f1EukHH1ZGiCyOg.0 + - xEJ5YOVPek2nf8onY+pCig.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0TGj7YgAAAADeYbo/B6rxRK2DKtYIx0ktWVZSMzExMDAwMTE2MDMxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0DpMrYwAAAADHUxuwHAs2RaZtwF/uDDVGWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 22ms + - 54ms status: code: 400 message: Bad Request diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_add_participant_with_display_name.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_add_participant_with_display_name.yaml index 4187d4ce250..5cabf3237c0 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_add_participant_with_display_name.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_add_participant_with_display_name.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:50:00 GMT + - Wed, 21 Sep 2022 22:41:15 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:50:02.5804306+00:00"}}' + "expiresOn": "2022-09-22T22:41:16.9518919+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:50:02 GMT + - Wed, 21 Sep 2022 22:41:16 GMT ms-cv: - - 5IR1txpU9UmZdcRxtA7tvw.0 + - qvVeOakvTUm342Uqi19lsQ.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095002Z-z5w8hfkph50p97tr7b7ay90rp000000000bg00000001wf7s + - 0DJMrYwAAAACAbeeK8MEJSpRu20glWVYLWVZSMzExMDAwMTE2MDMxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 134ms + - 123ms status: code: 201 message: Created @@ -67,39 +65,37 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - 142afa66-5a01-4e85-b194-5fc6c2f8ca67 + - 7efead32-6ea8-40ee-9bb3-8ef509cf1152 method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "chat-topic", "createdOn": - "2022-08-16T09:50:03Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:41:17Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:50:03 GMT + - Wed, 21 Sep 2022 22:41:17 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AceEGtwObpyj_D4rcZ5Z_gOgOaeaSshwWpfh9sMVRaVY1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AHQbzvV2EF0nmvcd1C7szUUJs_QZyypWQjsz4ZHio3ds1@thread.v2 ms-cv: - - Gyx1qcpWLkuM2H8FWWLjeA.0 + - CpwmqHYakECspZMPWHePcQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095003Z-6b2s4uq0rt4yf0aehsw4te2apc00000000dg00000000sb90 + - 0DZMrYwAAAAA7Qd5ngO0bQJekJFb0PyUPWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 609ms + - 633ms status: code: 201 message: Created @@ -117,11 +113,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:50:02 GMT + - Wed, 21 Sep 2022 22:41:16 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -129,7 +125,7 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:50:04.4487002+00:00"}}' + "expiresOn": "2022-09-22T22:41:18.4908447+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, @@ -139,25 +135,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:50:03 GMT + - Wed, 21 Sep 2022 22:41:18 GMT ms-cv: - - /G4MEVIsYUuUHQrV3s2Txg.0 + - cbxx6jw3pE6E9y7DcQ38wQ.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0TGj7YgAAAABQDsFfJbtARpkqcf2bK1cOWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0DpMrYwAAAACrvt2BglzURogWuB4FX0QjWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 118ms + - 97ms status: code: 201 message: Created - request: - body: '{"participants": [{"communicationIdentifier": {"communicationUser": {"id": - "8:acs:1e9c1c2c-188b-4297-8fa4-3dbfba303095_00000013-45f1-0e9b-69f0-553a0d00f6a2"}}, + body: '{"participants": [{"communicationIdentifier": {"rawId": "8:acs:da822639-3a0d-4861-8c1d-5ab1744869fb_00000014-0218-1495-0cf9-9c3a0d00aadd", + "communicationUser": {"id": "8:acs:da822639-3a0d-4861-8c1d-5ab1744869fb_00000014-0218-1495-0cf9-9c3a0d00aadd"}}, "displayName": "John Doe"}]}' headers: Accept: @@ -167,7 +163,7 @@ interactions: Connection: - keep-alive Content-Length: - - '188' + - '280' Content-Type: - application/json User-Agent: @@ -183,19 +179,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:50:04 GMT + - Wed, 21 Sep 2022 22:41:19 GMT ms-cv: - - TUF1kTZUlEeqSFolR6Ao0g.0 + - Uc3fgs9hdkWV1pH4xCK51Q.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0TGj7YgAAAAA1pHDWmDVISLfLLyXwFNBwWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0DpMrYwAAAAB/kCR0sNVuTZ+GWiwApseeWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 258ms + - 366ms status: code: 201 message: Created diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_add_participant_with_history_time.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_add_participant_with_history_time.yaml index 73b1e88fe18..4e660c2a3d7 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_add_participant_with_history_time.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_add_participant_with_history_time.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:49:59 GMT + - Wed, 21 Sep 2022 22:41:15 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:50:02.0216826+00:00"}}' + "expiresOn": "2022-09-22T22:41:17.080415+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - - '122' + - '121' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:50:02 GMT + - Wed, 21 Sep 2022 22:41:16 GMT ms-cv: - - uDksiHFSo06vgaJc6RFNOw.0 + - TMKBo8Wbj0a+OfXpSbPIWg.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095001Z-ue5bcnvs3t2n5ee38b8kwchyq400000000dg00000000hkyu + - 0DJMrYwAAAADSzeVZK8leSK7OUzXuvBCoWVZSMzExMDAwMTE2MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 129ms + - 127ms status: code: 201 message: Created @@ -67,39 +65,37 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - b8ef0319-b6b9-468f-98ba-a8cb667c6459 + - b2a83623-40d8-487a-bdba-297642f373ef method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "chat-topic", "createdOn": - "2022-08-16T09:50:02Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:41:17Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:50:03 GMT + - Wed, 21 Sep 2022 22:41:17 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3ArQd0sELNY_Lr9AoSEqBxSueAuyTbM95PBpVX2fmk6eU1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3ADq0I1Z3dnhaainpt0b7I1LaE67EbU4ix0f9R8-iFtik1@thread.v2 ms-cv: - - FvHA0voBmEieCzWltEc7qg.0 + - DSm6S9X6/UakVQsFgLOknw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095002Z-6b2s4uq0rt4yf0aehsw4te2apc00000000dg000000000udf + - 0DZMrYwAAAAAy8lbLraPFSJrXheh05V67WVZSMzExMDAwMTE2MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 581ms + - 627ms status: code: 201 message: Created @@ -117,11 +113,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:50:01 GMT + - Wed, 21 Sep 2022 22:41:17 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -129,7 +125,7 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:50:03.7473547+00:00"}}' + "expiresOn": "2022-09-22T22:41:18.9225841+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, @@ -139,25 +135,25 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:50:03 GMT + - Wed, 21 Sep 2022 22:41:18 GMT ms-cv: - - J4+9N0ogDE2N0a+9GRmDzQ.0 + - RJMV9yJD/0mup13Og5jv5g.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 0S2j7YgAAAAAXgHv4f+H0SrhvE8Y1gm7jWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0DpMrYwAAAACet+2Sy+6ETqAUs27qr3ZiWVZSMzExMDAwMTE2MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 125ms + - 116ms status: code: 201 message: Created - request: - body: '{"participants": [{"communicationIdentifier": {"communicationUser": {"id": - "8:acs:092a556e-45a7-442e-b9c8-13d8ebc7eb22_00000013-45f1-0bde-80f5-8b3a0d00050d"}}, + body: '{"participants": [{"communicationIdentifier": {"rawId": "8:acs:e2ce49bc-17af-4ccb-a850-2509b5adbb19_00000014-0218-1645-290c-113a0d00b005", + "communicationUser": {"id": "8:acs:e2ce49bc-17af-4ccb-a850-2509b5adbb19_00000014-0218-1645-290c-113a0d00b005"}}, "shareHistoryTime": "2022-01-01T00:00:00.000Z"}]}' headers: Accept: @@ -167,7 +163,7 @@ interactions: Connection: - keep-alive Content-Length: - - '209' + - '301' Content-Type: - application/json User-Agent: @@ -183,19 +179,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:50:04 GMT + - Wed, 21 Sep 2022 22:41:18 GMT ms-cv: - - KAGysEdKtEKrYhbmxptBNA.0 + - YkPd+kWS50KdYKVW0PxbkA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0TGj7YgAAAAAnkCLJzxCIQLfhLbdl+BYsWVZSMzBFREdFMDMwOAA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= + - 0D5MrYwAAAAAYZ3h0lSPGTosAqxX/MKh/WVZSMzExMDAwMTE2MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 287ms + - 305ms status: code: 201 message: Created diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_create_thread.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_create_thread.yaml index 014052760c8..f931400c756 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_create_thread.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_create_thread.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:51:39 GMT + - Wed, 21 Sep 2022 22:42:52 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:51:41.0335374+00:00"}}' + "expiresOn": "2022-09-22T22:42:53.9145544+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:51:41 GMT + - Wed, 21 Sep 2022 22:42:53 GMT ms-cv: - - GCrO3CYuT0WYNHADLG/buQ.0 + - tzUU0dXJTUKcy1BAzUYfow.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095140Z-z5w8hfkph50p97tr7b7ay90rp000000000ag00000003uk24 + - 0bZMrYwAAAADJnKSnkAcGTbYEtEKYhWU6WVZSMzExMDAwMTE2MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 121ms + - 296ms status: code: 201 message: Created @@ -67,39 +65,37 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - de6dc945-909e-4c0a-a409-aef435da11a9 + - ae57880f-3fb9-4b67-9888-091ef85e26ef method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "some-topic", "createdOn": - "2022-08-16T09:51:41Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:42:54Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:51:41 GMT + - Wed, 21 Sep 2022 22:42:54 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3ACWpfIAXQ-_3pSieepXdJrozZgrUxFk3P0JiICWMvgrU1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AhxQNOgQz5t946Bu-Oh9DiYVVaEWN79_-sjKQeSnFRsc1@thread.v2 ms-cv: - - R95zBVMqwUW2ngy7OQlwvg.0 + - gXf/IWjXvkSWnNFMVVLGuA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095141Z-6b2s4uq0rt4yf0aehsw4te2apc00000000dg00000000dw4y + - 0bpMrYwAAAACsSByzrrWaQav9drp+5+gFWVZSMzExMDAwMTE1MDA5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 540ms + - 606ms status: code: 201 message: Created diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_create_thread_without_topic.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_create_thread_without_topic.yaml index 16499396840..3c1f5d910ed 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_create_thread_without_topic.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_create_thread_without_topic.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:51:38 GMT + - Wed, 21 Sep 2022 22:42:52 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:51:40.6713674+00:00"}}' + "expiresOn": "2022-09-22T22:42:54.6670992+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:51:40 GMT + - Wed, 21 Sep 2022 22:42:54 GMT ms-cv: - - 5Ny5J6E0YkOTeeEEAFv7mA.0 + - hOdKiW8GG0W9mUt3AVe9tg.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095140Z-zvdmwacghh4c97ggppewnyshxn00000000e000000003h910 + - 0bpMrYwAAAADgUK1hUvynR4bzxx6YDmy+WVZSMzExMDAwMTE2MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 122ms + - 120ms status: code: 201 message: Created diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_delete_message.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_delete_message.yaml index 97730a4560c..8ebad0ac4e3 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_delete_message.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_delete_message.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Thu, 15 Sep 2022 00:41:45 GMT + - Wed, 21 Sep 2022 22:42:53 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-09-16T00:41:46.2725913+00:00"}}' + "expiresOn": "2022-09-22T22:42:54.9920963+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Thu, 15 Sep 2022 00:41:46 GMT + - Wed, 21 Sep 2022 22:42:54 GMT ms-cv: - - t2wro1U4ZEiex8kD6VpMxA.0 + - ZARqFUJIJ0Ww8mlRnbnXyA.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220915T004146Z-3h90xkferp4cx24r8hf6nt6eqn00000000bg000000019m3c + - 0bpMrYwAAAABaMyEmm+P6S6w9YcUc81PmWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 121ms + - 122ms status: code: 201 message: Created @@ -67,39 +65,37 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - c0fcb88d-5341-46d2-a6eb-ee06dade4993 + - 716fa725-3f38-4687-a5e4-36ab6adf6c72 method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "some-other-topic", "createdOn": - "2022-09-15T00:41:46Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:42:55Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Thu, 15 Sep 2022 00:41:47 GMT + - Wed, 21 Sep 2022 22:42:54 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3A6yLC34YSdODE52oJ2HNY8FMPAf-LojCq3lFrySuebRc1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AVXjgf8OzWg-bvMkHtCdMeGOzt1CBr6JV-lq1FuZn8UE1@thread.v2 ms-cv: - - 1iTqEctGFEiQtuzuJb980g.0 + - W595LKwdyUmRXKxgkfU5AA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220915T004146Z-p6d8v2xuy110p0n5du3bgrh5aw000000014g00000000c572 + - 0b5MrYwAAAACDZilxkaC9TJmk/rlTPUmPWVZSMzExMDAwMTE2MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 565ms + - 508ms status: code: 201 message: Created @@ -126,26 +122,24 @@ interactions: headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Thu, 15 Sep 2022 00:41:47 GMT + - Wed, 21 Sep 2022 22:42:56 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3A6yLC34YSdODE52oJ2HNY8FMPAf-LojCq3lFrySuebRc1@thread.v2/messages/1663202507547 + - https://clitest000002.communication.azure.com/chat/threads/19%3AVXjgf8OzWg-bvMkHtCdMeGOzt1CBr6JV-lq1FuZn8UE1@thread.v2/messages/1663800176206 ms-cv: - - OGDhbhxD4Eyd0CaBcfwrpg.0 + - e2pJirzuM0SU6BYQUbQjmQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220915T004147Z-phvt1gpgq57ef29aqf15zk0bx000000003fg000000016mf5 + - 0cJMrYwAAAABK+sAOpa9vRoikubbXX7j5WVZSMzExMDAwMTE2MDMzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 145ms + - 227ms status: code: 201 message: Created @@ -164,31 +158,29 @@ interactions: uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2021-09-07 response: body: - string: '{"id": "sanitized", "type": "text", "sequenceId": "3", "version": "1663202507547", - "content": {"message": "Hello!"}, "senderDisplayName": "", "createdOn": "2022-09-15T00:41:47Z", + string: '{"id": "sanitized", "type": "text", "sequenceId": "3", "version": "1663800176206", + "content": {"message": "Hello!"}, "senderDisplayName": "", "createdOn": "2022-09-21T22:42:56Z", "senderCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Thu, 15 Sep 2022 00:41:48 GMT + - Wed, 21 Sep 2022 22:42:56 GMT ms-cv: - - SBT1CtjyK0mONpZuA9pvXw.0 + - FlTPP6kdhkmvv/vbKK5woQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220915T004147Z-1w7c9zr2ut00danmzwbm1c5wus000000014g00000001ea8y + - 0cJMrYwAAAAAa7I4UdymvRIJziCyq8REDWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 88ms + - 125ms status: code: 200 message: OK @@ -213,20 +205,18 @@ interactions: headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive date: - - Thu, 15 Sep 2022 00:41:48 GMT + - Wed, 21 Sep 2022 22:42:56 GMT ms-cv: - - eoW0hYtwg0u03J0kyokFhQ.0 + - C1j8dQxkp0mXFXK/P+63nA.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220915T004148Z-h0qb3201d52d9088zpw00y0w6n00000000dg00000000weq6 + - 0cJMrYwAAAAAvn2uKeyERS4hu4zJXDt00WVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 214ms + - 203ms status: code: 204 message: No Content @@ -245,31 +235,29 @@ interactions: uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2021-09-07 response: body: - string: '{"id": "sanitized", "type": "text", "sequenceId": "3", "version": "1663202508560", - "content": {"message": ""}, "senderDisplayName": "", "createdOn": "2022-09-15T00:41:47Z", + string: '{"id": "sanitized", "type": "text", "sequenceId": "3", "version": "1663800177379", + "content": {"message": ""}, "senderDisplayName": "", "createdOn": "2022-09-21T22:42:56Z", "senderCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": - {"id": "sanitized"}}, "deletedOn": "2022-09-15T00:41:48Z"}' + {"id": "sanitized"}}, "deletedOn": "2022-09-21T22:42:57Z"}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Thu, 15 Sep 2022 00:41:49 GMT + - Wed, 21 Sep 2022 22:42:57 GMT ms-cv: - - L0ryxoGtX0mRUJ8AD2+98g.0 + - PSyzLXjyn0SeTnzzfLx5SQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220915T004148Z-2fmr0fmgux6sp3z5f5upqk0nu000000000ag00000001r7r1 + - 0cZMrYwAAAABjlcvSqZ2yTrHCIoiNYjnkWVZSMzExMDAwMTE2MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 62ms + - 80ms status: code: 200 message: OK diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_delete_thread.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_delete_thread.yaml index 1eb6b2724d8..69b34c10c69 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_delete_thread.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_delete_thread.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:51:38 GMT + - Wed, 21 Sep 2022 22:42:54 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:51:40.8504947+00:00"}}' + "expiresOn": "2022-09-22T22:42:56.2427233+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:51:40 GMT + - Wed, 21 Sep 2022 22:42:55 GMT ms-cv: - - 16j9c0qbeUeLe6oR5sh+Og.0 + - USGGKnsj302g1z0W7Aj4Vw.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095140Z-r0s9pbvvdt0w72q6sqrkc1ktpw00000005g0000000011ptr + - 0b5MrYwAAAADoG6xLi421SarvzPEGa+MtWVZSMzExMDAwMTE2MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 117ms + - 276ms status: code: 201 message: Created @@ -67,39 +65,37 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - 9e94686e-d149-4e85-8b58-829b51c14763 + - 9ecc4dae-6630-4577-9611-158f6b37ffae method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "some-topic", "createdOn": - "2022-08-16T09:51:41Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:42:57Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:51:42 GMT + - Wed, 21 Sep 2022 22:42:57 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AegRS6dK60O9yYgN3WDWOe4LXHLInS3YRU96XF2qy3ME1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AE15KuRR48VdXpEQToGYsQfJ01L6d6tcdjLkB-RJK5II1@thread.v2 ms-cv: - - mpFI5LJDOUC3q74/ITAdIw.0 + - FwhWTg7vukySlhAhskJ9SQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095141Z-zvdmwacghh4c97ggppewnyshxn00000000fg00000001qn7y + - 0cJMrYwAAAADh7jsflkioSqNg87+JJvc9WVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 715ms + - 528ms status: code: 201 message: Created @@ -115,7 +111,7 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://sanitized.communication.azure.com/chat/threads/sanitized?api-version=2021-09-07 response: @@ -124,20 +120,18 @@ interactions: headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive date: - - Tue, 16 Aug 2022 09:51:42 GMT + - Wed, 21 Sep 2022 22:42:57 GMT ms-cv: - - UANS+3WfV0662gMTvJTrxA.0 + - cD7u1hVpMUSkldRK3uCeSg.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095142Z-p18hf8s3dx4xf8cgexx53pe93400000000dg0000000031dn + - 0cZMrYwAAAADkahEgsVRbRZP7uER5LHDjWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 212ms + - 219ms status: code: 204 message: No Content diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_get_message.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_get_message.yaml index b00ccf0e484..f09bed0fa65 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_get_message.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_get_message.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:53:15 GMT + - Wed, 21 Sep 2022 22:44:28 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:53:17.5785701+00:00"}}' + "expiresOn": "2022-09-22T22:44:30.6860832+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:53:17 GMT + - Wed, 21 Sep 2022 22:44:30 GMT ms-cv: - - wKCTnRoTJE+eqrCIlZ5dOA.0 + - EQVgqp7EdUerDA7jVBhGRA.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095317Z-pvk0k4gqx51st0bh1fssf7cw3000000005f000000001tq86 + - 0zpMrYwAAAAAW2RXispcIQ6QalFqJIgFbWVZSMzExMDAwMTE2MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 129ms + - 119ms status: code: 201 message: Created @@ -67,39 +65,37 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - 0586b957-8d23-4a17-af78-5bc56fbfe392 + - 4d730a9b-2ec9-47fd-8a5f-4f8c8ea821c7 method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "new-topic", "createdOn": - "2022-08-16T09:53:18Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:44:31Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:53:18 GMT + - Wed, 21 Sep 2022 22:44:30 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AYpSWK-2APrqgddvgvjNAcjW6aOSLZ7maoNMiiaMvCC81@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3A655QmiBw3PVm9Y7jcH9qEcNDNCSqw0QXtpqTp-79aYg1@thread.v2 ms-cv: - - cXon1FDq/EKUIW8xd0Ku4g.0 + - pcCQcXlSU0WRJsRqFK9kEQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095317Z-p18hf8s3dx4xf8cgexx53pe93400000000dg000000008af7 + - 0zpMrYwAAAAB4A1riUNQLTZdwu59pcs4jWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 954ms + - 516ms status: code: 201 message: Created @@ -126,26 +122,24 @@ interactions: headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:53:19 GMT + - Wed, 21 Sep 2022 22:44:31 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AYpSWK-2APrqgddvgvjNAcjW6aOSLZ7maoNMiiaMvCC81@thread.v2/messages/1660643599231 + - https://clitest000002.communication.azure.com/chat/threads/19%3A655QmiBw3PVm9Y7jcH9qEcNDNCSqw0QXtpqTp-79aYg1@thread.v2/messages/1663800271814 ms-cv: - - wHIksblXoUyCuKzGZ+aDtA.0 + - J8yoZ0oyY02v2AQHTo3tAQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095319Z-vucxhh51rx5mv27fvss3h7q1kc00000000f0000000000916 + - 0z5MrYwAAAAA9AsEi5AL0TqG2BdKs75yAWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 74ms + - 178ms status: code: 201 message: Created @@ -164,31 +158,29 @@ interactions: uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages/sanitized?api-version=2021-09-07 response: body: - string: '{"id": "sanitized", "type": "html", "sequenceId": "3", "version": "1660643599231", - "content": {"message": "hello!"}, "senderDisplayName": "", "createdOn": "2022-08-16T09:53:19Z", + string: '{"id": "sanitized", "type": "html", "sequenceId": "3", "version": "1663800271814", + "content": {"message": "hello!"}, "senderDisplayName": "", "createdOn": "2022-09-21T22:44:31Z", "senderCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:53:19 GMT + - Wed, 21 Sep 2022 22:44:31 GMT ms-cv: - - 59pWRFZDikavygUlK4QKEw.0 + - okcwM8KDWUOCpftL7rOEzA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095319Z-hq6y7egy7x60fea7pte6x8g1v000000000eg00000000wtra + - 00JMrYwAAAACbnhWK3uslQqyb3xMOkNU5WVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 136ms + - 87ms status: code: 200 message: OK diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_list_messages.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_list_messages.yaml index b304590c2d2..b8fd503c51b 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_list_messages.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_list_messages.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:53:15 GMT + - Wed, 21 Sep 2022 22:44:28 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:53:17.3507748+00:00"}}' + "expiresOn": "2022-09-22T22:44:30.4974521+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:53:17 GMT + - Wed, 21 Sep 2022 22:44:30 GMT ms-cv: - - 5O/PwE13GE2Liz49rTkoPw.0 + - XD6ugVGRMEKSuLyc3F83Jg.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095316Z-pvk0k4gqx51st0bh1fssf7cw3000000005f000000001tq53 + - 0zpMrYwAAAAAUn0zm+BiBSrBo3gevYUQOWVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 123ms + - 115ms status: code: 201 message: Created @@ -67,39 +65,37 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - 56b24df4-5527-45fb-9e43-bba3e0176378 + - 60f6546b-fdd6-4d54-96cc-c07ffaa6e963 method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "another-topic", "createdOn": - "2022-08-16T09:53:18Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:44:30Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:53:18 GMT + - Wed, 21 Sep 2022 22:44:31 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AeR_MnK1spkPX4RHB4F0fyxIQVXDP0tn97zwRZbsRnPA1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AA6U4TK8HFWpfjcLGu7a6o0bxFEluX6L_z5lfslWpZl41@thread.v2 ms-cv: - - YtEJbR5NtEasHuNRDCB5Hg.0 + - lb/QAXPBDkmkEA/f/05L2w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095317Z-0613xdc17h3t90gs2g8fdg5r64000000009g00000002kyy1 + - 0zpMrYwAAAAATQaDd0+nERrYwlZMHLgrVWVZSMzExMDAwMTE2MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 627ms + - 539ms status: code: 201 message: Created @@ -118,39 +114,37 @@ interactions: uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?startTime=2022-01-01T00%3A00%3A00.000Z&api-version=2021-09-07 response: body: - string: '{"value": [{"id": "1660643598419", "type": "topicUpdated", "sequenceId": - "2", "version": "1660643598419", "content": {"topic": "another-topic", "initiatorCommunicationIdentifier": - {"rawId": "8:acs:9e61d9f2-a2b3-4ab6-96e7-9985b8bf8dd9_00000013-45f4-0021-eef0-8b3a0d00046a", - "communicationUser": {"id": "8:acs:9e61d9f2-a2b3-4ab6-96e7-9985b8bf8dd9_00000013-45f4-0021-eef0-8b3a0d00046a"}}}, - "createdOn": "2022-08-16T09:53:18Z"}, {"id": "1660643598335", "type": "participantAdded", - "sequenceId": "1", "version": "1660643598335", "content": {"participants": - [{"communicationIdentifier": {"rawId": "8:acs:9e61d9f2-a2b3-4ab6-96e7-9985b8bf8dd9_00000013-45f4-0021-eef0-8b3a0d00046a", - "communicationUser": {"id": "8:acs:9e61d9f2-a2b3-4ab6-96e7-9985b8bf8dd9_00000013-45f4-0021-eef0-8b3a0d00046a"}}, + string: '{"value": [{"id": "1663800271108", "type": "topicUpdated", "sequenceId": + "2", "version": "1663800271108", "content": {"topic": "another-topic", "initiatorCommunicationIdentifier": + {"rawId": "8:acs:00d81c2d-9741-471a-8369-f3791fd60ced_00000014-021b-029b-b4f1-9c3a0d00b331", + "communicationUser": {"id": "8:acs:00d81c2d-9741-471a-8369-f3791fd60ced_00000014-021b-029b-b4f1-9c3a0d00b331"}}}, + "createdOn": "2022-09-21T22:44:31Z"}, {"id": "1663800271066", "type": "participantAdded", + "sequenceId": "1", "version": "1663800271066", "content": {"participants": + [{"communicationIdentifier": {"rawId": "8:acs:00d81c2d-9741-471a-8369-f3791fd60ced_00000014-021b-029b-b4f1-9c3a0d00b331", + "communicationUser": {"id": "8:acs:00d81c2d-9741-471a-8369-f3791fd60ced_00000014-021b-029b-b4f1-9c3a0d00b331"}}, "shareHistoryTime": "1970-01-01T00:00:00Z"}], "initiatorCommunicationIdentifier": - {"rawId": "8:acs:9e61d9f2-a2b3-4ab6-96e7-9985b8bf8dd9_00000013-45f4-0021-eef0-8b3a0d00046a", - "communicationUser": {"id": "8:acs:9e61d9f2-a2b3-4ab6-96e7-9985b8bf8dd9_00000013-45f4-0021-eef0-8b3a0d00046a"}}}, - "createdOn": "2022-08-16T09:53:18Z"}]}' + {"rawId": "8:acs:00d81c2d-9741-471a-8369-f3791fd60ced_00000014-021b-029b-b4f1-9c3a0d00b331", + "communicationUser": {"id": "8:acs:00d81c2d-9741-471a-8369-f3791fd60ced_00000014-021b-029b-b4f1-9c3a0d00b331"}}}, + "createdOn": "2022-09-21T22:44:31Z"}]}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:53:19 GMT + - Wed, 21 Sep 2022 22:44:31 GMT ms-cv: - - ghCgc0nbM0uQl9liXllt6A.0 + - iNRqGTtQP0SRyYwmUczppQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095318Z-z5w8hfkph50p97tr7b7ay90rp000000000a000000004vhzb + - 0z5MrYwAAAADLAeeCeOqBSJNI1IcQoIfZWVZSMzExMDAwMTE2MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 28ms + - 139ms status: code: 200 message: OK diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_list_participants.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_list_participants.yaml index 469242e0878..4d9ace3c7e1 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_list_participants.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_list_participants.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:53:16 GMT + - Wed, 21 Sep 2022 22:44:31 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:53:18.3889107+00:00"}}' + "expiresOn": "2022-09-22T22:44:33.4331794+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:53:18 GMT + - Wed, 21 Sep 2022 22:44:33 GMT ms-cv: - - VOiGUHi9KEWbhRtJWyMwCw.0 + - uFRwE/Re30GMejGxTI9H5w.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095318Z-0613xdc17h3t90gs2g8fdg5r64000000009g00000002kz18 + - 00ZMrYwAAAABoX8bintVLR5vMYUfbp/zuWVZSMzExMDAwMTE1MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 120ms + - 112ms status: code: 201 message: Created @@ -67,39 +65,37 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - 88b8134f-630e-43d1-8c2b-49296df38403 + - a6d59b89-2d84-454f-8e3a-8e79310c19e8 method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "some-topic", "createdOn": - "2022-08-16T09:53:18Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:44:33Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:53:19 GMT + - Wed, 21 Sep 2022 22:44:33 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3A449sxqeIou_ORX2gyq6OroB61HEeGi3ptNJZnF3njbc1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AzLFq-Xep6WMNzypTuMllBe3Wcsa6psbp5Grn7eX4kOQ1@thread.v2 ms-cv: - - vWSbzNLGZU22eWwGkJCfKQ.0 + - P6nNGjhaV02D0JbmtEHSkg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095318Z-p18hf8s3dx4xf8cgexx53pe93400000000dg000000006452 + - 00ZMrYwAAAAAzJC5QMfq5SrsjQlHbE3X7WVZSMzExMDAwMTE1MDMxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 574ms + - 477ms status: code: 201 message: Created @@ -118,30 +114,28 @@ interactions: uri: https://sanitized.communication.azure.com/chat/threads/sanitized/participants?api-version=2021-09-07 response: body: - string: '{"value": [{"communicationIdentifier": {"rawId": "8:acs:f22dc9a9-f255-4ae4-9d06-eac091136190_00000013-45f4-042e-7bfa-553a0d00f6a5", - "communicationUser": {"id": "8:acs:f22dc9a9-f255-4ae4-9d06-eac091136190_00000013-45f4-042e-7bfa-553a0d00f6a5"}}, + string: '{"value": [{"communicationIdentifier": {"rawId": "8:acs:f30f1632-f24d-46ec-93eb-64be0c671c1d_00000014-021b-0e14-570c-113a0d0097f7", + "communicationUser": {"id": "8:acs:f30f1632-f24d-46ec-93eb-64be0c671c1d_00000014-021b-0e14-570c-113a0d0097f7"}}, "shareHistoryTime": "1970-01-01T00:00:00Z"}]}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:53:20 GMT + - Wed, 21 Sep 2022 22:44:34 GMT ms-cv: - - E3DqbBJXPE+eaZEXVavEqw.0 + - AnG++cmec0O1xZ89bqP7Ng.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095319Z-r0s9pbvvdt0w72q6sqrkc1ktpw00000005f000000002fd4g + - 00pMrYwAAAAA/nkODaB8RS75TPiKuliQYWVZSMzExMDAwMTE2MDMzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 154ms + - 99ms status: code: 200 message: OK diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_list_participants_bad_thread_id.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_list_participants_bad_thread_id.yaml index 18930f8398d..2e7f23dacaa 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_list_participants_bad_thread_id.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_list_participants_bad_thread_id.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:54:54 GMT + - Wed, 21 Sep 2022 22:46:08 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:54:56.713839+00:00"}}' + "expiresOn": "2022-09-22T22:46:10.3213391+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - - '121' + - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:54:56 GMT + - Wed, 21 Sep 2022 22:46:09 GMT ms-cv: - - d/3LsMaHt0up/aU5x/2K6w.0 + - nN7Hjrf9aEaA+zKv2sQCLQ.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095456Z-pvk0k4gqx51st0bh1fssf7cw3000000005gg00000000d6qh + - 0MpQrYwAAAAAP9QB8iCcVRZzod8kx1JNHWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 127ms + - 120ms status: code: 201 message: Created @@ -72,24 +70,22 @@ interactions: headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json date: - - Tue, 16 Aug 2022 09:54:57 GMT + - Wed, 21 Sep 2022 22:46:10 GMT ms-cv: - - wKr9IFGVWk6uOmT+A81urQ.0 + - NbU2QR0v1ESxosH+cUfYsg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095457Z-hq6y7egy7x60fea7pte6x8g1v000000000e0000000016ngp + - 0MpQrYwAAAACCdo8RO0r8S5tKHFycxVL7WVZSMzExMDAwMTE2MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 258ms + - 332ms status: code: 400 message: Bad Request diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_list_threads_no_endpoint.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_list_threads_no_endpoint.yaml index 7e901979e42..6d648ac7ab8 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_list_threads_no_endpoint.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_list_threads_no_endpoint.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:53:18 GMT + - Wed, 21 Sep 2022 22:44:31 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:53:20.4727917+00:00"}}' + "expiresOn": "2022-09-22T22:44:33.3249799+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:53:20 GMT + - Wed, 21 Sep 2022 22:44:32 GMT ms-cv: - - 7w+wrtryu0OJEGkvD8piwA.0 + - 2Oux01AGAEGWXHHIODWw4Q.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095320Z-vucxhh51rx5mv27fvss3h7q1kc00000000f000000000096b + - 00JMrYwAAAACqmXgqHNkbS6Ova66V3/LGWVZSMzExMDAwMTE1MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 127ms + - 119ms status: code: 201 message: Created diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_list_threads_with_cmdline_auth.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_list_threads_with_cmdline_auth.yaml index 87f5e89a9b2..d7fb4cae33d 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_list_threads_with_cmdline_auth.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_list_threads_with_cmdline_auth.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:54:54 GMT + - Wed, 21 Sep 2022 22:46:07 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:54:56.4513822+00:00"}}' + "expiresOn": "2022-09-22T22:46:09.0394283+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:54:56 GMT + - Wed, 21 Sep 2022 22:46:08 GMT ms-cv: - - ZAil2r8C90WbyKJ4C8dqxQ.0 + - sfbf61VlGk6GqDO1a/Z70w.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095456Z-ue5bcnvs3t2n5ee38b8kwchyq400000000dg00000000n45n + - 0MJQrYwAAAAAp6MiQsCNQQb191GjOwyesWVZSMzExMDAwMTE2MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 118ms + - 121ms status: code: 201 message: Created @@ -63,7 +61,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: @@ -72,20 +70,18 @@ interactions: headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:54:56 GMT + - Wed, 21 Sep 2022 22:46:09 GMT ms-cv: - - qKwCz2ppTEySjAqsWGleEA.0 + - ZdaMFxADp0yWgYC0r6AcfA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095456Z-6b2s4uq0rt4yf0aehsw4te2apc00000000dg00000000esxg + - 0MZQrYwAAAADX3V05aTtlTYFkDi7lb3pCWVZSMzExMDAwMTE2MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_list_threads_with_env_auth.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_list_threads_with_env_auth.yaml index 30eabf8f4b4..39e47dd4465 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_list_threads_with_env_auth.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_list_threads_with_env_auth.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:54:54 GMT + - Wed, 21 Sep 2022 22:46:06 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:54:56.4613628+00:00"}}' + "expiresOn": "2022-09-22T22:46:08.0202659+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:54:56 GMT + - Wed, 21 Sep 2022 22:46:07 GMT ms-cv: - - 6cTtFagLx0auBFbZP6nS9Q.0 + - GZ27kE7BQ0+Sby682WHyrA.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095456Z-0613xdc17h3t90gs2g8fdg5r64000000009g00000002mst9 + - 0L5QrYwAAAACaSSJlr9B+Qoh028eOjAn3WVZSMzExMDAwMTE2MDMzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 118ms + - 162ms status: code: 201 message: Created @@ -63,7 +61,7 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: @@ -72,24 +70,22 @@ interactions: headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:54:56 GMT + - Wed, 21 Sep 2022 22:46:07 GMT ms-cv: - - ebc36xJAdECr/KD2QhyA2Q.0 + - o+dRCudqfE+1dOQCqOQXVw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095456Z-z5w8hfkph50p97tr7b7ay90rp000000000ag00000003w0tc + - 0MJQrYwAAAADFPe4CMkjkQZWmsU03Ayi4WVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 15ms + - 79ms status: code: 200 message: OK diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_read_receipts.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_read_receipts.yaml index 33a71b967d6..08e36162f50 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_read_receipts.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_read_receipts.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:56:30 GMT + - Wed, 21 Sep 2022 22:47:43 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,7 +25,7 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:56:32.6055699+00:00"}}' + "expiresOn": "2022-09-22T22:47:45.2080706+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, @@ -35,19 +35,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:56:31 GMT + - Wed, 21 Sep 2022 22:47:44 GMT ms-cv: - - 2qF8WwwPiEyV+0T+R6tJew.0 + - KI2U0+L9SEaAusrctnF+Kw.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 00Gn7YgAAAAApg/79iVAtQ4kDSIFn4NkuWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0kJQrYwAAAABmoyPrM363TZINof2nKWT4WVZSMzExMDAwMTE2MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 117ms + - 122ms status: code: 201 message: Created @@ -65,15 +65,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - 3ad13b1d-2bb9-452d-8616-22cd5374f49d + - 613c14dd-620b-4aaa-8c33-97adc9491898 method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "thread-topic", "createdOn": - "2022-08-16T09:56:33Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:47:45Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: @@ -81,21 +81,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:56:33 GMT + - Wed, 21 Sep 2022 22:47:45 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AYnwEAcQrBLxuoUH2EoLEHvC50E8KOl7B-Kx_QYEyhdA1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AXMcBrMu234dxBPJm8Y7AhrQ6msUP17comABlV3AV8MA1@thread.v2 ms-cv: - - /8iVVjuG4kSUg9MUI5xM0A.0 + - a0FjlR6g3Ue9MerXYhrnJg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 00Wn7YgAAAACGRD6ctCT6S5q2bICQWa3jWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0kZQrYwAAAAAjgjmpN/3UTZMMySue2206WVZSMzExMDAwMTE2MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 808ms + - 446ms status: code: 201 message: Created @@ -121,19 +121,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:56:33 GMT + - Wed, 21 Sep 2022 22:47:46 GMT ms-cv: - - patqpvvZlEq1obwUk5FoLA.0 + - q7opO9DWNE2wNgSUfZuesA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 00mn7YgAAAAAc6nR7XO+PSp80Ql76yI0HWVZSMzBFREdFMDMxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= + - 0kpQrYwAAAADgDyej6K3aTLtBTdS5C7T4WVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 104ms + - 89ms status: code: 200 message: OK @@ -152,42 +152,42 @@ interactions: uri: https://sanitized.communication.azure.com/chat/threads/sanitized/messages?api-version=2021-09-07 response: body: - string: '{"value": [{"id": "1660643793543", "type": "topicUpdated", "sequenceId": - "2", "version": "1660643793543", "content": {"topic": "thread-topic", "initiatorCommunicationIdentifier": - {"rawId": "8:acs:a5b1eb40-a0fe-45c8-b179-6c19dcc695b3_00000013-45f6-fad8-92fd-8b3a0d0020f5", - "communicationUser": {"id": "8:acs:a5b1eb40-a0fe-45c8-b179-6c19dcc695b3_00000013-45f6-fad8-92fd-8b3a0d0020f5"}}}, - "createdOn": "2022-08-16T09:56:33Z"}, {"id": "1660643793453", "type": "participantAdded", - "sequenceId": "1", "version": "1660643793453", "content": {"participants": - [{"communicationIdentifier": {"rawId": "8:acs:a5b1eb40-a0fe-45c8-b179-6c19dcc695b3_00000013-45f6-fad8-92fd-8b3a0d0020f5", - "communicationUser": {"id": "8:acs:a5b1eb40-a0fe-45c8-b179-6c19dcc695b3_00000013-45f6-fad8-92fd-8b3a0d0020f5"}}, + string: '{"value": [{"id": "1663800466107", "type": "topicUpdated", "sequenceId": + "2", "version": "1663800466107", "content": {"topic": "thread-topic", "initiatorCommunicationIdentifier": + {"rawId": "8:acs:72934514-3889-4cb5-9c27-448e7110d9d5_00000014-021d-fb31-69ff-9c3a0d00a2fe", + "communicationUser": {"id": "8:acs:72934514-3889-4cb5-9c27-448e7110d9d5_00000014-021d-fb31-69ff-9c3a0d00a2fe"}}}, + "createdOn": "2022-09-21T22:47:46Z"}, {"id": "1663800466075", "type": "participantAdded", + "sequenceId": "1", "version": "1663800466075", "content": {"participants": + [{"communicationIdentifier": {"rawId": "8:acs:72934514-3889-4cb5-9c27-448e7110d9d5_00000014-021d-fb31-69ff-9c3a0d00a2fe", + "communicationUser": {"id": "8:acs:72934514-3889-4cb5-9c27-448e7110d9d5_00000014-021d-fb31-69ff-9c3a0d00a2fe"}}, "shareHistoryTime": "1970-01-01T00:00:00Z"}], "initiatorCommunicationIdentifier": - {"rawId": "8:acs:a5b1eb40-a0fe-45c8-b179-6c19dcc695b3_00000013-45f6-fad8-92fd-8b3a0d0020f5", - "communicationUser": {"id": "8:acs:a5b1eb40-a0fe-45c8-b179-6c19dcc695b3_00000013-45f6-fad8-92fd-8b3a0d0020f5"}}}, - "createdOn": "2022-08-16T09:56:33Z"}]}' + {"rawId": "8:acs:72934514-3889-4cb5-9c27-448e7110d9d5_00000014-021d-fb31-69ff-9c3a0d00a2fe", + "communicationUser": {"id": "8:acs:72934514-3889-4cb5-9c27-448e7110d9d5_00000014-021d-fb31-69ff-9c3a0d00a2fe"}}}, + "createdOn": "2022-09-21T22:47:46Z"}]}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:56:34 GMT + - Wed, 21 Sep 2022 22:47:46 GMT ms-cv: - - hp/6FEnkEEKEV15ioPMxqg.0 + - GdRVVjGKikyllcgSZ1E3Pw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 00mn7YgAAAACvZwUhVxemQoCcuZ7Uh1DnWVZSMzBFREdFMDMxOQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= + - 0k5QrYwAAAAAl38RunForQ5a+xguH6jQpWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 96ms + - 142ms status: code: 200 message: OK - request: - body: '{"chatMessageId": "1660643793543"}' + body: '{"chatMessageId": "1663800466107"}' headers: Accept: - application/json @@ -212,17 +212,17 @@ interactions: content-length: - '0' date: - - Tue, 16 Aug 2022 09:56:35 GMT + - Wed, 21 Sep 2022 22:47:46 GMT ms-cv: - - gycFj9htB02cAonpPu5s3Q.0 + - WSzQhuKOeEW1/pgHSiGIPQ.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 002n7YgAAAACOFKoAah90RbsJyEY6xHrXWVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0k5QrYwAAAAANmXIHuaIATLucRrwhlQtWWVZSMzExMDAwMTE2MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 285ms + - 287ms status: code: 200 message: OK @@ -241,28 +241,28 @@ interactions: uri: https://sanitized.communication.azure.com/chat/threads/sanitized/readReceipts?api-version=2021-09-07 response: body: - string: '{"value": [{"senderCommunicationIdentifier": {"rawId": "8:acs:a5b1eb40-a0fe-45c8-b179-6c19dcc695b3_00000013-45f6-fad8-92fd-8b3a0d0020f5", - "communicationUser": {"id": "8:acs:a5b1eb40-a0fe-45c8-b179-6c19dcc695b3_00000013-45f6-fad8-92fd-8b3a0d0020f5"}}, - "chatMessageId": "1660643793543", "readOn": "2022-08-16T09:56:35Z"}]}' + string: '{"value": [{"senderCommunicationIdentifier": {"rawId": "8:acs:72934514-3889-4cb5-9c27-448e7110d9d5_00000014-021d-fb31-69ff-9c3a0d00a2fe", + "communicationUser": {"id": "8:acs:72934514-3889-4cb5-9c27-448e7110d9d5_00000014-021d-fb31-69ff-9c3a0d00a2fe"}}, + "chatMessageId": "1663800466107", "readOn": "2022-09-21T22:47:47Z"}]}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:56:36 GMT + - Wed, 21 Sep 2022 22:47:47 GMT ms-cv: - - ddcLSXpDCUiX2TgMRTwIYA.0 + - oZ/i8HAwc0aQmM82h5W+bQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 01Gn7YgAAAACL4l0gp8X2SbBdec9DzneMWVZSMzBFREdFMDMyMQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= + - 0k5QrYwAAAAB7izDMO8AtR4gyACnW2em3WVZSMzExMDAwMTE1MDQ1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 89ms + - 150ms status: code: 200 message: OK diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_remove_participants.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_remove_participants.yaml index d4745dd0ad5..01fcec23b1c 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_remove_participants.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_remove_participants.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:54:53 GMT + - Wed, 21 Sep 2022 22:46:06 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:54:55.2124074+00:00"}}' + "expiresOn": "2022-09-22T22:46:08.8508249+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:54:55 GMT + - Wed, 21 Sep 2022 22:46:08 GMT ms-cv: - - 1e2ARk5CzkavIacmvZV8QA.0 + - 1ojFQ5/TDUWzW4+DwPTOig.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095455Z-vucxhh51rx5mv27fvss3h7q1kc00000000f0000000001azg + - 0MJQrYwAAAAA9lnMSgpHTQZK7yz0l3sJ+WVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 121ms + - 293ms status: code: 201 message: Created @@ -67,11 +65,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:54:53 GMT + - Wed, 21 Sep 2022 22:46:07 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -79,31 +77,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:54:55.9111206+00:00"}}' + "expiresOn": "2022-09-22T22:46:09.4962129+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:54:56 GMT + - Wed, 21 Sep 2022 22:46:09 GMT ms-cv: - - fPG1ZCPHlEWnq0qmqlEcOg.0 + - 2t5tckPwPU6k9lSbcVpv0g.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095455Z-r0s9pbvvdt0w72q6sqrkc1ktpw00000005f000000002gfd4 + - 0MZQrYwAAAAAS1tcZfMEmRJjKt1BZTPvTWVZSMzExMDAwMTE1MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 125ms + - 117ms status: code: 201 message: Created @@ -121,45 +117,43 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - 6577625c-c22d-47a1-b5e1-67e4f0abf778 + - c75e1427-e4e7-4bae-a0c4-8abe6b32ab72 method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "chat-topic", "createdOn": - "2022-08-16T09:54:56Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:46:09Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:54:57 GMT + - Wed, 21 Sep 2022 22:46:10 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3A0snpJQWLgaXIQhZGbGG15TyCyRxNq_P_YpJvXq_HG041@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AC9SyY1LRV99U14nCGzQ6k6LlibHR7QOAmEu1ELw_UuQ1@thread.v2 ms-cv: - - xUqHu94oUkqwBd5nfOGiYg.0 + - FrRte2No6E+MgrkLqoQg1A.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095456Z-p18hf8s3dx4xf8cgexx53pe93400000000dg000000009834 + - 0MZQrYwAAAACDUVlavYwxQq6lZEgy3DODWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 656ms + - 978ms status: code: 201 message: Created - request: - body: '{"participants": [{"communicationIdentifier": {"communicationUser": {"id": - "8:acs:f9b74cf9-a58c-44f7-ab39-fe64b20bf5cf_00000013-45f5-8121-fa5d-573a0d000086"}}}]}' + body: '{"participants": [{"communicationIdentifier": {"rawId": "8:acs:e5cac18a-d429-4f88-842c-aa7b19cf16dc_00000014-021c-8553-69ff-9c3a0d00a2e2", + "communicationUser": {"id": "8:acs:e5cac18a-d429-4f88-842c-aa7b19cf16dc_00000014-021c-8553-69ff-9c3a0d00a2e2"}}}]}' headers: Accept: - application/json @@ -168,7 +162,7 @@ interactions: Connection: - keep-alive Content-Length: - - '161' + - '253' Content-Type: - application/json User-Agent: @@ -181,29 +175,27 @@ interactions: headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:54:57 GMT + - Wed, 21 Sep 2022 22:46:10 GMT ms-cv: - - U3ufTcXZaUmzg+QHBZ8b8A.0 + - YsbO7CEu/0aSr0CCr/fUKw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095457Z-ue5bcnvs3t2n5ee38b8kwchyq400000000dg00000000bgcy + - 0MpQrYwAAAACdgelzEq3qRoIqJUSXdpxBWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 317ms + - 235ms status: code: 201 message: Created - request: - body: '{"communicationUser": {"id": "sanitized"}}' + body: '{"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}' headers: Accept: - application/json @@ -212,7 +204,7 @@ interactions: Connection: - keep-alive Content-Length: - - '42' + - '64' Content-Type: - application/json User-Agent: @@ -225,25 +217,23 @@ interactions: headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive date: - - Tue, 16 Aug 2022 09:54:58 GMT + - Wed, 21 Sep 2022 22:46:11 GMT ms-cv: - - +OzGDyKRxka+AvhDJGH6WQ.0 + - 7m0lY37u6E+hxBnIATq4ig.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095457Z-r0s9pbvvdt0w72q6sqrkc1ktpw00000005f000000002gg3g + - 0M5QrYwAAAABbvviX4WaHR6ht7s0qVGPnWVZSMzExMDAwMTE2MDIzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 234ms + - 387ms status: code: 204 message: No Content - request: - body: '{"communicationUser": {"id": "sanitized"}}' + body: '{"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}' headers: Accept: - application/json @@ -252,7 +242,7 @@ interactions: Connection: - keep-alive Content-Length: - - '42' + - '64' Content-Type: - application/json User-Agent: @@ -269,24 +259,24 @@ interactions: content-type: - application/json date: - - Tue, 16 Aug 2022 09:54:58 GMT + - Wed, 21 Sep 2022 22:46:12 GMT ms-cv: - - uT5bpxfzskmGLH+Y5l9zsA.0 + - DIrNd5XIeUOMLJxEfWxJ/w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0c2n7YgAAAAAKOMN67D21TppHJBcNQV5HWVZSMzBFREdFMDMxNQA5ZmM3YjUxOS1hOGNjLTRmODktOTM1ZS1jOTE0OGFlMDllODE= + - 0NJQrYwAAAACvOv2jzueMTIMfFZnPotUFWVZSMzExMDAwMTE1MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 20ms + - 22ms status: code: 400 message: Bad Request - request: - body: '{"communicationUser": {"id": "sanitized"}}' + body: '{"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}' headers: Accept: - application/json @@ -295,7 +285,7 @@ interactions: Connection: - keep-alive Content-Length: - - '42' + - '64' Content-Type: - application/json User-Agent: @@ -308,25 +298,23 @@ interactions: headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive date: - - Tue, 16 Aug 2022 09:54:59 GMT + - Wed, 21 Sep 2022 22:46:12 GMT ms-cv: - - BW0i3uP5WEGCmaWWxIwdhg.0 + - GHEq7Be2vkGNBIKCyBbvtQ.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095459Z-0613xdc17h3t90gs2g8fdg5r64000000009g000000029sw0 + - 0NJQrYwAAAABx58iU9GbbSYCBbWpuYUzJWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 154ms + - 195ms status: code: 204 message: No Content - request: - body: '{"communicationUser": {"id": "sanitized"}}' + body: '{"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}' headers: Accept: - application/json @@ -335,7 +323,7 @@ interactions: Connection: - keep-alive Content-Length: - - '42' + - '64' Content-Type: - application/json User-Agent: @@ -350,24 +338,22 @@ interactions: headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json date: - - Tue, 16 Aug 2022 09:55:00 GMT + - Wed, 21 Sep 2022 22:46:13 GMT ms-cv: - - LrdvqCI0tkymfAcxHU4RMQ.0 + - dQDW2T5wsEGWcdh8adVxag.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095500Z-vucxhh51rx5mv27fvss3h7q1kc00000000f0000000000t05 + - 0NJQrYwAAAAB47dysxZveQ7oo5/81hM1XWVZSMzExMDAwMTE2MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 208ms + - 226ms status: code: 403 message: Forbidden diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_send_html_message.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_send_html_message.yaml index 4ac9d894b29..53ef932de7f 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_send_html_message.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_send_html_message.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:56:34 GMT + - Wed, 21 Sep 2022 22:47:47 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,7 +25,7 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:56:36.0751528+00:00"}}' + "expiresOn": "2022-09-22T22:47:49.2377933+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, @@ -35,19 +35,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:56:35 GMT + - Wed, 21 Sep 2022 22:47:49 GMT ms-cv: - - hHK2tVfO1kaGj/iJqI7D8A.0 + - ijDC1o8mYE+U0oe6MOW0sg.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 002n7YgAAAACa9/AdSTt2SI+y4z4wj2ORWVZSMzExMDAwMTE2MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0lJQrYwAAAADkNwAVNJycQLzvzclWX6DfWVZSMzExMDAwMTE2MDMzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 115ms + - 119ms status: code: 201 message: Created @@ -65,15 +65,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - 04f06161-cbc2-498e-8978-719b48a7688b + - b3d60f0f-f21e-4ad7-bbbd-2dd427eb0c21 method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "yet-another-topic", "createdOn": - "2022-08-16T09:56:36Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:47:49Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: @@ -81,21 +81,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:56:36 GMT + - Wed, 21 Sep 2022 22:47:50 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3A0okX6AgAN72fC3WOouWhETNJ7jAv6WW-aP4bGk7kI581@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AxjlsIjQZlepDgaxgX4HeR_Whi_847UyL2g4u6v9mfk81@thread.v2 ms-cv: - - neIv9yJv20SnNlogTeyVWw.0 + - yjt+1LTlgUWucLdGIUGCUA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 01Gn7YgAAAAA6zi5fJ8fxT4M+XvIVKfryWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0lZQrYwAAAACRRKDubOJIRZIL3YKi19NKWVZSMzExMDAwMTE2MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 602ms + - 656ms status: code: 201 message: Created @@ -122,26 +122,24 @@ interactions: headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:56:37 GMT + - Wed, 21 Sep 2022 22:47:50 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3A0okX6AgAN72fC3WOouWhETNJ7jAv6WW-aP4bGk7kI581@thread.v2/messages/1660643797824 + - https://clitest000002.communication.azure.com/chat/threads/19%3AxjlsIjQZlepDgaxgX4HeR_Whi_847UyL2g4u6v9mfk81@thread.v2/messages/1663800470869 ms-cv: - - qwdDxhXhDU6tuhI1kVo1Kw.0 + - uaHfyEC4bk6pHQ9NvA8CSw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095637Z-ue5bcnvs3t2n5ee38b8kwchyq400000000dg000000013hyd + - 0lpQrYwAAAAB/BJbmOMPVQaqJS+Pqs+lVWVZSMzExMDAwMTE2MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 204ms + - 190ms status: code: 201 message: Created diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_send_message.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_send_message.yaml index 3c5df4af0a5..bceaffce254 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_send_message.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_send_message.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:56:31 GMT + - Wed, 21 Sep 2022 22:47:43 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,29 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:56:33.569662+00:00"}}' + "expiresOn": "2022-09-22T22:47:44.9679414+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 content-length: - - '121' + - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:56:32 GMT + - Wed, 21 Sep 2022 22:47:44 GMT ms-cv: - - 5PyTHTAtEUSLiD9fE043zQ.0 + - dR+FYGwknkWGjoHGQEVWUA.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 00Wn7YgAAAACm9EQeTIltQL4vOSuTeTCCWVZSMzExMDAwMTE2MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0kJQrYwAAAABk4y0cpdprR5I+YvyqVHW6WVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 116ms + - 120ms status: code: 201 message: Created @@ -65,15 +65,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - e177dda7-bcdb-4310-a743-56bb0b6ff940 + - 1375b815-b632-423d-a36b-b72c53f27a14 method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "some-other-topic", "createdOn": - "2022-08-16T09:56:34Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:47:45Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: @@ -81,21 +81,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:56:34 GMT + - Wed, 21 Sep 2022 22:47:44 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AVIBwC5MylRkJ0MF_NzexafZa4SFDGcZ0O46chAPlmjc1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AQ6RtjkK9H8J4PIj5qlJj4kllPFwgItHMTSTu7Fz5tgw1@thread.v2 ms-cv: - - /0lGAQx5/ESgf4QAcQJ1Vw.0 + - wQ1bh4F0mE6mCDMk4AJ31A.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 00mn7YgAAAAC+Pr4+qA69S7fO3od6lEZLWVZSMzExMDAwMTE1MDA5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0kZQrYwAAAADmUxymvbjSQLIBrrK9J1cXWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 518ms + - 457ms status: code: 201 message: Created @@ -125,21 +125,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:56:35 GMT + - Wed, 21 Sep 2022 22:47:45 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AVIBwC5MylRkJ0MF_NzexafZa4SFDGcZ0O46chAPlmjc1@thread.v2/messages/1660643795886 + - https://clitest000002.communication.azure.com/chat/threads/19%3AQ6RtjkK9H8J4PIj5qlJj4kllPFwgItHMTSTu7Fz5tgw1@thread.v2/messages/1663800466129 ms-cv: - - 5pLrUasYZUO1raMHFAUgtQ.0 + - V+O8Jqt15kC6DZTj2KI5SA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 002n7YgAAAAAZ6lUSFkNqSayAa+TUpCy/WVZSMzExMDAwMTE2MDMxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0kZQrYwAAAACEXpgyWMcoSqqJIJRE+ycwWVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 316ms + - 159ms status: code: 201 message: Created diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_send_message_without_content.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_send_message_without_content.yaml index 0e49a31743a..a7c88cdbe24 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_send_message_without_content.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_send_message_without_content.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:56:30 GMT + - Wed, 21 Sep 2022 22:47:45 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,7 +25,7 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:56:33.1031918+00:00"}}' + "expiresOn": "2022-09-22T22:47:47.1747819+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, @@ -35,19 +35,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:56:33 GMT + - Wed, 21 Sep 2022 22:47:46 GMT ms-cv: - - 3KP78okLO0OC8TyVUlQAAw.0 + - loSHW44In0qYUoCEv0MUyA.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 00Gn7YgAAAAApG/zgd+93T5ObTlTjuJkqWVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0kpQrYwAAAAAYrPnXYXMQQaz/4qNx+Y39WVZSMzExMDAwMTE2MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 135ms + - 118ms status: code: 201 message: Created @@ -65,15 +65,15 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - 4db676e7-1ecc-4d64-861d-95428c0ef112 + - 1cf290cd-c211-4dfb-bfa5-b02ed23168c9 method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "yet-another-topic", "createdOn": - "2022-08-16T09:56:34Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:47:47Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: @@ -81,21 +81,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:56:34 GMT + - Wed, 21 Sep 2022 22:47:47 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AwvrzYN4EccwlJH6HQ0Jom4CMLMxvWVXk_LAKLZF0_go1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AJYYlDfWBDteMxS96EShXK2pWabDVdzDTgvpE-gNhnuo1@thread.v2 ms-cv: - - uPgzGXzew06HPsIfRtsOPg.0 + - bY8OrkjidEOI8K+vaA1ptg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 00Wn7YgAAAABqJtBJ2SNFQIVYTh6IhQx3WVZSMzExMDAwMTE2MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0k5QrYwAAAAAuPk0qUFkiR6OcfPJ8nUTFWVZSMzExMDAwMTE2MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 707ms + - 559ms status: code: 201 message: Created diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_send_text_message.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_send_text_message.yaml index b8c812b8ca5..4598f519cda 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_send_text_message.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_send_text_message.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:58:12 GMT + - Wed, 21 Sep 2022 22:49:22 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:58:14.4875694+00:00"}}' + "expiresOn": "2022-09-22T22:49:24.4820209+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:58:14 GMT + - Wed, 21 Sep 2022 22:49:24 GMT ms-cv: - - qDPbFi35YUKYM40AHhYnQQ.0 + - h77ukbmlfk2Zo9qZ5aRRKA.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095814Z-zvdmwacghh4c97ggppewnyshxn00000000eg000000036ffq + - 09JQrYwAAAABDaaV/OVYLSY779xxUQ5l2WVZSMzExMDAwMTE2MDA5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 129ms + - 123ms status: code: 201 message: Created @@ -67,39 +65,37 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - e17a6379-b56d-41e7-95c0-fd8accb64032 + - cd096cb3-7f25-45b0-a837-f0bc8268087a method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "yet-another-topic", "createdOn": - "2022-08-16T09:58:15Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:49:24Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:58:15 GMT + - Wed, 21 Sep 2022 22:49:24 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AVOlNrrSfAnvUlIbV_ET8nzaR_UcryeMdAq_lLxj9XzM1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3AWqiu0cTJIqFK5LslmEAKREMrMBIhFpB5N3aRjKl7sYw1@thread.v2 ms-cv: - - N7Zs5jKM80O8BoRCouMuuw.0 + - 4Y15dC1j20uU1NgDGjS75g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095814Z-z5w8hfkph50p97tr7b7ay90rp000000000c000000000xfez + - 09JQrYwAAAADMJXV+XTtXRIYk+xqjwmWhWVZSMzExMDAwMTE1MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 550ms + - 576ms status: code: 201 message: Created @@ -126,26 +122,24 @@ interactions: headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:58:15 GMT + - Wed, 21 Sep 2022 22:49:25 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AVOlNrrSfAnvUlIbV_ET8nzaR_UcryeMdAq_lLxj9XzM1@thread.v2/messages/1660643895843 + - https://clitest000002.communication.azure.com/chat/threads/19%3AWqiu0cTJIqFK5LslmEAKREMrMBIhFpB5N3aRjKl7sYw1@thread.v2/messages/1663800565981 ms-cv: - - VSs+IufIMkKjw1sWgNMPHQ.0 + - kFM2zy56K0yGDBROJMzUXA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095815Z-0613xdc17h3t90gs2g8fdg5r64000000009g00000001hdy1 + - 09ZQrYwAAAADb7vjC1yLHQqaOF3BuaVNIWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 199ms + - 95ms status: code: 201 message: Created diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_update_message.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_update_message.yaml index aeeca3989c9..97ec96d8674 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_update_message.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_update_message.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:58:09 GMT + - Wed, 21 Sep 2022 22:49:20 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:58:11.6025564+00:00"}}' + "expiresOn": "2022-09-22T22:49:22.1926548+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:58:11 GMT + - Wed, 21 Sep 2022 22:49:21 GMT ms-cv: - - WhtDLr1jiE+FNCYSlW59Mg.0 + - 6OGF0pxaVkaC+uJYiMQ2eQ.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095811Z-r0s9pbvvdt0w72q6sqrkc1ktpw00000005f000000002kf3k + - 08ZQrYwAAAADVQu01scp5QYSP6CDdu+7YWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 124ms + - 120ms status: code: 201 message: Created @@ -67,39 +65,37 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - 28941290-0794-4d06-9e83-84ce0d30524a + - 5794b589-f4d6-40b6-8643-8fc764f45731 method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "thread-topic", "createdOn": - "2022-08-16T09:58:12Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:49:22Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:58:12 GMT + - Wed, 21 Sep 2022 22:49:23 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AyYLxTMKym5r9y97eVGBfWj2duAUU0GPmB2AorxyFhLE1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3Ao3DCcjGiJQw2_D-_FgOu2ZIquVQBAwQiIqQE56w34u01@thread.v2 ms-cv: - - W6KiMLoc60aImqPJYn8kww.0 + - EjE+zD9uIEShFd4z2mCk/g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095811Z-hq6y7egy7x60fea7pte6x8g1v000000000f000000000qax4 + - 08pQrYwAAAABv08ai2AxIT4ZhEOGBUzhxWVZSMzExMDAwMTE2MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 427ms + - 668ms status: code: 201 message: Created @@ -126,26 +122,24 @@ interactions: headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:58:13 GMT + - Wed, 21 Sep 2022 22:49:23 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AyYLxTMKym5r9y97eVGBfWj2duAUU0GPmB2AorxyFhLE1@thread.v2/messages/1660643892983 + - https://clitest000002.communication.azure.com/chat/threads/19%3Ao3DCcjGiJQw2_D-_FgOu2ZIquVQBAwQiIqQE56w34u01@thread.v2/messages/1663800563519 ms-cv: - - jHpTJiXnJ0uBxr8kC/41FA.0 + - KGZZUw0WDk2oHkL/0xuA2A.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095812Z-r0s9pbvvdt0w72q6sqrkc1ktpw00000005g0000000013gyh + - 085QrYwAAAABjeVtJOZKhSYqJFgBmk313WVZSMzExMDAwMTE2MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 167ms + - 183ms status: code: 201 message: Created @@ -172,20 +166,18 @@ interactions: headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive date: - - Tue, 16 Aug 2022 09:58:14 GMT + - Wed, 21 Sep 2022 22:49:24 GMT ms-cv: - - /D3SPjovbEqwrOxa95leXQ.0 + - ZJooGbuT+UapkJr8Htlg9g.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095813Z-pvk0k4gqx51st0bh1fssf7cw3000000005g000000000vcea + - 085QrYwAAAAAJBfEooh0xRL36e+pB9IY2WVZSMzExMDAwMTE1MDA5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 426ms + - 236ms status: code: 204 message: No Content diff --git a/src/communication/azext_communication/tests/latest/recordings/test_chat_update_topic.yaml b/src/communication/azext_communication/tests/latest/recordings/test_chat_update_topic.yaml index edcdba66d68..ca0380cf376 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_chat_update_topic.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_chat_update_topic.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:58:10 GMT + - Wed, 21 Sep 2022 22:49:22 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:58:12.5511397+00:00"}}' + "expiresOn": "2022-09-22T22:49:23.7981417+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:58:12 GMT + - Wed, 21 Sep 2022 22:49:23 GMT ms-cv: - - UhGgTN6ClUOU3hL8rLBUug.0 + - Kkik5vWKXkivp4O3IO74VA.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095812Z-z5w8hfkph50p97tr7b7ay90rp000000000ag00000003xdwg + - 085QrYwAAAAAvAB0Z8YuYQaPqw7iVtZRuWVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 122ms + - 128ms status: code: 201 message: Created @@ -67,39 +65,37 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-chat/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) repeatability-request-id: - - 0f20495d-09b0-4eb1-8891-9a9a0f0fb375 + - d5218b80-e1f2-45f7-bd8c-24414ac40a4d method: POST uri: https://sanitized.communication.azure.com/chat/threads?api-version=2021-09-07 response: body: string: '{"chatThread": {"id": "sanitized", "topic": "thread-topic", "createdOn": - "2022-08-16T09:58:13Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", + "2022-09-21T22:49:24Z", "createdByCommunicationIdentifier": {"rawId": "sanitized", "communicationUser": {"id": "sanitized"}}}}' headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:58:13 GMT + - Wed, 21 Sep 2022 22:49:24 GMT location: - - https://clitest000002.communication.azure.com/chat/threads/19%3AGPmfjMrE_Mrn6CRNZzBhBA9I2jpjZ_xUxRCUViQ0Ocw1@thread.v2 + - https://clitest000002.communication.azure.com/chat/threads/19%3A99LCDfG2PgywB-lpe8OIJZJXjPPSj1CsmXPwj8nNSbM1@thread.v2 ms-cv: - - yO//0djuG0q7iDCOtmg/wA.0 + - teSrZAmq1UKZVG5iad92gg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T095812Z-6b2s4uq0rt4yf0aehsw4te2apc00000000dg00000000pm1k + - 09JQrYwAAAACupnn7aq+QQJSRKGlZu/YDWVZSMzExMDAwMTE2MDUxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 960ms + - 492ms status: code: 201 message: Created @@ -126,20 +122,18 @@ interactions: headers: api-supported-versions: - 2021-03-07, 2021-04-05-preview6, 2021-09-07, 2022-11-15-preview8 - connection: - - keep-alive date: - - Tue, 16 Aug 2022 09:58:14 GMT + - Wed, 21 Sep 2022 22:49:24 GMT ms-cv: - - zajFbVGk30CrsPoquNO+FA.0 + - B3w3vLMCcEGB1iFqCRkAlA.0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095814Z-zvdmwacghh4c97ggppewnyshxn00000000fg00000001sx2s + - 09JQrYwAAAAB/JQ1g7ph7SZiqEiHnKrelWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 243ms + - 171ms status: code: 204 message: No Content diff --git a/src/communication/azext_communication/tests/latest/recordings/test_communication_scenario.yaml b/src/communication/azext_communication/tests/latest/recordings/test_communication_scenario.yaml index 3835fe4616d..4628eab29af 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_communication_scenario.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_communication_scenario.yaml @@ -17,16 +17,16 @@ interactions: ParameterSetName: - --name --location --data-location --resource-group User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001?api-version=2020-08-20 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","name":"MyCommunica000001","type":"microsoft.communication/communicationservices","location":"Global","systemData":{"createdBy":"sanitized@microsoft.com","createdByType":"User","createdAt":"2022-08-16T10:04:19.6406836Z","lastModifiedBy":"sanitized@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-16T10:04:19.6406836Z"},"properties":{"dataLocation":"United + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","name":"MyCommunica000001","type":"microsoft.communication/communicationservices","location":"Global","systemData":{"createdBy":"sanitized@microsoft.com","createdByType":"User","createdAt":"2022-09-21T22:55:28.4276241Z","lastModifiedBy":"sanitized@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T22:55:28.4276241Z"},"properties":{"dataLocation":"United States","provisioningState":"Accepted"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/54c4181e-f238-4f84-8db1-fc9f7778eaa2*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967?api-version=2020-08-20 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/eaf49808-97d9-47f9-9362-944863ea5f13*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D?api-version=2020-08-20 cache-control: - no-cache content-length: @@ -34,9 +34,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:04:19 GMT + - Wed, 21 Sep 2022 22:55:28 GMT etag: - - '"00004039-0000-0700-0000-62fb6ba40000"' + - '"090133f5-0000-0700-0000-632b96600000"' expires: - '-1' pragma: @@ -50,7 +50,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -68,12 +68,12 @@ interactions: ParameterSetName: - --name --location --data-location --resource-group User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/54c4181e-f238-4f84-8db1-fc9f7778eaa2*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967?api-version=2020-08-20 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/eaf49808-97d9-47f9-9362-944863ea5f13*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D?api-version=2020-08-20 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/54c4181e-f238-4f84-8db1-fc9f7778eaa2*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967","name":"54c4181e-f238-4f84-8db1-fc9f7778eaa2*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","status":"Accepted","startTime":"2022-08-16T10:04:20.2079751Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/eaf49808-97d9-47f9-9362-944863ea5f13*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D","name":"eaf49808-97d9-47f9-9362-944863ea5f13*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","status":"Accepted","startTime":"2022-09-21T22:55:28.9028573Z"}' headers: cache-control: - no-cache @@ -82,9 +82,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:04:50 GMT + - Wed, 21 Sep 2022 22:55:59 GMT etag: - - '"4b002074-0000-0800-0000-62fb6ba40000"' + - '"b6014d5f-0000-0800-0000-632b96600000"' expires: - '-1' pragma: @@ -114,12 +114,12 @@ interactions: ParameterSetName: - --name --location --data-location --resource-group User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/54c4181e-f238-4f84-8db1-fc9f7778eaa2*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967?api-version=2020-08-20 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/eaf49808-97d9-47f9-9362-944863ea5f13*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D?api-version=2020-08-20 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/54c4181e-f238-4f84-8db1-fc9f7778eaa2*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967","name":"54c4181e-f238-4f84-8db1-fc9f7778eaa2*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","status":"Accepted","startTime":"2022-08-16T10:04:20.2079751Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/eaf49808-97d9-47f9-9362-944863ea5f13*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D","name":"eaf49808-97d9-47f9-9362-944863ea5f13*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","status":"Accepted","startTime":"2022-09-21T22:55:28.9028573Z"}' headers: cache-control: - no-cache @@ -128,9 +128,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:05:20 GMT + - Wed, 21 Sep 2022 22:56:28 GMT etag: - - '"4b002074-0000-0800-0000-62fb6ba40000"' + - '"b6014d5f-0000-0800-0000-632b96600000"' expires: - '-1' pragma: @@ -160,12 +160,12 @@ interactions: ParameterSetName: - --name --location --data-location --resource-group User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/54c4181e-f238-4f84-8db1-fc9f7778eaa2*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967?api-version=2020-08-20 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/eaf49808-97d9-47f9-9362-944863ea5f13*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D?api-version=2020-08-20 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/54c4181e-f238-4f84-8db1-fc9f7778eaa2*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967","name":"54c4181e-f238-4f84-8db1-fc9f7778eaa2*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","status":"Succeeded","startTime":"2022-08-16T10:04:20.2079751Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/eaf49808-97d9-47f9-9362-944863ea5f13*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D","name":"eaf49808-97d9-47f9-9362-944863ea5f13*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","status":"Succeeded","startTime":"2022-09-21T22:55:28.9028573Z","properties":null}' headers: cache-control: - no-cache @@ -174,9 +174,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:05:50 GMT + - Wed, 21 Sep 2022 22:56:59 GMT etag: - - '"170019b2-0000-0100-0000-62fb6be60000"' + - '"b6015a64-0000-0800-0000-632b96a30000"' expires: - '-1' pragma: @@ -206,12 +206,12 @@ interactions: ParameterSetName: - --name --location --data-location --resource-group User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001?api-version=2020-08-20 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","name":"MyCommunica000001","type":"microsoft.communication/communicationservices","location":"Global","systemData":{"createdBy":"sanitized@microsoft.com","createdByType":"User","createdAt":"2022-08-16T10:04:19.6406836Z","lastModifiedBy":"sanitized@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-16T10:04:19.6406836Z"},"properties":{"provisioningState":"Succeeded","hostName":"mycommunicas4i5mkqz3v7l.communication.azure.com","immutableResourceId":"57b92965-9359-451b-a4a8-e5d99fefec14","dataLocation":"United + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","name":"MyCommunica000001","type":"microsoft.communication/communicationservices","location":"Global","systemData":{"createdBy":"sanitized@microsoft.com","createdByType":"User","createdAt":"2022-09-21T22:55:28.4276241Z","lastModifiedBy":"sanitized@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T22:55:28.4276241Z"},"properties":{"provisioningState":"Succeeded","hostName":"mycommunicaugip4ttyls5c.communication.azure.com","immutableResourceId":"5eec7dbc-2b27-4d3a-ab69-1a9497805bea","dataLocation":"United States"}}' headers: cache-control: @@ -221,9 +221,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:05:50 GMT + - Wed, 21 Sep 2022 22:56:59 GMT etag: - - '"00007339-0000-0700-0000-62fb6bab0000"' + - '"09015ef5-0000-0700-0000-632b96690000"' expires: - '-1' pragma: @@ -255,12 +255,12 @@ interactions: ParameterSetName: - --created --name --resource-group User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001?api-version=2020-08-20 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","name":"MyCommunica000001","type":"microsoft.communication/communicationservices","location":"Global","systemData":{"createdBy":"sanitized@microsoft.com","createdByType":"User","createdAt":"2022-08-16T10:04:19.6406836Z","lastModifiedBy":"sanitized@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-16T10:04:19.6406836Z"},"properties":{"provisioningState":"Succeeded","hostName":"mycommunicas4i5mkqz3v7l.communication.azure.com","immutableResourceId":"57b92965-9359-451b-a4a8-e5d99fefec14","dataLocation":"United + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","name":"MyCommunica000001","type":"microsoft.communication/communicationservices","location":"Global","systemData":{"createdBy":"sanitized@microsoft.com","createdByType":"User","createdAt":"2022-09-21T22:55:28.4276241Z","lastModifiedBy":"sanitized@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T22:55:28.4276241Z"},"properties":{"provisioningState":"Succeeded","hostName":"mycommunicaugip4ttyls5c.communication.azure.com","immutableResourceId":"5eec7dbc-2b27-4d3a-ab69-1a9497805bea","dataLocation":"United States"}}' headers: cache-control: @@ -270,9 +270,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:05:51 GMT + - Wed, 21 Sep 2022 22:57:00 GMT etag: - - '"00007339-0000-0700-0000-62fb6bab0000"' + - '"09015ef5-0000-0700-0000-632b96690000"' expires: - '-1' pragma: @@ -304,12 +304,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001?api-version=2020-08-20 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","name":"MyCommunica000001","type":"microsoft.communication/communicationservices","location":"Global","systemData":{"createdBy":"sanitized@microsoft.com","createdByType":"User","createdAt":"2022-08-16T10:04:19.6406836Z","lastModifiedBy":"sanitized@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-16T10:04:19.6406836Z"},"properties":{"provisioningState":"Succeeded","hostName":"mycommunicas4i5mkqz3v7l.communication.azure.com","immutableResourceId":"57b92965-9359-451b-a4a8-e5d99fefec14","dataLocation":"United + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","name":"MyCommunica000001","type":"microsoft.communication/communicationservices","location":"Global","systemData":{"createdBy":"sanitized@microsoft.com","createdByType":"User","createdAt":"2022-09-21T22:55:28.4276241Z","lastModifiedBy":"sanitized@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T22:55:28.4276241Z"},"properties":{"provisioningState":"Succeeded","hostName":"mycommunicaugip4ttyls5c.communication.azure.com","immutableResourceId":"5eec7dbc-2b27-4d3a-ab69-1a9497805bea","dataLocation":"United States"}}' headers: cache-control: @@ -319,9 +319,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:05:51 GMT + - Wed, 21 Sep 2022 22:57:01 GMT etag: - - '"00007339-0000-0700-0000-62fb6bab0000"' + - '"09015ef5-0000-0700-0000-632b96690000"' expires: - '-1' pragma: @@ -353,12 +353,12 @@ interactions: ParameterSetName: - --resource-group User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices?api-version=2020-08-20 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","name":"MyCommunica000001","type":"microsoft.communication/communicationservices","location":"Global","systemData":{"createdBy":"sanitized@microsoft.com","createdByType":"User","createdAt":"2022-08-16T10:04:19.6406836Z","lastModifiedBy":"sanitized@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-16T10:04:19.6406836Z"},"properties":{"provisioningState":"Succeeded","hostName":"mycommunicas4i5mkqz3v7l.communication.azure.com","immutableResourceId":"57b92965-9359-451b-a4a8-e5d99fefec14","dataLocation":"United + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","name":"MyCommunica000001","type":"microsoft.communication/communicationservices","location":"Global","systemData":{"createdBy":"sanitized@microsoft.com","createdByType":"User","createdAt":"2022-09-21T22:55:28.4276241Z","lastModifiedBy":"sanitized@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T22:55:28.4276241Z"},"properties":{"provisioningState":"Succeeded","hostName":"mycommunicaugip4ttyls5c.communication.azure.com","immutableResourceId":"5eec7dbc-2b27-4d3a-ab69-1a9497805bea","dataLocation":"United States"}}]}' headers: cache-control: @@ -368,7 +368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:05:51 GMT + - Wed, 21 Sep 2022 22:57:01 GMT expires: - '-1' pragma: @@ -400,12 +400,12 @@ interactions: ParameterSetName: - -g User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices?api-version=2020-08-20 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","name":"MyCommunica000001","type":"microsoft.communication/communicationservices","location":"Global","systemData":{"createdBy":"sanitized@microsoft.com","createdByType":"User","createdAt":"2022-08-16T10:04:19.6406836Z","lastModifiedBy":"sanitized@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-16T10:04:19.6406836Z"},"properties":{"provisioningState":"Succeeded","hostName":"mycommunicas4i5mkqz3v7l.communication.azure.com","immutableResourceId":"57b92965-9359-451b-a4a8-e5d99fefec14","dataLocation":"United + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","name":"MyCommunica000001","type":"microsoft.communication/communicationservices","location":"Global","systemData":{"createdBy":"sanitized@microsoft.com","createdByType":"User","createdAt":"2022-09-21T22:55:28.4276241Z","lastModifiedBy":"sanitized@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T22:55:28.4276241Z"},"properties":{"provisioningState":"Succeeded","hostName":"mycommunicaugip4ttyls5c.communication.azure.com","immutableResourceId":"5eec7dbc-2b27-4d3a-ab69-1a9497805bea","dataLocation":"United States"}}]}' headers: cache-control: @@ -415,7 +415,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:05:52 GMT + - Wed, 21 Sep 2022 22:57:01 GMT expires: - '-1' pragma: @@ -451,24 +451,24 @@ interactions: ParameterSetName: - --name --tags --resource-group User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001?api-version=2020-08-20 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","name":"MyCommunica000001","type":"microsoft.communication/communicationservices","location":"Global","tags":{"newTag":"newVal"},"systemData":{"createdBy":"sanitized@microsoft.com","createdByType":"User","createdAt":"2022-08-16T10:04:19.6406836Z","lastModifiedBy":"sanitized@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-08-16T10:05:53.3716978Z"},"properties":{"hostName":"mycommunicas4i5mkqz3v7l.communication.azure.com","immutableResourceId":"57b92965-9359-451b-a4a8-e5d99fefec14","dataLocation":"United + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","name":"MyCommunica000001","type":"microsoft.communication/communicationservices","location":"Global","tags":{"newTag":"newVal"},"systemData":{"createdBy":"sanitized@microsoft.com","createdByType":"User","createdAt":"2022-09-21T22:55:28.4276241Z","lastModifiedBy":"sanitized@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-09-21T22:57:02.919013Z"},"properties":{"hostName":"mycommunicaugip4ttyls5c.communication.azure.com","immutableResourceId":"5eec7dbc-2b27-4d3a-ab69-1a9497805bea","dataLocation":"United States","provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '728' + - '727' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:05:53 GMT + - Wed, 21 Sep 2022 22:57:03 GMT etag: - - '"0000e239-0000-0700-0000-62fb6c010000"' + - '"090172f7-0000-0700-0000-632b96bf0000"' expires: - '-1' pragma: @@ -509,7 +509,7 @@ interactions: ParameterSetName: - --name --connection-string --resource-id --resource-group User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001/linkNotificationHub?api-version=2020-08-20 response: @@ -523,7 +523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:05:55 GMT + - Wed, 21 Sep 2022 22:57:04 GMT expires: - '-1' pragma: @@ -541,7 +541,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -561,12 +561,12 @@ interactions: ParameterSetName: - --name --resource-group User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001/listKeys?api-version=2020-08-20 response: body: - string: '{"primaryKey":"UaeGEOhiyNUWw+Y9ZKvgsmenpHCCSHY13q6zP6QyKj98czq66nVlTsqKwfzI4+7iytBQKWZ41H8YeqTvpJYrfQ==","secondaryKey":"ew75lvU6WkBiy27dw69xbBkW2I7kr+T30DR/k+HfpcQ81iRSDdktmgXKsWRhgfkWhnpFf6T8XNAwbIyBoqtrUQ==","primaryConnectionString":"endpoint=https://mycommunicas4i5mkqz3v7l.communication.azure.com/;accesskey=UaeGEOhiyNUWw+Y9ZKvgsmenpHCCSHY13q6zP6QyKj98czq66nVlTsqKwfzI4+7iytBQKWZ41H8YeqTvpJYrfQ==","secondaryConnectionString":"endpoint=https://mycommunicas4i5mkqz3v7l.communication.azure.com/;accesskey=ew75lvU6WkBiy27dw69xbBkW2I7kr+T30DR/k+HfpcQ81iRSDdktmgXKsWRhgfkWhnpFf6T8XNAwbIyBoqtrUQ=="}' + string: '{"primaryKey":"X30Gciq/qbFqJdmJUPU1eAqQNbDTSLEKFOpvLA3xBIukmPBCNp0qPSIaMYvhBnJpnfu5TWEkEiUW+p+FmTbFsA==","secondaryKey":"riI+nM0UD0VTWKi0tYaHB8VYfNyElGfxgkcLVV7ZUCQSrZjPqrHr4IUhFmpYT0QQO4CCcR+ui7W7BJB+iZxclw==","primaryConnectionString":"endpoint=https://mycommunicaugip4ttyls5c.communication.azure.com/;accesskey=X30Gciq/qbFqJdmJUPU1eAqQNbDTSLEKFOpvLA3xBIukmPBCNp0qPSIaMYvhBnJpnfu5TWEkEiUW+p+FmTbFsA==","secondaryConnectionString":"endpoint=https://mycommunicaugip4ttyls5c.communication.azure.com/;accesskey=riI+nM0UD0VTWKi0tYaHB8VYfNyElGfxgkcLVV7ZUCQSrZjPqrHr4IUhFmpYT0QQO4CCcR+ui7W7BJB+iZxclw=="}' headers: cache-control: - no-cache @@ -575,7 +575,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:05:55 GMT + - Wed, 21 Sep 2022 22:57:05 GMT expires: - '-1' pragma: @@ -593,7 +593,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -615,12 +615,12 @@ interactions: ParameterSetName: - --name --key-type --resource-group User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001/regenerateKey?api-version=2020-08-20 response: body: - string: '{"primaryKey":"j1o+ZM3aWS831v/h6gNrK8N0SKzKPf2bB9lGA7/zx0Ai/dbTwigHij1iuzNfC70mcSoj4R+YJdrNZHtUD6RzKQ==","primaryConnectionString":"endpoint=https://mycommunicas4i5mkqz3v7l.communication.azure.com/;accesskey=j1o+ZM3aWS831v/h6gNrK8N0SKzKPf2bB9lGA7/zx0Ai/dbTwigHij1iuzNfC70mcSoj4R+YJdrNZHtUD6RzKQ=="}' + string: '{"primaryKey":"w5mFCDeYxP6hEHaWG3VR+1BXozSii9OUQo+zUcvmPK13Kc0NyeIS1fgZjeuwgxvilaxQOuTajZ5x59YvtE9aaw==","primaryConnectionString":"endpoint=https://mycommunicaugip4ttyls5c.communication.azure.com/;accesskey=w5mFCDeYxP6hEHaWG3VR+1BXozSii9OUQo+zUcvmPK13Kc0NyeIS1fgZjeuwgxvilaxQOuTajZ5x59YvtE9aaw=="}' headers: cache-control: - no-cache @@ -629,7 +629,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:05:56 GMT + - Wed, 21 Sep 2022 22:57:05 GMT expires: - '-1' pragma: @@ -647,7 +647,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -667,7 +667,7 @@ interactions: ParameterSetName: - -y --name --resource-group User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001?api-version=2020-08-20 response: @@ -675,7 +675,7 @@ interactions: string: 'null' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9257ef14-ed61-4317-93e8-1d546171eb10*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967?api-version=2020-08-20 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/662d1643-2ce0-47f3-9a49-2897348b21d3*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D?api-version=2020-08-20 cache-control: - no-cache content-length: @@ -683,13 +683,13 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:05:57 GMT + - Wed, 21 Sep 2022 22:57:06 GMT etag: - - '"0000e739-0000-0700-0000-62fb6c050000"' + - '"090185f7-0000-0700-0000-632b96c30000"' expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9257ef14-ed61-4317-93e8-1d546171eb10*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967?api-version=2020-08-20 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/662d1643-2ce0-47f3-9a49-2897348b21d3*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D?api-version=2020-08-20 pragma: - no-cache strict-transport-security: @@ -699,7 +699,7 @@ interactions: x-ms-providerhub-traffic: - 'True' x-ms-ratelimit-remaining-subscription-deletes: - - '14998' + - '14999' status: code: 202 message: Accepted @@ -717,12 +717,12 @@ interactions: ParameterSetName: - -y --name --resource-group User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9257ef14-ed61-4317-93e8-1d546171eb10*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967?api-version=2020-08-20 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/662d1643-2ce0-47f3-9a49-2897348b21d3*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D?api-version=2020-08-20 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9257ef14-ed61-4317-93e8-1d546171eb10*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967","name":"9257ef14-ed61-4317-93e8-1d546171eb10*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","status":"Deleting","startTime":"2022-08-16T10:05:57.5507433Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/662d1643-2ce0-47f3-9a49-2897348b21d3*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D","name":"662d1643-2ce0-47f3-9a49-2897348b21d3*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","status":"Deleting","startTime":"2022-09-21T22:57:07.0944961Z"}' headers: cache-control: - no-cache @@ -731,9 +731,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:06:27 GMT + - Wed, 21 Sep 2022 22:57:36 GMT etag: - - '"4b00a476-0000-0800-0000-62fb6c050000"' + - '"b6014d67-0000-0800-0000-632b96c30000"' expires: - '-1' pragma: @@ -759,12 +759,12 @@ interactions: ParameterSetName: - -y --name --resource-group User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9257ef14-ed61-4317-93e8-1d546171eb10*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967?api-version=2020-08-20 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/662d1643-2ce0-47f3-9a49-2897348b21d3*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D?api-version=2020-08-20 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9257ef14-ed61-4317-93e8-1d546171eb10*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967","name":"9257ef14-ed61-4317-93e8-1d546171eb10*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","status":"Deleting","startTime":"2022-08-16T10:05:57.5507433Z"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/662d1643-2ce0-47f3-9a49-2897348b21d3*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D","name":"662d1643-2ce0-47f3-9a49-2897348b21d3*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","status":"Deleting","startTime":"2022-09-21T22:57:07.0944961Z"}' headers: cache-control: - no-cache @@ -773,9 +773,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:06:57 GMT + - Wed, 21 Sep 2022 22:58:07 GMT etag: - - '"4b00a476-0000-0800-0000-62fb6c050000"' + - '"b6014d67-0000-0800-0000-632b96c30000"' expires: - '-1' pragma: @@ -801,12 +801,12 @@ interactions: ParameterSetName: - -y --name --resource-group User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9257ef14-ed61-4317-93e8-1d546171eb10*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967?api-version=2020-08-20 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/662d1643-2ce0-47f3-9a49-2897348b21d3*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D?api-version=2020-08-20 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9257ef14-ed61-4317-93e8-1d546171eb10*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967","name":"9257ef14-ed61-4317-93e8-1d546171eb10*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","status":"Succeeded","startTime":"2022-08-16T10:05:57.5507433Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/662d1643-2ce0-47f3-9a49-2897348b21d3*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D","name":"662d1643-2ce0-47f3-9a49-2897348b21d3*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","status":"Succeeded","startTime":"2022-09-21T22:57:07.0944961Z","properties":null}' headers: cache-control: - no-cache @@ -815,9 +815,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:07:27 GMT + - Wed, 21 Sep 2022 22:58:37 GMT etag: - - '"4b00db77-0000-0800-0000-62fb6c470000"' + - '"a40869d0-0000-0700-0000-632b97050000"' expires: - '-1' pragma: @@ -847,12 +847,12 @@ interactions: ParameterSetName: - -y --name --resource-group User-Agent: - - AZURECLI/2.38.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.39.0 azsdk-python-mgmt-communication/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9257ef14-ed61-4317-93e8-1d546171eb10*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967?api-version=2020-08-20 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/662d1643-2ce0-47f3-9a49-2897348b21d3*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D?api-version=2020-08-20 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/9257ef14-ed61-4317-93e8-1d546171eb10*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967","name":"9257ef14-ed61-4317-93e8-1d546171eb10*24F84614A94FF53828360F0278A761D5912EFEF54109BFBDCB4498690D714967","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","status":"Succeeded","startTime":"2022-08-16T10:05:57.5507433Z","properties":null}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Communication/locations/WESTUS2/operationStatuses/662d1643-2ce0-47f3-9a49-2897348b21d3*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D","name":"662d1643-2ce0-47f3-9a49-2897348b21d3*B595400F3BD7C3F8828B5B767C466BB5032ED06E70A3544E8818739351F01E0D","resourceId":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest000003/providers/Microsoft.Communication/communicationServices/MyCommunica000001","status":"Succeeded","startTime":"2022-09-21T22:57:07.0944961Z","properties":null}' headers: cache-control: - no-cache @@ -861,9 +861,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:07:27 GMT + - Wed, 21 Sep 2022 22:58:37 GMT etag: - - '"4b00db77-0000-0800-0000-62fb6c470000"' + - '"a40869d0-0000-0700-0000-632b97050000"' expires: - '-1' pragma: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_create_user.yaml b/src/communication/azext_communication/tests/latest/recordings/test_create_user.yaml index 4e7d235a51b..3d5037153da 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_create_user.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_create_user.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o= x-ms-date: - - Tue, 16 Aug 2022 09:58:11 GMT + - Wed, 21 Sep 2022 22:49:25 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -29,26 +29,24 @@ interactions: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '33' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:58:13 GMT + - Wed, 21 Sep 2022 22:49:26 GMT ms-cv: - - 11DkwBKNQEG7Y8S+VbHRqQ.0 + - Wz6bmJ02SUmX7b3kzSMDhA.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095813Z-r0s9pbvvdt0w72q6sqrkc1ktpw00000005f000000002kfsc + - 09pQrYwAAAACWqR7ixQw9SbPUTLvxtOpkWVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 127ms + - 117ms status: code: 201 message: Created diff --git a/src/communication/azext_communication/tests/latest/recordings/test_delete_user.yaml b/src/communication/azext_communication/tests/latest/recordings/test_delete_user.yaml index 06e9bae5001..c70da57b1fa 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_delete_user.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_delete_user.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o= x-ms-date: - - Tue, 16 Aug 2022 09:59:47 GMT + - Wed, 21 Sep 2022 22:50:58 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -29,22 +29,20 @@ interactions: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '33' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:59:49 GMT + - Wed, 21 Sep 2022 22:50:59 GMT ms-cv: - - gFoJR4TIm0ejsosKMnxJ7Q.0 + - RBYIZtkOrEa28E6zNsQOrg.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095949Z-ue5bcnvs3t2n5ee38b8kwchyq400000000dg000000015vfh + - 0U5UrYwAAAABUywtMvZa/SpSLL41OFpqtWVZSMzExMDAwMTE2MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: @@ -64,11 +62,11 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Tue, 16 Aug 2022 09:59:48 GMT + - Wed, 21 Sep 2022 22:50:59 GMT x-ms-return-client-request-id: - 'true' method: DELETE @@ -80,22 +78,20 @@ interactions: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive date: - - Tue, 16 Aug 2022 09:59:50 GMT + - Wed, 21 Sep 2022 22:51:01 GMT ms-cv: - - XZXOKIqDzE2QUUtqG3QuOw.0 + - wfFjtAnrUk+7lmcVNvMiQA.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095949Z-p18hf8s3dx4xf8cgexx53pe93400000000dg0000000056hv + - 0VJUrYwAAAACCVMO32FmYQaw0DQW2sAB5WVZSMzExMDAwMTE1MDUzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 215ms + - 345ms status: code: 204 message: No Content diff --git a/src/communication/azext_communication/tests/latest/recordings/test_issue_access_token.yaml b/src/communication/azext_communication/tests/latest/recordings/test_issue_access_token.yaml index 33ec1ae06e3..e756b3e434f 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_issue_access_token.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_issue_access_token.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 09:59:48 GMT + - Wed, 21 Sep 2022 22:51:00 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:59:50.2517087+00:00"}}' + "expiresOn": "2022-09-22T22:51:01.8376654+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:59:50 GMT + - Wed, 21 Sep 2022 22:51:01 GMT ms-cv: - - eUR1vMVBokSAp9TYSwkWKw.0 + - 5EWy9PtezkGtl7fMXXFGiA.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095950Z-6b2s4uq0rt4yf0aehsw4te2apc00000000dg00000000wzwf + - 0VZUrYwAAAABzMqGXEU9hTqB1v8KO1k8/WVZSMzExMDAwMTE1MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 144ms + - 123ms status: code: 201 message: Created diff --git a/src/communication/azext_communication/tests/latest/recordings/test_issue_access_token_with_id.yaml b/src/communication/azext_communication/tests/latest/recordings/test_issue_access_token_with_id.yaml index 40609fa10de..9012009599f 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_issue_access_token_with_id.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_issue_access_token_with_id.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o= x-ms-date: - - Tue, 16 Aug 2022 09:59:49 GMT + - Wed, 21 Sep 2022 22:50:59 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -29,26 +29,24 @@ interactions: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '33' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:59:51 GMT + - Wed, 21 Sep 2022 22:51:01 GMT ms-cv: - - fOWnuTGPGE+mfuP3vwht5w.0 + - hRAJkVX0Lk6h+JCTL2MqUQ.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095951Z-ue5bcnvs3t2n5ee38b8kwchyq400000000dg000000015w66 + - 0VZUrYwAAAACtZXj7MlG7TrcCvCx06loLWVZSMzExMDAwMTE1MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 119ms + - 114ms status: code: 201 message: Created @@ -66,44 +64,40 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - sZHRO4JkAmw3HcI1PyxrC5twHvkHIWjyMLVIkauXKRA= x-ms-date: - - Tue, 16 Aug 2022 09:59:50 GMT + - Wed, 21 Sep 2022 22:51:00 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2022-06-01 response: body: - string: '{"token": "sanitized", "expiresOn": "2022-08-17T09:59:52.5354481+00:00"}' + string: '{"token": "sanitized", "expiresOn": "2022-09-22T22:51:02.4682196+00:00"}' headers: - accept-ranges: - - bytes api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '72' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:59:52 GMT + - Wed, 21 Sep 2022 22:51:02 GMT ms-cv: - - JEM0enPPl0y624oaGjgvkw.0 + - hU72sSwYtkeQtjb7lQFtTw.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095952Z-r0s9pbvvdt0w72q6sqrkc1ktpw00000005fg00000001uuq3 + - 0VZUrYwAAAAA+cD70ED69TqSu7DazFbvjWVZSMzExMDAwMTE2MDMxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 184ms + - 183ms status: code: 200 message: OK diff --git a/src/communication/azext_communication/tests/latest/recordings/test_issue_access_token_with_multiple_scopes.yaml b/src/communication/azext_communication/tests/latest/recordings/test_issue_access_token_with_multiple_scopes.yaml index a75696fba75..b09ab52eb43 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_issue_access_token_with_multiple_scopes.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_issue_access_token_with_multiple_scopes.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - hlYiA5kT1yt3LwEdaupQDHzQEfodx+8svsStB5uolgw= x-ms-date: - - Tue, 16 Aug 2022 09:59:47 GMT + - Wed, 21 Sep 2022 22:51:00 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T09:59:49.7131237+00:00"}}' + "expiresOn": "2022-09-22T22:51:02.0919384+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 09:59:49 GMT + - Wed, 21 Sep 2022 22:51:01 GMT ms-cv: - - /GbH2hz02EWxkzskbH4bkw.0 + - 9xxj1jIEU0e2gVWWyFFBUw.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T095949Z-0613xdc17h3t90gs2g8fdg5r64000000009g00000002q1h3 + - 0VZUrYwAAAABhRbuA8nwvS4e26lMuojMNWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 278ms + - 120ms status: code: 201 message: Created diff --git a/src/communication/azext_communication/tests/latest/recordings/test_list_phonenumbers.yaml b/src/communication/azext_communication/tests/latest/recordings/test_list_phonenumbers.yaml index caec95d4bbf..b626f9cd6e0 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_list_phonenumbers.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_list_phonenumbers.yaml @@ -14,7 +14,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:02:59 GMT + - Wed, 21 Sep 2022 22:54:11 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -34,25 +34,25 @@ interactions: content-length: - '0' date: - - Tue, 16 Aug 2022 10:03:05 GMT + - Wed, 21 Sep 2022 22:54:14 GMT location: - - /availablePhoneNumbers/searchResults/d071e23a-614e-40f1-b9bb-f1b8878e7fe7?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/ce73b020-eaa0-4814-9e87-23125b50db08?api-version=2021-03-07 ms-cv: - - JNp1ANWAJkO2kPrqNKBU5g.0 + - UGGDwj0JuEqaew5vE4NZUw.0 operation-id: - - search_d071e23a-614e-40f1-b9bb-f1b8878e7fe7 + - search_ce73b020-eaa0-4814-9e87-23125b50db08 operation-location: - - /phoneNumbers/operations/search_d071e23a-614e-40f1-b9bb-f1b8878e7fe7?api-version=2021-03-07 + - /phoneNumbers/operations/search_ce73b020-eaa0-4814-9e87-23125b50db08?api-version=2021-03-07 search-id: - - d071e23a-614e-40f1-b9bb-f1b8878e7fe7 + - ce73b020-eaa0-4814-9e87-23125b50db08 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0VWv7YgAAAACeTZ5riaG7T4HHNGJvM23uWVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0FZYrYwAAAADmQ9U3YsqyRJUuhqTFPPEKWVZSMzExMDAwMTE2MDMzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 4004ms + - 2263ms status: code: 202 message: Accepted @@ -66,7 +66,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:03:34 GMT + - Wed, 21 Sep 2022 22:54:44 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -74,12 +74,12 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_d071e23a-614e-40f1-b9bb-f1b8878e7fe7?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_ce73b020-eaa0-4814-9e87-23125b50db08?api-version=2021-03-07 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/d071e23a-614e-40f1-b9bb-f1b8878e7fe7?api-version=2021-03-07", - "createdDateTime": "2022-08-16T10:03:05.6267011+00:00", "id": "sanitized", + "/availablePhoneNumbers/searchResults/ce73b020-eaa0-4814-9e87-23125b50db08?api-version=2021-03-07", + "createdDateTime": "2022-09-21T22:54:15.2204631+00:00", "id": "sanitized", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: access-control-expose-headers: @@ -89,21 +89,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:03:35 GMT + - Wed, 21 Sep 2022 22:54:46 GMT location: - - /availablePhoneNumbers/searchResults/d071e23a-614e-40f1-b9bb-f1b8878e7fe7?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/ce73b020-eaa0-4814-9e87-23125b50db08?api-version=2021-03-07 ms-cv: - - nJUR3FD4g0O1c1aAAFx01g.0 + - 51xqtkdXXUGZ0yoqa/UJeg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0eGv7YgAAAAAeNccW+PimT77G0CVsSZ6XWVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0NZYrYwAAAADpv7VqwQY7ToD5XwtiVxs/WVZSMzExMDAwMTE2MDMzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 435ms + - 265ms status: code: 200 message: OK @@ -118,7 +118,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:03:35 GMT + - Wed, 21 Sep 2022 22:54:44 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -126,39 +126,39 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/d071e23a-614e-40f1-b9bb-f1b8878e7fe7?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/ce73b020-eaa0-4814-9e87-23125b50db08?api-version=2021-03-07 response: body: - string: '{"searchId": "d071e23a-614e-40f1-b9bb-f1b8878e7fe7", "phoneNumbers": + string: '{"searchId": "ce73b020-eaa0-4814-9e87-23125b50db08", "phoneNumbers": ["sanitized"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2022-08-16T10:19:07.3793843+00:00"}' + "2022-09-21T23:10:16.7882688+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:03:36 GMT + - Wed, 21 Sep 2022 22:54:48 GMT ms-cv: - - s1cp4Qgi3kCalkgpv6ahbA.0 + - JfjazhlJq0u6J6wcVJJK5A.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0eGv7YgAAAADFGvBuRhH/ToV7Dm3muXbdWVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0NpYrYwAAAACd1kQD6lJxR7DECnLzGg+QWVZSMzExMDAwMTE2MDMzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 1098ms + - 1918ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "d071e23a-614e-40f1-b9bb-f1b8878e7fe7"}' + body: '{"searchId": "ce73b020-eaa0-4814-9e87-23125b50db08"}' headers: Accept: - application/json @@ -171,11 +171,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:03:36 GMT + - Wed, 21 Sep 2022 22:54:46 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - - Vpmsi4K+24MsWNqaNmRpokcTvXGVH3wCRTgjYqGfmfQ= + - 0hyj5wxdUFB4HBID+namF40k3XgJciCY9rLNrbcdzgA= x-ms-return-client-request-id: - 'true' method: POST @@ -191,23 +191,23 @@ interactions: content-length: - '0' date: - - Tue, 16 Aug 2022 10:03:39 GMT + - Wed, 21 Sep 2022 22:54:49 GMT ms-cv: - - FSLBzs3uHk2Oacyh+ZymAQ.0 + - cgcZqY4BTk+FZHy5n/+xAw.0 operation-id: - - purchase_d071e23a-614e-40f1-b9bb-f1b8878e7fe7 + - purchase_ce73b020-eaa0-4814-9e87-23125b50db08 operation-location: - - /phoneNumbers/operations/purchase_d071e23a-614e-40f1-b9bb-f1b8878e7fe7?api-version=2021-03-07 + - /phoneNumbers/operations/purchase_ce73b020-eaa0-4814-9e87-23125b50db08?api-version=2021-03-07 purchase-id: - - d071e23a-614e-40f1-b9bb-f1b8878e7fe7 + - ce73b020-eaa0-4814-9e87-23125b50db08 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0eWv7YgAAAAB6Gnc72A+fT4KHR4p9y4hSWVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0OJYrYwAAAAB4Dvg2FhZOSqyrLfMh7rE4WVZSMzExMDAwMTE2MDMzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 1995ms + - 1777ms status: code: 202 message: Accepted @@ -221,7 +221,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:04:08 GMT + - Wed, 21 Sep 2022 22:55:18 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -229,11 +229,11 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d071e23a-614e-40f1-b9bb-f1b8878e7fe7?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_ce73b020-eaa0-4814-9e87-23125b50db08?api-version=2021-03-07 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2022-08-16T10:03:05.6267011+00:00", "id": "sanitized", + null, "createdDateTime": "2022-09-21T22:54:15.2204631+00:00", "id": "sanitized", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: @@ -241,19 +241,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:04:10 GMT + - Wed, 21 Sep 2022 22:55:19 GMT ms-cv: - - NIf8q8diCESbEklpyCBjvQ.0 + - 2uj5VVC1rEeIdUvC18TpSA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0mWv7YgAAAACnJf/UOQdJT7jNc7OZjxX+WVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0WJYrYwAAAABCY8VNiiP5RrHZ9C5wgwdPWVZSMzExMDAwMTE2MDMzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 466ms + - 274ms status: code: 200 message: OK @@ -268,9 +268,10 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:04:09 GMT + - Wed, 21 Sep 2022 22:55:19 GMT User-Agent: - - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 + (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-return-client-request-id: @@ -282,29 +283,27 @@ interactions: string: '{"phoneNumbers": [{"id": "sanitized", "phoneNumber": "sanitized", "countryCode": "US", "phoneNumberType": "tollFree", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "assignmentType": "application", "purchaseDate": - "2022-08-16T10:04:02.0257701+00:00", "cost": {"amount": 2.0, "currencyCode": + "2022-09-21T22:55:05.9903629+00:00", "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}}]}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:04:14 GMT + - Wed, 21 Sep 2022 22:55:23 GMT ms-cv: - - Fj8/qnFgDEmcnEDe6TJ9og.0 + - auwdsrUFv0OVN2CQFHPs/Q.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100411Z-r0s9pbvvdt0w72q6sqrkc1ktpw00000005fg00000001wyzz + - 0WJYrYwAAAADk5KpSP3MWS6ZPds7ppfoqWVZSMzExMDAwMTE1MDE3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 3188ms + - 2814ms status: code: 200 message: OK diff --git a/src/communication/azext_communication/tests/latest/recordings/test_phonenumber_list.yaml b/src/communication/azext_communication/tests/latest/recordings/test_phonenumber_list.yaml index d87b8c3846e..4c538cbdfb2 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_phonenumber_list.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_phonenumber_list.yaml @@ -14,7 +14,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:02:59 GMT + - Wed, 21 Sep 2022 22:54:11 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -34,25 +34,25 @@ interactions: content-length: - '0' date: - - Tue, 16 Aug 2022 10:03:06 GMT + - Wed, 21 Sep 2022 22:54:16 GMT location: - - /availablePhoneNumbers/searchResults/0d5d4cad-4386-42e5-8490-1ecebaaeeab4?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/4c248f65-bcc1-4b81-9993-8cb5daf91754?api-version=2021-03-07 ms-cv: - - RQ4f1aWn3UyPGdjnXXJcnQ.0 + - SIlQnRenCEO5zpZhPSYRjw.0 operation-id: - - search_0d5d4cad-4386-42e5-8490-1ecebaaeeab4 + - search_4c248f65-bcc1-4b81-9993-8cb5daf91754 operation-location: - - /phoneNumbers/operations/search_0d5d4cad-4386-42e5-8490-1ecebaaeeab4?api-version=2021-03-07 + - /phoneNumbers/operations/search_4c248f65-bcc1-4b81-9993-8cb5daf91754?api-version=2021-03-07 search-id: - - 0d5d4cad-4386-42e5-8490-1ecebaaeeab4 + - 4c248f65-bcc1-4b81-9993-8cb5daf91754 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0VWv7YgAAAADoCbObVWMYRY9nEAPN7lRBWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0FJYrYwAAAABcKnRnWSr4Sq04b1oHHkVUWVZSMzExMDAwMTE2MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 4672ms + - 3718ms status: code: 202 message: Accepted @@ -66,7 +66,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:03:35 GMT + - Wed, 21 Sep 2022 22:54:45 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -74,12 +74,12 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_0d5d4cad-4386-42e5-8490-1ecebaaeeab4?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_4c248f65-bcc1-4b81-9993-8cb5daf91754?api-version=2021-03-07 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/0d5d4cad-4386-42e5-8490-1ecebaaeeab4?api-version=2021-03-07", - "createdDateTime": "2022-08-16T10:03:06.255795+00:00", "id": "sanitized", + "/availablePhoneNumbers/searchResults/4c248f65-bcc1-4b81-9993-8cb5daf91754?api-version=2021-03-07", + "createdDateTime": "2022-09-21T22:54:15.9380943+00:00", "id": "sanitized", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: access-control-expose-headers: @@ -89,21 +89,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:03:37 GMT + - Wed, 21 Sep 2022 22:54:46 GMT location: - - /availablePhoneNumbers/searchResults/0d5d4cad-4386-42e5-8490-1ecebaaeeab4?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/4c248f65-bcc1-4b81-9993-8cb5daf91754?api-version=2021-03-07 ms-cv: - - Iyer8+C8xEmgzHF+c2TdsA.0 + - Jze063QwvEm6nokubfS+tA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0eGv7YgAAAAD9OELzbL6FQrSFeezqnOw2WVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0NpYrYwAAAABv+5YRUupiQoIen9LHVYT9WVZSMzExMDAwMTE2MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 480ms + - 567ms status: code: 200 message: OK @@ -118,7 +118,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:03:35 GMT + - Wed, 21 Sep 2022 22:54:46 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -126,39 +126,39 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/0d5d4cad-4386-42e5-8490-1ecebaaeeab4?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/4c248f65-bcc1-4b81-9993-8cb5daf91754?api-version=2021-03-07 response: body: - string: '{"searchId": "0d5d4cad-4386-42e5-8490-1ecebaaeeab4", "phoneNumbers": + string: '{"searchId": "4c248f65-bcc1-4b81-9993-8cb5daf91754", "phoneNumbers": ["sanitized"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2022-08-16T10:19:08.6849195+00:00"}' + "2022-09-21T23:10:18.8573282+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:03:38 GMT + - Wed, 21 Sep 2022 22:54:47 GMT ms-cv: - - /c3H3J2QxU2nZZPDYod3zw.0 + - EF3Jn7+iZUWVdKBj1ACGhA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0eWv7YgAAAAAUdzqn/AwiSaiuo1XSwULKWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0N5YrYwAAAADABJiKQc4UTLyjdR9KdaByWVZSMzExMDAwMTE2MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 1184ms + - 1282ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "0d5d4cad-4386-42e5-8490-1ecebaaeeab4"}' + body: '{"searchId": "4c248f65-bcc1-4b81-9993-8cb5daf91754"}' headers: Accept: - application/json @@ -171,11 +171,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:03:37 GMT + - Wed, 21 Sep 2022 22:54:47 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - - TmqDDYLXl38UpeqVJfkdBx2bma+yyPj3yfp0TcmDkMQ= + - mZc2vf3evD/SR4DKm1XWB2niZ5XYeruttZoXKR6FS90= x-ms-return-client-request-id: - 'true' method: POST @@ -191,23 +191,23 @@ interactions: content-length: - '0' date: - - Tue, 16 Aug 2022 10:03:40 GMT + - Wed, 21 Sep 2022 22:54:50 GMT ms-cv: - - blKi99R4jEij2H/0IUqvCQ.0 + - 9fypj/mVJkyhLeeshiqPJg.0 operation-id: - - purchase_0d5d4cad-4386-42e5-8490-1ecebaaeeab4 + - purchase_4c248f65-bcc1-4b81-9993-8cb5daf91754 operation-location: - - /phoneNumbers/operations/purchase_0d5d4cad-4386-42e5-8490-1ecebaaeeab4?api-version=2021-03-07 + - /phoneNumbers/operations/purchase_4c248f65-bcc1-4b81-9993-8cb5daf91754?api-version=2021-03-07 purchase-id: - - 0d5d4cad-4386-42e5-8490-1ecebaaeeab4 + - 4c248f65-bcc1-4b81-9993-8cb5daf91754 strict-transport-security: - max-age=2592000 x-azure-ref: - - 0emv7YgAAAADKq5ZE09e7RLFyMmXyxmq3WVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0OJYrYwAAAAALlPmKaufCT4WNZR9d1MdRWVZSMzExMDAwMTE2MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 2096ms + - 2408ms status: code: 202 message: Accepted @@ -221,7 +221,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:04:09 GMT + - Wed, 21 Sep 2022 22:55:20 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -229,11 +229,11 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_0d5d4cad-4386-42e5-8490-1ecebaaeeab4?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_4c248f65-bcc1-4b81-9993-8cb5daf91754?api-version=2021-03-07 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2022-08-16T10:03:06.255795+00:00", "id": "sanitized", + null, "createdDateTime": "2022-09-21T22:54:15.9380943+00:00", "id": "sanitized", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: @@ -241,19 +241,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:04:11 GMT + - Wed, 21 Sep 2022 22:55:21 GMT ms-cv: - - OJ+EicyA5UK9p2iqafAEsw.0 + - cTppw1BLhEWzje01L8/PPA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0mmv7YgAAAAC3A1t9JOmZSqKaQdT9LL4BWVZSMzExMDAwMTE1MDM3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0WZYrYwAAAAC29ucja2vuRYwu5DCg8Wg2WVZSMzExMDAwMTE2MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 612ms + - 535ms status: code: 200 message: OK @@ -268,9 +268,10 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:04:10 GMT + - Wed, 21 Sep 2022 22:55:20 GMT User-Agent: - - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 + (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-return-client-request-id: @@ -282,29 +283,27 @@ interactions: string: '{"phoneNumbers": [{"id": "sanitized", "phoneNumber": "sanitized", "countryCode": "US", "phoneNumberType": "tollFree", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "assignmentType": "application", "purchaseDate": - "2022-08-16T10:03:56.1608173+00:00", "cost": {"amount": 2.0, "currencyCode": + "2022-09-21T22:55:05.0648104+00:00", "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}}]}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:04:15 GMT + - Wed, 21 Sep 2022 22:55:23 GMT ms-cv: - - a6tSvLcitUWbmN+q7PdSSA.0 + - nHVBrMOLk0S1ID5EdUJwEQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100411Z-r0s9pbvvdt0w72q6sqrkc1ktpw00000005fg00000001wz7f + - 0WpYrYwAAAACD8FNqNP2fT6kzFV61F2RCWVZSMzExMDAwMTE2MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 3441ms + - 1912ms status: code: 200 message: OK diff --git a/src/communication/azext_communication/tests/latest/recordings/test_phonenumber_show.yaml b/src/communication/azext_communication/tests/latest/recordings/test_phonenumber_show.yaml index ae8da5eafd9..cca7f797677 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_phonenumber_show.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_phonenumber_show.yaml @@ -14,7 +14,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:03:00 GMT + - Wed, 21 Sep 2022 22:54:11 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -34,25 +34,25 @@ interactions: content-length: - '0' date: - - Tue, 16 Aug 2022 10:03:06 GMT + - Wed, 21 Sep 2022 22:54:17 GMT location: - - /availablePhoneNumbers/searchResults/daee3c02-ff9c-4471-affd-6ecefbc5634d?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/0d0aee54-7b64-4d94-85e4-b00f0139560f?api-version=2021-03-07 ms-cv: - - lF6OjIXTiUygJzR29Ygt+A.0 + - h8u30GxlsUG1C63iLgKcYQ.0 operation-id: - - search_daee3c02-ff9c-4471-affd-6ecefbc5634d + - search_0d0aee54-7b64-4d94-85e4-b00f0139560f operation-location: - - /phoneNumbers/operations/search_daee3c02-ff9c-4471-affd-6ecefbc5634d?api-version=2021-03-07 + - /phoneNumbers/operations/search_0d0aee54-7b64-4d94-85e4-b00f0139560f?api-version=2021-03-07 search-id: - - daee3c02-ff9c-4471-affd-6ecefbc5634d + - 0d0aee54-7b64-4d94-85e4-b00f0139560f strict-transport-security: - max-age=2592000 x-azure-ref: - - 0VWv7YgAAAABQuvExpPAqSrvAB196hovGWVZSMzExMDAwMTE2MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0FJYrYwAAAAD7Bnq3p0w8RqpfiuvoFGSEWVZSMzExMDAwMTE2MDIzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 4808ms + - 5255ms status: code: 202 message: Accepted @@ -66,7 +66,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:03:35 GMT + - Wed, 21 Sep 2022 22:54:47 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -74,12 +74,12 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_daee3c02-ff9c-4471-affd-6ecefbc5634d?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_0d0aee54-7b64-4d94-85e4-b00f0139560f?api-version=2021-03-07 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/daee3c02-ff9c-4471-affd-6ecefbc5634d?api-version=2021-03-07", - "createdDateTime": "2022-08-16T10:03:06.6005275+00:00", "id": "sanitized", + "/availablePhoneNumbers/searchResults/0d0aee54-7b64-4d94-85e4-b00f0139560f?api-version=2021-03-07", + "createdDateTime": "2022-09-21T22:54:17.8978345+00:00", "id": "sanitized", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: access-control-expose-headers: @@ -89,21 +89,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:03:36 GMT + - Wed, 21 Sep 2022 22:54:48 GMT location: - - /availablePhoneNumbers/searchResults/daee3c02-ff9c-4471-affd-6ecefbc5634d?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/0d0aee54-7b64-4d94-85e4-b00f0139560f?api-version=2021-03-07 ms-cv: - - PPPCxoNAKE6KXxsAco2uaA.0 + - /92x6rHTmEWcmunRc8ybOw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0eWv7YgAAAACqN/8beqHCTYIol2ZXz0mmWVZSMzExMDAwMTE2MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0OJYrYwAAAABRgxOn4i5hTb4fhRVnHrAvWVZSMzExMDAwMTE2MDIzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 346ms + - 525ms status: code: 200 message: OK @@ -118,7 +118,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:03:36 GMT + - Wed, 21 Sep 2022 22:54:48 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -126,39 +126,39 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/daee3c02-ff9c-4471-affd-6ecefbc5634d?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/0d0aee54-7b64-4d94-85e4-b00f0139560f?api-version=2021-03-07 response: body: - string: '{"searchId": "daee3c02-ff9c-4471-affd-6ecefbc5634d", "phoneNumbers": + string: '{"searchId": "0d0aee54-7b64-4d94-85e4-b00f0139560f", "phoneNumbers": ["sanitized"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2022-08-16T10:19:09.1577578+00:00"}' + "2022-09-21T23:10:19.7881329+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:03:38 GMT + - Wed, 21 Sep 2022 22:54:49 GMT ms-cv: - - V77idBuuoku0FgcpaoVeKQ.0 + - 3y1ftJnWUUeUHAW52R9kFw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0eWv7YgAAAADcwu0O0O2zQI96in+68Eu6WVZSMzExMDAwMTE2MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0OZYrYwAAAADj4HrBfw5ZTYHCB3hVPPtWWVZSMzExMDAwMTE2MDIzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 1220ms + - 1174ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "daee3c02-ff9c-4471-affd-6ecefbc5634d"}' + body: '{"searchId": "0d0aee54-7b64-4d94-85e4-b00f0139560f"}' headers: Accept: - application/json @@ -171,11 +171,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:03:37 GMT + - Wed, 21 Sep 2022 22:54:49 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - - mW6DOLK8/P/1iH7cJUnUzXnPlqeR/3yLhvspY1J+hk4= + - w2GfWjb4j8qSLUplRz8lX8KKqS0jZXSYXHGeDQG6XdY= x-ms-return-client-request-id: - 'true' method: POST @@ -191,23 +191,23 @@ interactions: content-length: - '0' date: - - Tue, 16 Aug 2022 10:03:40 GMT + - Wed, 21 Sep 2022 22:54:51 GMT ms-cv: - - ySa4BpVCCk+gwvbFpf9mhg.0 + - TRBuC0ehLEiJ66tP1tnooA.0 operation-id: - - purchase_daee3c02-ff9c-4471-affd-6ecefbc5634d + - purchase_0d0aee54-7b64-4d94-85e4-b00f0139560f operation-location: - - /phoneNumbers/operations/purchase_daee3c02-ff9c-4471-affd-6ecefbc5634d?api-version=2021-03-07 + - /phoneNumbers/operations/purchase_0d0aee54-7b64-4d94-85e4-b00f0139560f?api-version=2021-03-07 purchase-id: - - daee3c02-ff9c-4471-affd-6ecefbc5634d + - 0d0aee54-7b64-4d94-85e4-b00f0139560f strict-transport-security: - max-age=2592000 x-azure-ref: - - 0emv7YgAAAAAVb4dfViWbRrewhF8uOaj3WVZSMzExMDAwMTE2MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0OpYrYwAAAADgSRFHbFHqTaWb4EnfIZkmWVZSMzExMDAwMTE2MDIzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 1949ms + - 2236ms status: code: 202 message: Accepted @@ -221,7 +221,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:04:09 GMT + - Wed, 21 Sep 2022 22:55:21 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -229,11 +229,11 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_daee3c02-ff9c-4471-affd-6ecefbc5634d?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_0d0aee54-7b64-4d94-85e4-b00f0139560f?api-version=2021-03-07 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2022-08-16T10:03:06.6005275+00:00", "id": "sanitized", + null, "createdDateTime": "2022-09-21T22:54:17.8978345+00:00", "id": "sanitized", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: @@ -241,19 +241,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:04:11 GMT + - Wed, 21 Sep 2022 22:55:23 GMT ms-cv: - - iOOhq3V0m0ammIf6EC7YQw.0 + - MUk2WqNjzUm3lJBm8N6/Iw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0mmv7YgAAAACWnyi3KhGEQrorrKP/fRTiWVZSMzExMDAwMTE2MDQ3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0WpYrYwAAAAD4qL8IMGroR57vN405g9+GWVZSMzExMDAwMTE2MDIzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 379ms + - 579ms status: code: 200 message: OK @@ -268,9 +268,10 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:04:09 GMT + - Wed, 21 Sep 2022 22:55:22 GMT User-Agent: - - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 + (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-return-client-request-id: @@ -281,29 +282,27 @@ interactions: body: string: '{"id": "sanitized", "phoneNumber": "sanitized", "countryCode": "US", "phoneNumberType": "tollFree", "capabilities": {"calling": "inbound", "sms": - "inbound+outbound"}, "assignmentType": "application", "purchaseDate": "2022-08-16T10:03:56.35774+00:00", + "inbound+outbound"}, "assignmentType": "application", "purchaseDate": "2022-09-21T22:55:10.1251829+00:00", "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:04:14 GMT + - Wed, 21 Sep 2022 22:55:26 GMT ms-cv: - - Tu+JS/GbtEmrscFDHxK2dg.0 + - HO2WiQl/okKpKlupSOwCIQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100411Z-z5w8hfkph50p97tr7b7ay90rp000000000bg00000001ye36 + - 0W5YrYwAAAAAhPli54z9PQo2IrlLBm5UiWVZSMzExMDAwMTE1MDIxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 2391ms + - 2525ms status: code: 200 message: OK diff --git a/src/communication/azext_communication/tests/latest/recordings/test_revoke_access_tokens.yaml b/src/communication/azext_communication/tests/latest/recordings/test_revoke_access_tokens.yaml index a9d24cb3879..f86ea9024ca 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_revoke_access_tokens.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_revoke_access_tokens.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o= x-ms-date: - - Tue, 16 Aug 2022 10:01:23 GMT + - Wed, 21 Sep 2022 22:52:34 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -29,26 +29,24 @@ interactions: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '33' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:01:25 GMT + - Wed, 21 Sep 2022 22:52:36 GMT ms-cv: - - P3DICJT/b061SkQGdZt8AQ.0 + - 32sV8CHEWE64d8+mR+HUEg.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100125Z-zvdmwacghh4c97ggppewnyshxn00000000e000000003rud9 + - 0tJUrYwAAAACrya4r+M5uQokei/waAgfoWVZSMzExMDAwMTE2MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 120ms + - 121ms status: code: 201 message: Created @@ -64,11 +62,11 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-date: - - Tue, 16 Aug 2022 10:01:24 GMT + - Wed, 21 Sep 2022 22:52:35 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -80,22 +78,20 @@ interactions: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive date: - - Tue, 16 Aug 2022 10:01:26 GMT + - Wed, 21 Sep 2022 22:52:36 GMT ms-cv: - - aZ0HuPq9skuoVOAKj+UBPA.0 + - fw8V9+G0EE2JqGgADsENYg.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100125Z-vucxhh51rx5mv27fvss3h7q1kc00000000f000000000503s + - 0tJUrYwAAAADbDQw33oXNQLkX7ijBwfM4WVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 113ms + - 109ms status: code: 204 message: No Content diff --git a/src/communication/azext_communication/tests/latest/recordings/test_send_sms.yaml b/src/communication/azext_communication/tests/latest/recordings/test_send_sms.yaml index 67208e49259..1dffe3452c5 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_send_sms.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_send_sms.yaml @@ -14,7 +14,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:05:47 GMT + - Wed, 21 Sep 2022 22:57:01 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -31,30 +31,28 @@ interactions: - Location,Operation-Location,operation-id,search-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-length: - '0' date: - - Tue, 16 Aug 2022 10:05:53 GMT + - Wed, 21 Sep 2022 22:57:08 GMT location: - - /availablePhoneNumbers/searchResults/a3738768-bd5c-41de-9c18-fec26fc75b92?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/d47ca31f-7f21-485c-89db-87b86cf5ee9f?api-version=2021-03-07 ms-cv: - - BFLENTcfAEGV1Ku7W1uBhg.0 + - 5RTMhgERDkOY3vp9DutsKw.0 operation-id: - - search_a3738768-bd5c-41de-9c18-fec26fc75b92 + - search_d47ca31f-7f21-485c-89db-87b86cf5ee9f operation-location: - - /phoneNumbers/operations/search_a3738768-bd5c-41de-9c18-fec26fc75b92?api-version=2021-03-07 + - /phoneNumbers/operations/search_d47ca31f-7f21-485c-89db-87b86cf5ee9f?api-version=2021-03-07 search-id: - - a3738768-bd5c-41de-9c18-fec26fc75b92 + - d47ca31f-7f21-485c-89db-87b86cf5ee9f strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100549Z-0613xdc17h3t90gs2g8fdg5r64000000009g00000002str8 + - 0vpYrYwAAAAAGByo1EqYiRI3cNrFrev/6WVZSMzExMDAwMTE2MDA5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 3435ms + - 6045ms status: code: 202 message: Accepted @@ -68,7 +66,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:06:21 GMT + - Wed, 21 Sep 2022 22:57:38 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -76,38 +74,36 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_a3738768-bd5c-41de-9c18-fec26fc75b92?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_d47ca31f-7f21-485c-89db-87b86cf5ee9f?api-version=2021-03-07 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/a3738768-bd5c-41de-9c18-fec26fc75b92?api-version=2021-03-07", - "createdDateTime": "2022-08-16T10:05:52.5549922+00:00", "id": "search_a3738768-bd5c-41de-9c18-fec26fc75b92", + "/availablePhoneNumbers/searchResults/d47ca31f-7f21-485c-89db-87b86cf5ee9f?api-version=2021-03-07", + "createdDateTime": "2022-09-21T22:57:08.6391553+00:00", "id": "search_d47ca31f-7f21-485c-89db-87b86cf5ee9f", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: access-control-expose-headers: - Location api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:06:23 GMT + - Wed, 21 Sep 2022 22:57:39 GMT location: - - /availablePhoneNumbers/searchResults/a3738768-bd5c-41de-9c18-fec26fc75b92?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/d47ca31f-7f21-485c-89db-87b86cf5ee9f?api-version=2021-03-07 ms-cv: - - Sm1eAb4sskOwoEIHpVnlZA.0 + - 5okLV+Yl6E2bE218Xin22g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100623Z-0613xdc17h3t90gs2g8fdg5r64000000009g00000002t23z + - 045YrYwAAAADZAyViQ7reR7EQLF4jZbh4WVZSMzExMDAwMTE2MDA5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 446ms + - 517ms status: code: 200 message: OK @@ -122,7 +118,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:06:22 GMT + - Wed, 21 Sep 2022 22:57:38 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -130,41 +126,39 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/a3738768-bd5c-41de-9c18-fec26fc75b92?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/d47ca31f-7f21-485c-89db-87b86cf5ee9f?api-version=2021-03-07 response: body: - string: '{"searchId": "a3738768-bd5c-41de-9c18-fec26fc75b92", "phoneNumbers": - ["+18447309009"], "phoneNumberType": "tollFree", "assignmentType": "application", + string: '{"searchId": "d47ca31f-7f21-485c-89db-87b86cf5ee9f", "phoneNumbers": + ["+18332044360"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2022-08-16T10:21:55.2829994+00:00"}' + "2022-09-21T23:13:10.6136877+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:06:25 GMT + - Wed, 21 Sep 2022 22:57:41 GMT ms-cv: - - GXuhNsnBNUChiTGpfWIebQ.0 + - 0D11dcDrlUSuSQCnpngVfw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100623Z-0613xdc17h3t90gs2g8fdg5r64000000009g00000002t292 + - 05JYrYwAAAAAUJQn1s1TIRZyr0io7JsyeWVZSMzExMDAwMTE2MDA5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 1286ms + - 1122ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "a3738768-bd5c-41de-9c18-fec26fc75b92"}' + body: '{"searchId": "d47ca31f-7f21-485c-89db-87b86cf5ee9f"}' headers: Accept: - application/json @@ -177,11 +171,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:06:23 GMT + - Wed, 21 Sep 2022 22:57:40 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - - Oja5Kw+Qiu3UOFL24A+1fLSVzdqQ+oCJoNZPX/cna4I= + - G7bDsZ0awtmg+nAH91Xnv5hnK34dWsfuER0bChacSZE= x-ms-return-client-request-id: - 'true' method: POST @@ -194,28 +188,26 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-length: - '0' date: - - Tue, 16 Aug 2022 10:06:27 GMT + - Wed, 21 Sep 2022 22:57:43 GMT ms-cv: - - pq9d58+OQ0Ct9pNaK28XFw.0 + - DdPm7j7LpEKY19Jq9PNiKA.0 operation-id: - - purchase_a3738768-bd5c-41de-9c18-fec26fc75b92 + - purchase_d47ca31f-7f21-485c-89db-87b86cf5ee9f operation-location: - - /phoneNumbers/operations/purchase_a3738768-bd5c-41de-9c18-fec26fc75b92?api-version=2021-03-07 + - /phoneNumbers/operations/purchase_d47ca31f-7f21-485c-89db-87b86cf5ee9f?api-version=2021-03-07 purchase-id: - - a3738768-bd5c-41de-9c18-fec26fc75b92 + - d47ca31f-7f21-485c-89db-87b86cf5ee9f strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100625Z-0613xdc17h3t90gs2g8fdg5r64000000009g00000002t2rc + - 05ZYrYwAAAAAeAilr6MjzS51T3ZJ854JsWVZSMzExMDAwMTE2MDA5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 2126ms + - 2444ms status: code: 202 message: Accepted @@ -229,7 +221,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:06:55 GMT + - Wed, 21 Sep 2022 22:58:12 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -237,33 +229,31 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_a3738768-bd5c-41de-9c18-fec26fc75b92?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d47ca31f-7f21-485c-89db-87b86cf5ee9f?api-version=2021-03-07 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2022-08-16T10:05:52.5549922+00:00", "id": "purchase_a3738768-bd5c-41de-9c18-fec26fc75b92", + null, "createdDateTime": "2022-09-21T22:57:08.6391553+00:00", "id": "purchase_d47ca31f-7f21-485c-89db-87b86cf5ee9f", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:06:58 GMT + - Wed, 21 Sep 2022 22:58:14 GMT ms-cv: - - 0ZuusCTkgE+8GFIzuF8cXg.0 + - HuJEA9gI/kWQ3c4s8fqZdg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100657Z-0613xdc17h3t90gs2g8fdg5r64000000009g00000002tbky + - 0BZcrYwAAAADpQyMMaZOMR7p9WZ44TjjAWVZSMzExMDAwMTE2MDA5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 554ms + - 539ms status: code: 200 message: OK @@ -284,11 +274,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:06:56 GMT + - Wed, 21 Sep 2022 22:58:13 GMT User-Agent: - - azsdk-python-communication-sms/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-sms/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - - 5g9xjbm/XI5H5On9vB0GiIpy+mQye2e6PmGJQ2PyTsg= + - BE9PuU7RvPwvzXdnUI37F2mITuo2bWmSRlL1ZoN3ZXg= x-ms-return-client-request-id: - 'true' method: POST @@ -300,24 +290,22 @@ interactions: headers: api-supported-versions: - 2020-07-20-preview1, 2020-08-20-preview, 2021-03-07 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:06:59 GMT + - Wed, 21 Sep 2022 22:58:14 GMT ms-cv: - - yAyevJDWQEGQPKB0xmGuTA.0 + - 4nBC4XECW0mEBFOrSdmB5w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100658Z-z5w8hfkph50p97tr7b7ay90rp000000000dg000000000ybq + - 0BpcrYwAAAAD/Zty/j27tR65hcarwxC8MWVZSMzExMDAwMTE1MDExADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 335ms + - 173ms status: code: 202 message: Accepted diff --git a/src/communication/azext_communication/tests/latest/recordings/test_send_sms_n_recipients.yaml b/src/communication/azext_communication/tests/latest/recordings/test_send_sms_n_recipients.yaml index 0767d346a66..27a5551d119 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_send_sms_n_recipients.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_send_sms_n_recipients.yaml @@ -14,7 +14,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:05:47 GMT + - Wed, 21 Sep 2022 23:03:36 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -31,30 +31,28 @@ interactions: - Location,Operation-Location,operation-id,search-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-length: - '0' date: - - Tue, 16 Aug 2022 10:05:53 GMT + - Wed, 21 Sep 2022 23:03:40 GMT location: - - /availablePhoneNumbers/searchResults/8bdd95e9-9cb1-487f-8fad-d1a27167b1ad?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/3f46b3a3-c1c2-4fac-a572-3895c1e9cb94?api-version=2021-03-07 ms-cv: - - 7ZgWHNHzKUK5XZWFKmt7Gg.0 + - dz+XPj0SHEWad4Kcn9ZETw.0 operation-id: - - search_8bdd95e9-9cb1-487f-8fad-d1a27167b1ad + - search_3f46b3a3-c1c2-4fac-a572-3895c1e9cb94 operation-location: - - /phoneNumbers/operations/search_8bdd95e9-9cb1-487f-8fad-d1a27167b1ad?api-version=2021-03-07 + - /phoneNumbers/operations/search_3f46b3a3-c1c2-4fac-a572-3895c1e9cb94?api-version=2021-03-07 search-id: - - 8bdd95e9-9cb1-487f-8fad-d1a27167b1ad + - 3f46b3a3-c1c2-4fac-a572-3895c1e9cb94 strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100549Z-0613xdc17h3t90gs2g8fdg5r64000000009g00000002e6q9 + - 0SZgrYwAAAAD5CaaX8ZVKR6o1vtPkj60TWVZSMzExMDAwMTE2MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 3969ms + - 3613ms status: code: 202 message: Accepted @@ -68,7 +66,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:06:22 GMT + - Wed, 21 Sep 2022 23:04:10 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -76,38 +74,36 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_8bdd95e9-9cb1-487f-8fad-d1a27167b1ad?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_3f46b3a3-c1c2-4fac-a572-3895c1e9cb94?api-version=2021-03-07 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/8bdd95e9-9cb1-487f-8fad-d1a27167b1ad?api-version=2021-03-07", - "createdDateTime": "2022-08-16T10:05:53.3222001+00:00", "id": "search_8bdd95e9-9cb1-487f-8fad-d1a27167b1ad", + "/availablePhoneNumbers/searchResults/3f46b3a3-c1c2-4fac-a572-3895c1e9cb94?api-version=2021-03-07", + "createdDateTime": "2022-09-21T23:03:40.615383+00:00", "id": "search_3f46b3a3-c1c2-4fac-a572-3895c1e9cb94", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: access-control-expose-headers: - Location api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:06:24 GMT + - Wed, 21 Sep 2022 23:04:12 GMT location: - - /availablePhoneNumbers/searchResults/8bdd95e9-9cb1-487f-8fad-d1a27167b1ad?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/3f46b3a3-c1c2-4fac-a572-3895c1e9cb94?api-version=2021-03-07 ms-cv: - - 6Bqt3T1uSky+tV2YIbYN2A.0 + - znJl2ZhCrUOkTUxjvO73+w.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100623Z-0613xdc17h3t90gs2g8fdg5r64000000009g00000002ed9q + - 0a5grYwAAAABWKYaWLAEjT5w1EtGDwBfDWVZSMzExMDAwMTE2MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 363ms + - 685ms status: code: 200 message: OK @@ -122,7 +118,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:06:22 GMT + - Wed, 21 Sep 2022 23:04:11 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -130,41 +126,39 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/8bdd95e9-9cb1-487f-8fad-d1a27167b1ad?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/3f46b3a3-c1c2-4fac-a572-3895c1e9cb94?api-version=2021-03-07 response: body: - string: '{"searchId": "8bdd95e9-9cb1-487f-8fad-d1a27167b1ad", "phoneNumbers": - ["+18335540445"], "phoneNumberType": "tollFree", "assignmentType": "application", + string: '{"searchId": "3f46b3a3-c1c2-4fac-a572-3895c1e9cb94", "phoneNumbers": + ["+18332667147"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2022-08-16T10:21:55.7611777+00:00"}' + "2022-09-21T23:19:42.4533940+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:06:25 GMT + - Wed, 21 Sep 2022 23:04:13 GMT ms-cv: - - Sovy3xV8gEmKLZWn6GQecg.0 + - vw8iwrI0MkecXL6gQYjWBw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100624Z-0613xdc17h3t90gs2g8fdg5r64000000009g00000002edcx + - 0bJgrYwAAAAAIKgjpjiaCTJ7P9zjbALTmWVZSMzExMDAwMTE2MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 1370ms + - 1347ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "8bdd95e9-9cb1-487f-8fad-d1a27167b1ad"}' + body: '{"searchId": "3f46b3a3-c1c2-4fac-a572-3895c1e9cb94"}' headers: Accept: - application/json @@ -177,11 +171,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:06:24 GMT + - Wed, 21 Sep 2022 23:04:12 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - - MnsOukh6c+mgAbfYjvtf4LOigGqELu6v2aCc3AoLpKU= + - FnZYnH92+Lp9l83oAozQ6Ibu4sKwCDebhBhiRQTIN2w= x-ms-return-client-request-id: - 'true' method: POST @@ -194,28 +188,26 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-length: - '0' date: - - Tue, 16 Aug 2022 10:06:27 GMT + - Wed, 21 Sep 2022 23:04:15 GMT ms-cv: - - pRD//etaekeTPwOzakvD0g.0 + - xdSZ6biL+0m6/2OxWj0jeQ.0 operation-id: - - purchase_8bdd95e9-9cb1-487f-8fad-d1a27167b1ad + - purchase_3f46b3a3-c1c2-4fac-a572-3895c1e9cb94 operation-location: - - /phoneNumbers/operations/purchase_8bdd95e9-9cb1-487f-8fad-d1a27167b1ad?api-version=2021-03-07 + - /phoneNumbers/operations/purchase_3f46b3a3-c1c2-4fac-a572-3895c1e9cb94?api-version=2021-03-07 purchase-id: - - 8bdd95e9-9cb1-487f-8fad-d1a27167b1ad + - 3f46b3a3-c1c2-4fac-a572-3895c1e9cb94 strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100625Z-0613xdc17h3t90gs2g8fdg5r64000000009g00000002edqw + - 0bZgrYwAAAADeue+M3qxqTbudTrH70O5nWVZSMzExMDAwMTE2MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 1899ms + - 1894ms status: code: 202 message: Accepted @@ -229,7 +221,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:06:56 GMT + - Wed, 21 Sep 2022 23:04:44 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -237,33 +229,31 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8bdd95e9-9cb1-487f-8fad-d1a27167b1ad?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_3f46b3a3-c1c2-4fac-a572-3895c1e9cb94?api-version=2021-03-07 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2022-08-16T10:05:53.3222001+00:00", "id": "purchase_8bdd95e9-9cb1-487f-8fad-d1a27167b1ad", + null, "createdDateTime": "2022-09-21T23:03:40.615383+00:00", "id": "purchase_3f46b3a3-c1c2-4fac-a572-3895c1e9cb94", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:06:58 GMT + - Wed, 21 Sep 2022 23:04:45 GMT ms-cv: - - CDrG4AuGbUekb7sW9C6bmQ.0 + - WC6SOpoNrEa/P9gfV29ZOw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100657Z-0613xdc17h3t90gs2g8fdg5r64000000009g00000002epcg + - 0jZgrYwAAAACMaiB7VvWnR5FjHDaezegAWVZSMzExMDAwMTE2MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 574ms + - 338ms status: code: 200 message: OK @@ -283,7 +273,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:06:57 GMT + - Wed, 21 Sep 2022 23:04:44 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -300,30 +290,28 @@ interactions: - Location,Operation-Location,operation-id,search-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-length: - '0' date: - - Tue, 16 Aug 2022 10:07:01 GMT + - Wed, 21 Sep 2022 23:04:49 GMT location: - - /availablePhoneNumbers/searchResults/8a682b75-077d-4e91-abed-1daf1878c8c2?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/1c8ce3fd-34a1-4085-b0f6-6ca90d8ed8d6?api-version=2021-03-07 ms-cv: - - ZeGVxFlc10C1LpHKGX4wzw.0 + - P+VTZEaJoE2EdwN+ujq+TQ.0 operation-id: - - search_8a682b75-077d-4e91-abed-1daf1878c8c2 + - search_1c8ce3fd-34a1-4085-b0f6-6ca90d8ed8d6 operation-location: - - /phoneNumbers/operations/search_8a682b75-077d-4e91-abed-1daf1878c8c2?api-version=2021-03-07 + - /phoneNumbers/operations/search_1c8ce3fd-34a1-4085-b0f6-6ca90d8ed8d6?api-version=2021-03-07 search-id: - - 8a682b75-077d-4e91-abed-1daf1878c8c2 + - 1c8ce3fd-34a1-4085-b0f6-6ca90d8ed8d6 strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100658Z-zvdmwacghh4c97ggppewnyshxn00000000eg00000003abaa + - 0jpgrYwAAAABBKx5ftU1RQ4yH9DUVZjpcWVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 2347ms + - 3220ms status: code: 202 message: Accepted @@ -337,7 +325,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:07:29 GMT + - Wed, 21 Sep 2022 23:05:18 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -345,38 +333,36 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_8a682b75-077d-4e91-abed-1daf1878c8c2?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_1c8ce3fd-34a1-4085-b0f6-6ca90d8ed8d6?api-version=2021-03-07 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/8a682b75-077d-4e91-abed-1daf1878c8c2?api-version=2021-03-07", - "createdDateTime": "2022-08-16T10:07:01.0017812+00:00", "id": "search_8a682b75-077d-4e91-abed-1daf1878c8c2", + "/availablePhoneNumbers/searchResults/1c8ce3fd-34a1-4085-b0f6-6ca90d8ed8d6?api-version=2021-03-07", + "createdDateTime": "2022-09-21T23:04:49.3022408+00:00", "id": "search_1c8ce3fd-34a1-4085-b0f6-6ca90d8ed8d6", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: access-control-expose-headers: - Location api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:07:32 GMT + - Wed, 21 Sep 2022 23:05:19 GMT location: - - /availablePhoneNumbers/searchResults/8a682b75-077d-4e91-abed-1daf1878c8c2?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/1c8ce3fd-34a1-4085-b0f6-6ca90d8ed8d6?api-version=2021-03-07 ms-cv: - - n18UgyYbhEuy/3PPtES13g.0 + - TFLPsf9DYE2uvv0GI2ueHw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100731Z-zvdmwacghh4c97ggppewnyshxn00000000eg00000003amgp + - 0r5grYwAAAAA4qIgKfKTjQq/uDdPeAjQRWVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 412ms + - 398ms status: code: 200 message: OK @@ -391,7 +377,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:07:30 GMT + - Wed, 21 Sep 2022 23:05:19 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -399,41 +385,39 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/8a682b75-077d-4e91-abed-1daf1878c8c2?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/1c8ce3fd-34a1-4085-b0f6-6ca90d8ed8d6?api-version=2021-03-07 response: body: - string: '{"searchId": "8a682b75-077d-4e91-abed-1daf1878c8c2", "phoneNumbers": - ["+18662073070"], "phoneNumberType": "tollFree", "assignmentType": "application", + string: '{"searchId": "1c8ce3fd-34a1-4085-b0f6-6ca90d8ed8d6", "phoneNumbers": + ["+18332676842"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2022-08-16T10:23:03.4112820+00:00"}' + "2022-09-21T23:20:50.7281349+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:07:33 GMT + - Wed, 21 Sep 2022 23:05:21 GMT ms-cv: - - mGCnOs7D9kqV6W2USP/0jQ.0 + - O8mAko3et0CqGS//iy7EEQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100732Z-zvdmwacghh4c97ggppewnyshxn00000000eg00000003amqa + - 0sJgrYwAAAACaY1uwTH9KQ4TC6HW3zYlNWVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 1260ms + - 1262ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "8a682b75-077d-4e91-abed-1daf1878c8c2"}' + body: '{"searchId": "1c8ce3fd-34a1-4085-b0f6-6ca90d8ed8d6"}' headers: Accept: - application/json @@ -446,11 +430,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:07:31 GMT + - Wed, 21 Sep 2022 23:05:20 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - - sq4lThaGNBDPKP9+xtS7DLgXPEDmjEKOV27k5AF8YOU= + - Sna00Lb3mff1+euxF8FFM6qOBlwLiIVxcdI8hFh4s24= x-ms-return-client-request-id: - 'true' method: POST @@ -463,28 +447,26 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-length: - '0' date: - - Tue, 16 Aug 2022 10:07:35 GMT + - Wed, 21 Sep 2022 23:05:23 GMT ms-cv: - - ygJ0nI9VYEWZy5swSo4hCg.0 + - Mq1Vwak1Xk2FSAgOuWTmtA.0 operation-id: - - purchase_8a682b75-077d-4e91-abed-1daf1878c8c2 + - purchase_1c8ce3fd-34a1-4085-b0f6-6ca90d8ed8d6 operation-location: - - /phoneNumbers/operations/purchase_8a682b75-077d-4e91-abed-1daf1878c8c2?api-version=2021-03-07 + - /phoneNumbers/operations/purchase_1c8ce3fd-34a1-4085-b0f6-6ca90d8ed8d6?api-version=2021-03-07 purchase-id: - - 8a682b75-077d-4e91-abed-1daf1878c8c2 + - 1c8ce3fd-34a1-4085-b0f6-6ca90d8ed8d6 strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100733Z-zvdmwacghh4c97ggppewnyshxn00000000eg00000003an27 + - 0sZgrYwAAAADzqHwOuubFSIRUvypnDepgWVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 2114ms + - 1963ms status: code: 202 message: Accepted @@ -498,7 +480,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:08:04 GMT + - Wed, 21 Sep 2022 23:05:52 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -506,33 +488,31 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8a682b75-077d-4e91-abed-1daf1878c8c2?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_1c8ce3fd-34a1-4085-b0f6-6ca90d8ed8d6?api-version=2021-03-07 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2022-08-16T10:07:01.0017812+00:00", "id": "purchase_8a682b75-077d-4e91-abed-1daf1878c8c2", + null, "createdDateTime": "2022-09-21T23:04:49.3022408+00:00", "id": "purchase_1c8ce3fd-34a1-4085-b0f6-6ca90d8ed8d6", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:08:06 GMT + - Wed, 21 Sep 2022 23:05:53 GMT ms-cv: - - MUIKHohP2kCB/ZH9XZqeLg.0 + - 4blEgjxYaEy4yYgkma3bvw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100805Z-zvdmwacghh4c97ggppewnyshxn00000000eg00000003awt4 + - 00ZgrYwAAAABtS6NvsWAdSYei5sa4dw9kWVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 434ms + - 407ms status: code: 200 message: OK @@ -552,7 +532,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:08:04 GMT + - Wed, 21 Sep 2022 23:05:53 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -569,30 +549,28 @@ interactions: - Location,Operation-Location,operation-id,search-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-length: - '0' date: - - Tue, 16 Aug 2022 10:08:09 GMT + - Wed, 21 Sep 2022 23:05:56 GMT location: - - /availablePhoneNumbers/searchResults/3984011c-cde0-4082-aa91-916633f7c5ff?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/ac4b81e8-cbbf-4612-8c8b-7f1c5c1d8cf0?api-version=2021-03-07 ms-cv: - - SBT3T1ed4UmjiShBRoVQYg.0 + - urO5o0kGU0mkAlqMRzre+w.0 operation-id: - - search_3984011c-cde0-4082-aa91-916633f7c5ff + - search_ac4b81e8-cbbf-4612-8c8b-7f1c5c1d8cf0 operation-location: - - /phoneNumbers/operations/search_3984011c-cde0-4082-aa91-916633f7c5ff?api-version=2021-03-07 + - /phoneNumbers/operations/search_ac4b81e8-cbbf-4612-8c8b-7f1c5c1d8cf0?api-version=2021-03-07 search-id: - - 3984011c-cde0-4082-aa91-916633f7c5ff + - ac4b81e8-cbbf-4612-8c8b-7f1c5c1d8cf0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100806Z-zvdmwacghh4c97ggppewnyshxn00000000e000000003vya4 + - 00pgrYwAAAABovupKdUpzSqI1tbfzOqcXWVZSMzExMDAwMTE2MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 2338ms + - 1979ms status: code: 202 message: Accepted @@ -606,7 +584,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:08:37 GMT + - Wed, 21 Sep 2022 23:06:25 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -614,38 +592,36 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_3984011c-cde0-4082-aa91-916633f7c5ff?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_ac4b81e8-cbbf-4612-8c8b-7f1c5c1d8cf0?api-version=2021-03-07 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/3984011c-cde0-4082-aa91-916633f7c5ff?api-version=2021-03-07", - "createdDateTime": "2022-08-16T10:08:08.7113048+00:00", "id": "search_3984011c-cde0-4082-aa91-916633f7c5ff", + "/availablePhoneNumbers/searchResults/ac4b81e8-cbbf-4612-8c8b-7f1c5c1d8cf0?api-version=2021-03-07", + "createdDateTime": "2022-09-21T23:05:56.6304234+00:00", "id": "search_ac4b81e8-cbbf-4612-8c8b-7f1c5c1d8cf0", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: access-control-expose-headers: - Location api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:08:40 GMT + - Wed, 21 Sep 2022 23:06:27 GMT location: - - /availablePhoneNumbers/searchResults/3984011c-cde0-4082-aa91-916633f7c5ff?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/ac4b81e8-cbbf-4612-8c8b-7f1c5c1d8cf0?api-version=2021-03-07 ms-cv: - - 5OrMJs24IEahulzmZiLiUQ.0 + - WhVXWSkQPUmu6DJZTaJ/cA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100839Z-zvdmwacghh4c97ggppewnyshxn00000000e000000003wa7h + - 085grYwAAAADgoErEuvHyRYI6yCtsDvvqWVZSMzExMDAwMTE2MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 962ms + - 366ms status: code: 200 message: OK @@ -660,7 +636,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:08:38 GMT + - Wed, 21 Sep 2022 23:06:26 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -668,41 +644,39 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/3984011c-cde0-4082-aa91-916633f7c5ff?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/ac4b81e8-cbbf-4612-8c8b-7f1c5c1d8cf0?api-version=2021-03-07 response: body: - string: '{"searchId": "3984011c-cde0-4082-aa91-916633f7c5ff", "phoneNumbers": - ["+18772189809"], "phoneNumberType": "tollFree", "assignmentType": "application", + string: '{"searchId": "ac4b81e8-cbbf-4612-8c8b-7f1c5c1d8cf0", "phoneNumbers": + ["+18332637041"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2022-08-16T10:24:11.0789309+00:00"}' + "2022-09-21T23:21:57.8434766+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:08:41 GMT + - Wed, 21 Sep 2022 23:06:28 GMT ms-cv: - - MVBPKeg8PUKUSlXjh59+ew.0 + - 8WukNL6MzUiRjsaAjdrN3g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100840Z-zvdmwacghh4c97ggppewnyshxn00000000e000000003wam7 + - 085grYwAAAADSjAoo19/RSpiio6jAeO1PWVZSMzExMDAwMTE2MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 1101ms + - 1070ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "3984011c-cde0-4082-aa91-916633f7c5ff"}' + body: '{"searchId": "ac4b81e8-cbbf-4612-8c8b-7f1c5c1d8cf0"}' headers: Accept: - application/json @@ -715,11 +689,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:08:40 GMT + - Wed, 21 Sep 2022 23:06:27 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - - 5FW0k5ebrPfr4ZeqcBvD15tckNYu3ibo2nJhTdrFArc= + - N1LLGk+8+/+w4Y9DY/vb9Dn38lsLoGdqnguI38n6lEI= x-ms-return-client-request-id: - 'true' method: POST @@ -732,28 +706,26 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-length: - '0' date: - - Tue, 16 Aug 2022 10:08:43 GMT + - Wed, 21 Sep 2022 23:06:30 GMT ms-cv: - - 9az57h+QX0232+wYHn+lCg.0 + - QFfvSbDJ/0WViABmSKmF6w.0 operation-id: - - purchase_3984011c-cde0-4082-aa91-916633f7c5ff + - purchase_ac4b81e8-cbbf-4612-8c8b-7f1c5c1d8cf0 operation-location: - - /phoneNumbers/operations/purchase_3984011c-cde0-4082-aa91-916633f7c5ff?api-version=2021-03-07 + - /phoneNumbers/operations/purchase_ac4b81e8-cbbf-4612-8c8b-7f1c5c1d8cf0?api-version=2021-03-07 purchase-id: - - 3984011c-cde0-4082-aa91-916633f7c5ff + - ac4b81e8-cbbf-4612-8c8b-7f1c5c1d8cf0 strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100841Z-zvdmwacghh4c97ggppewnyshxn00000000e000000003wazq + - 09JgrYwAAAAAIkDDyi3vdRZAZ3KIFnz93WVZSMzExMDAwMTE2MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 2231ms + - 1751ms status: code: 202 message: Accepted @@ -767,7 +739,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:09:12 GMT + - Wed, 21 Sep 2022 23:06:59 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -775,33 +747,31 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_3984011c-cde0-4082-aa91-916633f7c5ff?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_ac4b81e8-cbbf-4612-8c8b-7f1c5c1d8cf0?api-version=2021-03-07 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2022-08-16T10:08:08.7113048+00:00", "id": "purchase_3984011c-cde0-4082-aa91-916633f7c5ff", + null, "createdDateTime": "2022-09-21T23:05:56.6304234+00:00", "id": "purchase_ac4b81e8-cbbf-4612-8c8b-7f1c5c1d8cf0", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:09:14 GMT + - Wed, 21 Sep 2022 23:07:00 GMT ms-cv: - - 72pPCtuQf0enlB6Sz/b+jw.0 + - 6DHIIsQfOkGNoePPG0c2cQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100914Z-zvdmwacghh4c97ggppewnyshxn00000000e000000003wpy9 + - 0FJkrYwAAAABHIhWw4+y4ToSr3LwudCiRWVZSMzExMDAwMTE2MDI5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 385ms + - 365ms status: code: 200 message: OK @@ -823,11 +793,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:09:13 GMT + - Wed, 21 Sep 2022 23:06:59 GMT User-Agent: - - azsdk-python-communication-sms/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.3.0 azsdk-python-communication-sms/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - - 6vRg0bwSbO1/YKAV/HD5UL0DivdYG+vB8OKAoNNh7p4= + - 9m7EwcYzk4fYMCAHgxnm+v4huLY/Z7NWocZZK27ebyU= x-ms-return-client-request-id: - 'true' method: POST @@ -841,20 +811,18 @@ interactions: headers: api-supported-versions: - 2020-07-20-preview1, 2020-08-20-preview, 2021-03-07 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:09:15 GMT + - Wed, 21 Sep 2022 23:07:01 GMT ms-cv: - - FaEpKA/jDEO6v2m2+eYccQ.0 + - bDkyWPhjtESp3uc3JNWuLA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100914Z-zvdmwacghh4c97ggppewnyshxn00000000eg00000003beur + - 0FZkrYwAAAACYlpqaj1qSQLTgDZ2/aAstWVZSMzExMDAwMTE2MDMxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: diff --git a/src/communication/azext_communication/tests/latest/recordings/test_show_phonenumbers.yaml b/src/communication/azext_communication/tests/latest/recordings/test_show_phonenumbers.yaml index 7b896d74158..9d2a40388a5 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_show_phonenumbers.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_show_phonenumbers.yaml @@ -14,7 +14,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:03:00 GMT + - Wed, 21 Sep 2022 22:54:12 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -31,30 +31,28 @@ interactions: - Location,Operation-Location,operation-id,search-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-length: - '0' date: - - Tue, 16 Aug 2022 10:03:06 GMT + - Wed, 21 Sep 2022 22:54:18 GMT location: - - /availablePhoneNumbers/searchResults/8f12c81b-e019-4034-bcca-53cf2f5f01f6?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/1b997f52-71e6-4a08-83e9-96883ca9bca1?api-version=2021-03-07 ms-cv: - - +1c7q4/tqEqxDBSk+8nj/g.0 + - RgXIbYmX3kikVNh3vfINtg.0 operation-id: - - search_8f12c81b-e019-4034-bcca-53cf2f5f01f6 + - search_1b997f52-71e6-4a08-83e9-96883ca9bca1 operation-location: - - /phoneNumbers/operations/search_8f12c81b-e019-4034-bcca-53cf2f5f01f6?api-version=2021-03-07 + - /phoneNumbers/operations/search_1b997f52-71e6-4a08-83e9-96883ca9bca1?api-version=2021-03-07 search-id: - - 8f12c81b-e019-4034-bcca-53cf2f5f01f6 + - 1b997f52-71e6-4a08-83e9-96883ca9bca1 strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100302Z-r0s9pbvvdt0w72q6sqrkc1ktpw00000005gg00000000hgkz + - 0FpYrYwAAAACqOjXitiMCQ4qX0W08cL6VWVZSMzExMDAwMTE1MDMxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 3732ms + - 5151ms status: code: 202 message: Accepted @@ -68,7 +66,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:03:35 GMT + - Wed, 21 Sep 2022 22:54:48 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -76,38 +74,36 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_8f12c81b-e019-4034-bcca-53cf2f5f01f6?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_1b997f52-71e6-4a08-83e9-96883ca9bca1?api-version=2021-03-07 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/8f12c81b-e019-4034-bcca-53cf2f5f01f6?api-version=2021-03-07", - "createdDateTime": "2022-08-16T10:03:06.0364696+00:00", "id": "sanitized", + "/availablePhoneNumbers/searchResults/1b997f52-71e6-4a08-83e9-96883ca9bca1?api-version=2021-03-07", + "createdDateTime": "2022-09-21T22:54:18.3761636+00:00", "id": "sanitized", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: access-control-expose-headers: - Location api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:03:36 GMT + - Wed, 21 Sep 2022 22:54:49 GMT location: - - /availablePhoneNumbers/searchResults/8f12c81b-e019-4034-bcca-53cf2f5f01f6?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/1b997f52-71e6-4a08-83e9-96883ca9bca1?api-version=2021-03-07 ms-cv: - - Z9SSZK/h/ECKnhNJzf0gZg.0 + - mzCSFlB8lEe1OgRDEBAp0g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100336Z-r0s9pbvvdt0w72q6sqrkc1ktpw00000005gg00000000hmsn + - 0OZYrYwAAAADDYtBoIzLjTYaQe1Z0sdWwWVZSMzExMDAwMTE1MDMxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 356ms + - 571ms status: code: 200 message: OK @@ -122,7 +118,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:03:35 GMT + - Wed, 21 Sep 2022 22:54:49 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -130,41 +126,39 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/8f12c81b-e019-4034-bcca-53cf2f5f01f6?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/1b997f52-71e6-4a08-83e9-96883ca9bca1?api-version=2021-03-07 response: body: - string: '{"searchId": "8f12c81b-e019-4034-bcca-53cf2f5f01f6", "phoneNumbers": + string: '{"searchId": "1b997f52-71e6-4a08-83e9-96883ca9bca1", "phoneNumbers": ["sanitized"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2022-08-16T10:19:08.3996101+00:00"}' + "2022-09-21T23:10:20.6903814+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:03:38 GMT + - Wed, 21 Sep 2022 22:54:50 GMT ms-cv: - - HpHvKjQ/WUGH0j19aE0MBA.0 + - kpYl+4eja0CJBrk/bGy3jA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100337Z-r0s9pbvvdt0w72q6sqrkc1ktpw00000005gg00000000hmu6 + - 0OpYrYwAAAADEUrmRP6MjQLc8HElDZMDgWVZSMzExMDAwMTE1MDMxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 1075ms + - 1095ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "8f12c81b-e019-4034-bcca-53cf2f5f01f6"}' + body: '{"searchId": "1b997f52-71e6-4a08-83e9-96883ca9bca1"}' headers: Accept: - application/json @@ -177,11 +171,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:03:36 GMT + - Wed, 21 Sep 2022 22:54:50 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - - EyiY9jr3cEVUECWEm8g3qkuWoZbbHyOHMPgXnp+RpYA= + - Cbpqr27Nd2avhloZa13OAtjWe0NoVcyQvs9pUsEm2cI= x-ms-return-client-request-id: - 'true' method: POST @@ -194,28 +188,26 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-length: - '0' date: - - Tue, 16 Aug 2022 10:03:40 GMT + - Wed, 21 Sep 2022 22:54:53 GMT ms-cv: - - tTwCSUcxVk2zbcbQOTIFoA.0 + - QcThO952xkGyqcQb7kiFTQ.0 operation-id: - - purchase_8f12c81b-e019-4034-bcca-53cf2f5f01f6 + - purchase_1b997f52-71e6-4a08-83e9-96883ca9bca1 operation-location: - - /phoneNumbers/operations/purchase_8f12c81b-e019-4034-bcca-53cf2f5f01f6?api-version=2021-03-07 + - /phoneNumbers/operations/purchase_1b997f52-71e6-4a08-83e9-96883ca9bca1?api-version=2021-03-07 purchase-id: - - 8f12c81b-e019-4034-bcca-53cf2f5f01f6 + - 1b997f52-71e6-4a08-83e9-96883ca9bca1 strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100338Z-r0s9pbvvdt0w72q6sqrkc1ktpw00000005gg00000000hmye + - 0O5YrYwAAAAAup35kxj3LQrNdQt6g5/hfWVZSMzExMDAwMTE1MDMxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 2139ms + - 2475ms status: code: 202 message: Accepted @@ -229,7 +221,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:04:08 GMT + - Wed, 21 Sep 2022 22:55:22 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -237,33 +229,31 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_8f12c81b-e019-4034-bcca-53cf2f5f01f6?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_1b997f52-71e6-4a08-83e9-96883ca9bca1?api-version=2021-03-07 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2022-08-16T10:03:06.0364696+00:00", "id": "sanitized", + null, "createdDateTime": "2022-09-21T22:54:18.3761636+00:00", "id": "sanitized", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:04:10 GMT + - Wed, 21 Sep 2022 22:55:23 GMT ms-cv: - - jj0thRThXkaGRpL3QErqkQ.0 + - w0qjWqOQyUapSKLaFtxqIw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100410Z-r0s9pbvvdt0w72q6sqrkc1ktpw00000005gg00000000hqz6 + - 0XJYrYwAAAAAuhMlSy4G7Toe/OW1msvEPWVZSMzExMDAwMTE1MDMxADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 373ms + - 626ms status: code: 200 message: OK @@ -278,9 +268,10 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:04:09 GMT + - Wed, 21 Sep 2022 22:55:23 GMT User-Agent: - - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 + (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - 47DEQpj8HBSa+/TImW+5JCeuQeRkm5NMpJWZG3hSuFU= x-ms-return-client-request-id: @@ -291,29 +282,27 @@ interactions: body: string: '{"id": "sanitized", "phoneNumber": "sanitized", "countryCode": "US", "phoneNumberType": "tollFree", "capabilities": {"calling": "inbound", "sms": - "inbound+outbound"}, "assignmentType": "application", "purchaseDate": "2022-08-16T10:03:56.2185351+00:00", + "inbound+outbound"}, "assignmentType": "application", "purchaseDate": "2022-09-21T22:55:11.1424551+00:00", "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:04:13 GMT + - Wed, 21 Sep 2022 22:55:27 GMT ms-cv: - - /00VHMqZaUGOuOO3Ag7S+g.0 + - zhhfmfatV0GRBnHAbPBYdA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100411Z-p18hf8s3dx4xf8cgexx53pe93400000000dg00000000enum + - 0XZYrYwAAAADROy6i+Y3lSZ3IKRbvwm2nWVZSMzExMDAwMTE2MDI3ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 2017ms + - 2775ms status: code: 200 message: OK diff --git a/src/communication/azext_communication/tests/latest/recordings/test_sms_send.yaml b/src/communication/azext_communication/tests/latest/recordings/test_sms_send.yaml index ad0d8445e85..52a00ba6a1b 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_sms_send.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_sms_send.yaml @@ -14,7 +14,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:05:47 GMT + - Wed, 21 Sep 2022 22:57:02 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -31,30 +31,28 @@ interactions: - Location,Operation-Location,operation-id,search-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-length: - '0' date: - - Tue, 16 Aug 2022 10:05:54 GMT + - Wed, 21 Sep 2022 22:57:06 GMT location: - - /availablePhoneNumbers/searchResults/af48cfa2-7618-46bc-9cd5-d985edf0b899?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/d9c1bd88-4737-4bb9-892d-ee6b3da3623a?api-version=2021-03-07 ms-cv: - - aZwuOsteT0yiC+dG0ZNicg.0 + - TCBVRJYWxky/BqJ6jDdT3Q.0 operation-id: - - search_af48cfa2-7618-46bc-9cd5-d985edf0b899 + - search_d9c1bd88-4737-4bb9-892d-ee6b3da3623a operation-location: - - /phoneNumbers/operations/search_af48cfa2-7618-46bc-9cd5-d985edf0b899?api-version=2021-03-07 + - /phoneNumbers/operations/search_d9c1bd88-4737-4bb9-892d-ee6b3da3623a?api-version=2021-03-07 search-id: - - af48cfa2-7618-46bc-9cd5-d985edf0b899 + - d9c1bd88-4737-4bb9-892d-ee6b3da3623a strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100549Z-pvk0k4gqx51st0bh1fssf7cw3000000005g000000000xya6 + - 0wJYrYwAAAADjRFYtlgy7TZ+FKpPDWho6WVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 4368ms + - 3034ms status: code: 202 message: Accepted @@ -68,7 +66,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:06:22 GMT + - Wed, 21 Sep 2022 22:57:36 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -76,38 +74,36 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_af48cfa2-7618-46bc-9cd5-d985edf0b899?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_d9c1bd88-4737-4bb9-892d-ee6b3da3623a?api-version=2021-03-07 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/af48cfa2-7618-46bc-9cd5-d985edf0b899?api-version=2021-03-07", - "createdDateTime": "2022-08-16T10:05:53.8697119+00:00", "id": "search_af48cfa2-7618-46bc-9cd5-d985edf0b899", + "/availablePhoneNumbers/searchResults/d9c1bd88-4737-4bb9-892d-ee6b3da3623a?api-version=2021-03-07", + "createdDateTime": "2022-09-21T22:57:06.3831991+00:00", "id": "search_d9c1bd88-4737-4bb9-892d-ee6b3da3623a", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: access-control-expose-headers: - Location api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:06:24 GMT + - Wed, 21 Sep 2022 22:57:37 GMT location: - - /availablePhoneNumbers/searchResults/af48cfa2-7618-46bc-9cd5-d985edf0b899?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/d9c1bd88-4737-4bb9-892d-ee6b3da3623a?api-version=2021-03-07 ms-cv: - - UjF984VsCUqoWQH19kHljA.0 + - 574JJBVqqEKFFHWNCixNEA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100624Z-pvk0k4gqx51st0bh1fssf7cw3000000005g000000000y5qm + - 04ZYrYwAAAAA2QzNGVDCcS61Wy7wfIcKaWVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 504ms + - 369ms status: code: 200 message: OK @@ -122,7 +118,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:06:23 GMT + - Wed, 21 Sep 2022 22:57:36 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -130,41 +126,39 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/af48cfa2-7618-46bc-9cd5-d985edf0b899?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/d9c1bd88-4737-4bb9-892d-ee6b3da3623a?api-version=2021-03-07 response: body: - string: '{"searchId": "af48cfa2-7618-46bc-9cd5-d985edf0b899", "phoneNumbers": - ["+18447291986"], "phoneNumberType": "tollFree", "assignmentType": "application", + string: '{"searchId": "d9c1bd88-4737-4bb9-892d-ee6b3da3623a", "phoneNumbers": + ["+18332044378"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2022-08-16T10:21:56.5998157+00:00"}' + "2022-09-21T23:13:08.6738197+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:06:26 GMT + - Wed, 21 Sep 2022 22:57:38 GMT ms-cv: - - lz/P1wBGJkaz0KIOk574Pw.0 + - eX9phUcaREurb2wHJECFBg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100625Z-pvk0k4gqx51st0bh1fssf7cw3000000005g000000000y5ue + - 04ZYrYwAAAAAau6AIQFATSrk2K3+R9m4kWVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 1161ms + - 812ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "af48cfa2-7618-46bc-9cd5-d985edf0b899"}' + body: '{"searchId": "d9c1bd88-4737-4bb9-892d-ee6b3da3623a"}' headers: Accept: - application/json @@ -177,11 +171,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:06:24 GMT + - Wed, 21 Sep 2022 22:57:37 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - - lB2Xep9Ba7oWFPSHEd3suqi0up0I8ubo5txTqvij0V0= + - p+j1ra+bUnyvXVXT3FjgxyyM0mBcK6GwQArKOAsIsB4= x-ms-return-client-request-id: - 'true' method: POST @@ -194,28 +188,26 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-length: - '0' date: - - Tue, 16 Aug 2022 10:06:28 GMT + - Wed, 21 Sep 2022 22:57:40 GMT ms-cv: - - Y1q6qZ3YV0ic2ChRrgNIbw.0 + - FUHYukxtHUelFvSkEXh3Yg.0 operation-id: - - purchase_af48cfa2-7618-46bc-9cd5-d985edf0b899 + - purchase_d9c1bd88-4737-4bb9-892d-ee6b3da3623a operation-location: - - /phoneNumbers/operations/purchase_af48cfa2-7618-46bc-9cd5-d985edf0b899?api-version=2021-03-07 + - /phoneNumbers/operations/purchase_d9c1bd88-4737-4bb9-892d-ee6b3da3623a?api-version=2021-03-07 purchase-id: - - af48cfa2-7618-46bc-9cd5-d985edf0b899 + - d9c1bd88-4737-4bb9-892d-ee6b3da3623a strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100626Z-pvk0k4gqx51st0bh1fssf7cw3000000005g000000000y61v + - 04pYrYwAAAAB+JphD9g17RaBbvo3SSaIRWVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 2345ms + - 1932ms status: code: 202 message: Accepted @@ -229,7 +221,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:06:57 GMT + - Wed, 21 Sep 2022 22:58:09 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -237,33 +229,31 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_af48cfa2-7618-46bc-9cd5-d985edf0b899?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_d9c1bd88-4737-4bb9-892d-ee6b3da3623a?api-version=2021-03-07 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2022-08-16T10:05:53.8697119+00:00", "id": "purchase_af48cfa2-7618-46bc-9cd5-d985edf0b899", + null, "createdDateTime": "2022-09-21T22:57:06.3831991+00:00", "id": "purchase_d9c1bd88-4737-4bb9-892d-ee6b3da3623a", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:06:59 GMT + - Wed, 21 Sep 2022 22:58:10 GMT ms-cv: - - bEZT5JxvakuEGqi5aaD4Xw.0 + - Ba6lVKmmoku2NvvK92Rt0Q.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100658Z-pvk0k4gqx51st0bh1fssf7cw3000000005g000000000ybn6 + - 0ApcrYwAAAABV3JCbm3D+Ra7AaB33XmZvWVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 435ms + - 324ms status: code: 200 message: OK @@ -284,11 +274,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:06:57 GMT + - Wed, 21 Sep 2022 22:58:10 GMT User-Agent: - - azsdk-python-communication-sms/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-sms/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - - H8CAc5clzgZGuTYXWOsRDbkqnqkvU9p9IMw++w2l90c= + - brGWP01BJkyNgFBXiaDOyUlG+vvCBmqBbPk8RIiV6AY= x-ms-return-client-request-id: - 'true' method: POST @@ -300,24 +290,22 @@ interactions: headers: api-supported-versions: - 2020-07-20-preview1, 2020-08-20-preview, 2021-03-07 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:07:00 GMT + - Wed, 21 Sep 2022 22:58:11 GMT ms-cv: - - hquxFdVu6kaLsLS6LTNWMw.0 + - URc7kEuZRUCKmhOD9zBD4g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100659Z-0613xdc17h3t90gs2g8fdg5r64000000009g00000001zt3t + - 0A5crYwAAAABQSiaUx4HwQaTSamDV5PsFWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 309ms + - 154ms status: code: 202 message: Accepted diff --git a/src/communication/azext_communication/tests/latest/recordings/test_sms_send_n_recipients.yaml b/src/communication/azext_communication/tests/latest/recordings/test_sms_send_n_recipients.yaml index 12639bfb34b..b3c2e870b5d 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_sms_send_n_recipients.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_sms_send_n_recipients.yaml @@ -14,7 +14,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:08:34 GMT + - Wed, 21 Sep 2022 23:10:58 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -31,30 +31,28 @@ interactions: - Location,Operation-Location,operation-id,search-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-length: - '0' date: - - Tue, 16 Aug 2022 10:08:39 GMT + - Wed, 21 Sep 2022 23:11:04 GMT location: - - /availablePhoneNumbers/searchResults/919284e1-03c2-45c8-b0c8-a656b37adf22?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/4b8ca6ef-26da-440a-a2d9-531ed67d5174?api-version=2021-03-07 ms-cv: - - LUPf9vvjPUW3pA6TCiDz2w.0 + - jhbEoTRk4EGQYxaTAfW1cg.0 operation-id: - - search_919284e1-03c2-45c8-b0c8-a656b37adf22 + - search_4b8ca6ef-26da-440a-a2d9-531ed67d5174 operation-location: - - /phoneNumbers/operations/search_919284e1-03c2-45c8-b0c8-a656b37adf22?api-version=2021-03-07 + - /phoneNumbers/operations/search_4b8ca6ef-26da-440a-a2d9-531ed67d5174?api-version=2021-03-07 search-id: - - 919284e1-03c2-45c8-b0c8-a656b37adf22 + - 4b8ca6ef-26da-440a-a2d9-531ed67d5174 strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100836Z-z5w8hfkph50p97tr7b7ay90rp000000000dg000000001n3s + - 0BJorYwAAAAAp/mftmW8cQpboV7E2cPNsWVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 2773ms + - 4303ms status: code: 202 message: Accepted @@ -68,7 +66,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:09:08 GMT + - Wed, 21 Sep 2022 23:11:33 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -76,38 +74,36 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_919284e1-03c2-45c8-b0c8-a656b37adf22?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_4b8ca6ef-26da-440a-a2d9-531ed67d5174?api-version=2021-03-07 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/919284e1-03c2-45c8-b0c8-a656b37adf22?api-version=2021-03-07", - "createdDateTime": "2022-08-16T10:08:39.1184266+00:00", "id": "search_919284e1-03c2-45c8-b0c8-a656b37adf22", + "/availablePhoneNumbers/searchResults/4b8ca6ef-26da-440a-a2d9-531ed67d5174?api-version=2021-03-07", + "createdDateTime": "2022-09-21T23:11:04.0929537+00:00", "id": "search_4b8ca6ef-26da-440a-a2d9-531ed67d5174", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: access-control-expose-headers: - Location api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:09:10 GMT + - Wed, 21 Sep 2022 23:11:36 GMT location: - - /availablePhoneNumbers/searchResults/919284e1-03c2-45c8-b0c8-a656b37adf22?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/4b8ca6ef-26da-440a-a2d9-531ed67d5174?api-version=2021-03-07 ms-cv: - - t+3Tkuj7z0iMT7kK4HIk0w.0 + - 2u6Xqvh8L0uGRj+DUisbPw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100909Z-p18hf8s3dx4xf8cgexx53pe93400000000dg000000000fvb + - 0JporYwAAAABN8x+gN5XcTJP3mVjKow25WVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 463ms + - 1154ms status: code: 200 message: OK @@ -122,7 +118,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:09:09 GMT + - Wed, 21 Sep 2022 23:11:34 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -130,41 +126,39 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/919284e1-03c2-45c8-b0c8-a656b37adf22?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/4b8ca6ef-26da-440a-a2d9-531ed67d5174?api-version=2021-03-07 response: body: - string: '{"searchId": "919284e1-03c2-45c8-b0c8-a656b37adf22", "phoneNumbers": - ["+18772189974"], "phoneNumberType": "tollFree", "assignmentType": "application", + string: '{"searchId": "4b8ca6ef-26da-440a-a2d9-531ed67d5174", "phoneNumbers": + ["+18332680289"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2022-08-16T10:24:40.7566140+00:00"}' + "2022-09-21T23:27:06.8890306+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:09:12 GMT + - Wed, 21 Sep 2022 23:11:37 GMT ms-cv: - - 1BbC7U1eUE+kktYYJfNt7w.0 + - Y877R4MPcEaQVMto1INvuA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100910Z-p18hf8s3dx4xf8cgexx53pe93400000000dg000000000fvp + - 0KJorYwAAAACLhrQ+JBbFTYscrYxr+A7+WVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 1178ms + - 1582ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "919284e1-03c2-45c8-b0c8-a656b37adf22"}' + body: '{"searchId": "4b8ca6ef-26da-440a-a2d9-531ed67d5174"}' headers: Accept: - application/json @@ -177,11 +171,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:09:10 GMT + - Wed, 21 Sep 2022 23:11:36 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - - j7Gtn4Ex5LwaxxGxPRkAqW0BIUctr/noPBUwI10IRpk= + - MEb0e447k/yjmM1aL+DuCf1xUuAzbTg2SFd4W9l8kp8= x-ms-return-client-request-id: - 'true' method: POST @@ -194,28 +188,26 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-length: - '0' date: - - Tue, 16 Aug 2022 10:09:14 GMT + - Wed, 21 Sep 2022 23:11:41 GMT ms-cv: - - oVqaEQu/5Ee6hPFHlC2+Mw.0 + - TPRB+l+yaEaweqn/QeV0LA.0 operation-id: - - purchase_919284e1-03c2-45c8-b0c8-a656b37adf22 + - purchase_4b8ca6ef-26da-440a-a2d9-531ed67d5174 operation-location: - - /phoneNumbers/operations/purchase_919284e1-03c2-45c8-b0c8-a656b37adf22?api-version=2021-03-07 + - /phoneNumbers/operations/purchase_4b8ca6ef-26da-440a-a2d9-531ed67d5174?api-version=2021-03-07 purchase-id: - - 919284e1-03c2-45c8-b0c8-a656b37adf22 + - 4b8ca6ef-26da-440a-a2d9-531ed67d5174 strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100912Z-p18hf8s3dx4xf8cgexx53pe93400000000dg000000000fwd + - 0KZorYwAAAAAgFX7qkzdBS4Quu66mMBr3WVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 2093ms + - 3473ms status: code: 202 message: Accepted @@ -229,7 +221,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:09:42 GMT + - Wed, 21 Sep 2022 23:12:10 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -237,33 +229,31 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_919284e1-03c2-45c8-b0c8-a656b37adf22?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_4b8ca6ef-26da-440a-a2d9-531ed67d5174?api-version=2021-03-07 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2022-08-16T10:08:39.1184266+00:00", "id": "purchase_919284e1-03c2-45c8-b0c8-a656b37adf22", + null, "createdDateTime": "2022-09-21T23:11:04.0929537+00:00", "id": "purchase_4b8ca6ef-26da-440a-a2d9-531ed67d5174", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:09:44 GMT + - Wed, 21 Sep 2022 23:12:11 GMT ms-cv: - - nMK+51HE3UugFEbD6hpE/w.0 + - /0HQtdCmnEe4+rh9YCSAlQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T100944Z-p18hf8s3dx4xf8cgexx53pe93400000000dg000000000gn3 + - 0S5orYwAAAAAhPbtQHIF/SL3PHlP7B+37WVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 433ms + - 427ms status: code: 200 message: OK @@ -283,7 +273,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:09:43 GMT + - Wed, 21 Sep 2022 23:12:10 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -303,25 +293,25 @@ interactions: content-length: - '0' date: - - Tue, 16 Aug 2022 10:09:46 GMT + - Wed, 21 Sep 2022 23:12:14 GMT location: - - /availablePhoneNumbers/searchResults/888a16c5-1b00-4243-b957-543eeb01ee0b?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/52a626b2-6d71-47b3-b13a-d77de0fa006d?api-version=2021-03-07 ms-cv: - - 8sKSG/xnEEygjsBVjpoSrQ.0 + - KccpqEZ5tE2Phm4H5MHUJQ.0 operation-id: - - search_888a16c5-1b00-4243-b957-543eeb01ee0b + - search_52a626b2-6d71-47b3-b13a-d77de0fa006d operation-location: - - /phoneNumbers/operations/search_888a16c5-1b00-4243-b957-543eeb01ee0b?api-version=2021-03-07 + - /phoneNumbers/operations/search_52a626b2-6d71-47b3-b13a-d77de0fa006d?api-version=2021-03-07 search-id: - - 888a16c5-1b00-4243-b957-543eeb01ee0b + - 52a626b2-6d71-47b3-b13a-d77de0fa006d strict-transport-security: - max-age=2592000 x-azure-ref: - - 06Wz7YgAAAADcOKhqyziDRqXF4Vo9G9OhWVZSMzExMDAwMTE2MDIzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0TJorYwAAAAAHpZq5FRwwQKa3cNpc8wSKWVZSMzExMDAwMTE2MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 2401ms + - 1870ms status: code: 202 message: Accepted @@ -335,7 +325,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:10:16 GMT + - Wed, 21 Sep 2022 23:12:43 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -343,12 +333,12 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_888a16c5-1b00-4243-b957-543eeb01ee0b?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_52a626b2-6d71-47b3-b13a-d77de0fa006d?api-version=2021-03-07 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/888a16c5-1b00-4243-b957-543eeb01ee0b?api-version=2021-03-07", - "createdDateTime": "2022-08-16T10:09:47.4320949+00:00", "id": "search_888a16c5-1b00-4243-b957-543eeb01ee0b", + "/availablePhoneNumbers/searchResults/52a626b2-6d71-47b3-b13a-d77de0fa006d?api-version=2021-03-07", + "createdDateTime": "2022-09-21T23:12:13.9535624+00:00", "id": "search_52a626b2-6d71-47b3-b13a-d77de0fa006d", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: access-control-expose-headers: @@ -358,21 +348,21 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:10:18 GMT + - Wed, 21 Sep 2022 23:12:44 GMT location: - - /availablePhoneNumbers/searchResults/888a16c5-1b00-4243-b957-543eeb01ee0b?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/52a626b2-6d71-47b3-b13a-d77de0fa006d?api-version=2021-03-07 ms-cv: - - mYhNU4wXrEO/6U7cIDTQRA.0 + - GPI2Jtk6yUqm2dDL2eoQ3g.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0CW37YgAAAACOiHgpmh5TQrfg+uZLInGHWVZSMzExMDAwMTE2MDIzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0bJorYwAAAABuoyXrkG1fQ5VMBaLRCwaoWVZSMzExMDAwMTE2MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 416ms + - 305ms status: code: 200 message: OK @@ -387,7 +377,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:10:16 GMT + - Wed, 21 Sep 2022 23:12:43 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -395,39 +385,39 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/888a16c5-1b00-4243-b957-543eeb01ee0b?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/52a626b2-6d71-47b3-b13a-d77de0fa006d?api-version=2021-03-07 response: body: - string: '{"searchId": "888a16c5-1b00-4243-b957-543eeb01ee0b", "phoneNumbers": - ["+18772189551"], "phoneNumberType": "tollFree", "assignmentType": "application", + string: '{"searchId": "52a626b2-6d71-47b3-b13a-d77de0fa006d", "phoneNumbers": + ["+18332669008"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2022-08-16T10:25:49.8393498+00:00"}' + "2022-09-21T23:28:16.4314207+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:10:19 GMT + - Wed, 21 Sep 2022 23:12:45 GMT ms-cv: - - vkEyYSnilEW0nyzqgWrY7Q.0 + - diuaQJjHvkG1pzMkribQnw.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0Cm37YgAAAAAgcn5iaKhKS40MWy6PFuYFWVZSMzExMDAwMTE2MDIzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0bJorYwAAAACbGTxT0/HDSJvWm4s8OViiWVZSMzExMDAwMTE2MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 1162ms + - 1020ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "888a16c5-1b00-4243-b957-543eeb01ee0b"}' + body: '{"searchId": "52a626b2-6d71-47b3-b13a-d77de0fa006d"}' headers: Accept: - application/json @@ -440,11 +430,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:10:18 GMT + - Wed, 21 Sep 2022 23:12:44 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - - ICM5KExCn+gl3hVv3WGIATN6FWeomouDcVX55uvseys= + - PexZzJF7v70/1Vr/5G2iJSuoSUdb4hhuFRGdboO3Dr4= x-ms-return-client-request-id: - 'true' method: POST @@ -460,23 +450,23 @@ interactions: content-length: - '0' date: - - Tue, 16 Aug 2022 10:10:21 GMT + - Wed, 21 Sep 2022 23:12:47 GMT ms-cv: - - E5blLeUobEK9GV8IWBb1Qg.0 + - 1hejuaRDQ0CmCwnPbW4ISA.0 operation-id: - - purchase_888a16c5-1b00-4243-b957-543eeb01ee0b + - purchase_52a626b2-6d71-47b3-b13a-d77de0fa006d operation-location: - - /phoneNumbers/operations/purchase_888a16c5-1b00-4243-b957-543eeb01ee0b?api-version=2021-03-07 + - /phoneNumbers/operations/purchase_52a626b2-6d71-47b3-b13a-d77de0fa006d?api-version=2021-03-07 purchase-id: - - 888a16c5-1b00-4243-b957-543eeb01ee0b + - 52a626b2-6d71-47b3-b13a-d77de0fa006d strict-transport-security: - max-age=2592000 x-azure-ref: - - 0C237YgAAAABWg6TNNj8aTpkmX8NeshGtWVZSMzExMDAwMTE2MDIzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0bZorYwAAAAAod1xLD6+8TZGHtDLUJ7dZWVZSMzExMDAwMTE2MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 2176ms + - 1694ms status: code: 202 message: Accepted @@ -490,7 +480,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:10:50 GMT + - Wed, 21 Sep 2022 23:13:16 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -498,11 +488,11 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_888a16c5-1b00-4243-b957-543eeb01ee0b?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_52a626b2-6d71-47b3-b13a-d77de0fa006d?api-version=2021-03-07 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2022-08-16T10:09:47.4320949+00:00", "id": "purchase_888a16c5-1b00-4243-b957-543eeb01ee0b", + null, "createdDateTime": "2022-09-21T23:12:13.9535624+00:00", "id": "purchase_52a626b2-6d71-47b3-b13a-d77de0fa006d", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: @@ -510,19 +500,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:10:51 GMT + - Wed, 21 Sep 2022 23:13:17 GMT ms-cv: - - 4ju1CL8/qkasaZn/B//YVQ.0 + - QbDg6IivykCMGWipSKczVg.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0K237YgAAAABcMISMO4fbR5rpmf/Cf0JdWVZSMzExMDAwMTE2MDIzADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 0jZorYwAAAACTgfolIi1LQL5vt7jbVYUfWVZSMzExMDAwMTE2MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 337ms + - 300ms status: code: 200 message: OK @@ -542,7 +532,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:10:50 GMT + - Wed, 21 Sep 2022 23:13:16 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -559,30 +549,28 @@ interactions: - Location,Operation-Location,operation-id,search-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-length: - '0' date: - - Tue, 16 Aug 2022 10:11:12 GMT + - Wed, 21 Sep 2022 23:13:22 GMT location: - - /availablePhoneNumbers/searchResults/84d84d57-9b8e-4dd9-84b2-621333c64b98?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/e6c17778-8249-4a83-ba0c-1597bd06f65a?api-version=2021-03-07 ms-cv: - - pLjCV0sku0elTvSCu5ahVg.0 + - 4NnCDz9W/0+WAHW0iG3gTg.0 operation-id: - - search_84d84d57-9b8e-4dd9-84b2-621333c64b98 + - search_e6c17778-8249-4a83-ba0c-1597bd06f65a operation-location: - - /phoneNumbers/operations/search_84d84d57-9b8e-4dd9-84b2-621333c64b98?api-version=2021-03-07 + - /phoneNumbers/operations/search_e6c17778-8249-4a83-ba0c-1597bd06f65a?api-version=2021-03-07 search-id: - - 84d84d57-9b8e-4dd9-84b2-621333c64b98 + - e6c17778-8249-4a83-ba0c-1597bd06f65a strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T101052Z-zvdmwacghh4c97ggppewnyshxn00000000gg00000000c58e + - 0jporYwAAAAAsX/UOjuDbS4/66SQtkWlfWVZSMzExMDAwMTE2MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 19948ms + - 4289ms status: code: 202 message: Accepted @@ -596,7 +584,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:11:41 GMT + - Wed, 21 Sep 2022 23:13:51 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -604,38 +592,36 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_84d84d57-9b8e-4dd9-84b2-621333c64b98?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/search_e6c17778-8249-4a83-ba0c-1597bd06f65a?api-version=2021-03-07 response: body: string: '{"operationType": "search", "status": "succeeded", "resourceLocation": - "/availablePhoneNumbers/searchResults/84d84d57-9b8e-4dd9-84b2-621333c64b98?api-version=2021-03-07", - "createdDateTime": "2022-08-16T10:11:12.497644+00:00", "id": "search_84d84d57-9b8e-4dd9-84b2-621333c64b98", + "/availablePhoneNumbers/searchResults/e6c17778-8249-4a83-ba0c-1597bd06f65a?api-version=2021-03-07", + "createdDateTime": "2022-09-21T23:13:22.2350868+00:00", "id": "search_e6c17778-8249-4a83-ba0c-1597bd06f65a", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: access-control-expose-headers: - Location api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:11:43 GMT + - Wed, 21 Sep 2022 23:13:53 GMT location: - - /availablePhoneNumbers/searchResults/84d84d57-9b8e-4dd9-84b2-621333c64b98?api-version=2021-03-07 + - /availablePhoneNumbers/searchResults/e6c17778-8249-4a83-ba0c-1597bd06f65a?api-version=2021-03-07 ms-cv: - - EhAvSMok/0WHuxu7ImgNMA.0 + - OiRfm4f3HEewPPhRP3TCQA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T101142Z-zvdmwacghh4c97ggppewnyshxn00000000gg00000000c6v7 + - 0sZorYwAAAAAN9tYNuS1WQ5kScH6GXqpGWVZSMzExMDAwMTE2MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 393ms + - 712ms status: code: 200 message: OK @@ -650,7 +636,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:11:41 GMT + - Wed, 21 Sep 2022 23:13:52 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -658,41 +644,39 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/84d84d57-9b8e-4dd9-84b2-621333c64b98?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/availablePhoneNumbers/searchResults/e6c17778-8249-4a83-ba0c-1597bd06f65a?api-version=2021-03-07 response: body: - string: '{"searchId": "84d84d57-9b8e-4dd9-84b2-621333c64b98", "phoneNumbers": - ["+18447314618"], "phoneNumberType": "tollFree", "assignmentType": "application", + string: '{"searchId": "e6c17778-8249-4a83-ba0c-1597bd06f65a", "phoneNumbers": + ["+18332683180"], "phoneNumberType": "tollFree", "assignmentType": "application", "capabilities": {"calling": "inbound", "sms": "inbound+outbound"}, "cost": {"amount": 2.0, "currencyCode": "USD", "billingFrequency": "monthly"}, "searchExpiresBy": - "2022-08-16T10:27:14.6528183+00:00"}' + "2022-09-21T23:29:24.2078248+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:11:44 GMT + - Wed, 21 Sep 2022 23:13:55 GMT ms-cv: - - 8Rzs1CabkkOLBeZq5THT1g.0 + - rJJAyqowJEqkW6m9QJ8UTQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T101143Z-zvdmwacghh4c97ggppewnyshxn00000000gg00000000c6vg + - 0sZorYwAAAADoo13yqugmS6+Tl9RWvOfcWVZSMzExMDAwMTE2MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 1176ms + - 1350ms status: code: 200 message: OK url: sanitized - request: - body: '{"searchId": "84d84d57-9b8e-4dd9-84b2-621333c64b98"}' + body: '{"searchId": "e6c17778-8249-4a83-ba0c-1597bd06f65a"}' headers: Accept: - application/json @@ -705,11 +689,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:11:43 GMT + - Wed, 21 Sep 2022 23:13:54 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - - tikyyT2lWHgRGRLmU5699CzBegu42BBuaARC/9tg1Co= + - sgDxZdmfTMzsUgs1NSLsXNrzDg9t0WZL3V/SVSe8k1U= x-ms-return-client-request-id: - 'true' method: POST @@ -722,28 +706,26 @@ interactions: - Operation-Location,operation-id,purchase-id api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-length: - '0' date: - - Tue, 16 Aug 2022 10:11:46 GMT + - Wed, 21 Sep 2022 23:13:57 GMT ms-cv: - - l7KymyQPqEu4CdtVFMFxJA.0 + - 1lvCltINoUGsIvtkER8vCw.0 operation-id: - - purchase_84d84d57-9b8e-4dd9-84b2-621333c64b98 + - purchase_e6c17778-8249-4a83-ba0c-1597bd06f65a operation-location: - - /phoneNumbers/operations/purchase_84d84d57-9b8e-4dd9-84b2-621333c64b98?api-version=2021-03-07 + - /phoneNumbers/operations/purchase_e6c17778-8249-4a83-ba0c-1597bd06f65a?api-version=2021-03-07 purchase-id: - - 84d84d57-9b8e-4dd9-84b2-621333c64b98 + - e6c17778-8249-4a83-ba0c-1597bd06f65a strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T101144Z-zvdmwacghh4c97ggppewnyshxn00000000gg00000000c6w8 + - 0s5orYwAAAACjAamFNPpsQaNkkor81lWCWVZSMzExMDAwMTE2MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 2135ms + - 2797ms status: code: 202 message: Accepted @@ -757,7 +739,7 @@ interactions: Connection: - keep-alive Date: - - Tue, 16 Aug 2022 10:12:15 GMT + - Wed, 21 Sep 2022 23:14:27 GMT User-Agent: - azsdk-python-communication-phonenumbers/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: @@ -765,33 +747,31 @@ interactions: x-ms-return-client-request-id: - 'true' method: GET - uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_84d84d57-9b8e-4dd9-84b2-621333c64b98?api-version=2021-03-07 + uri: https://sanitized.communication.azure.com/phoneNumbers/operations/purchase_e6c17778-8249-4a83-ba0c-1597bd06f65a?api-version=2021-03-07 response: body: string: '{"operationType": "purchase", "status": "succeeded", "resourceLocation": - null, "createdDateTime": "2022-08-16T10:11:12.497644+00:00", "id": "purchase_84d84d57-9b8e-4dd9-84b2-621333c64b98", + null, "createdDateTime": "2022-09-21T23:13:22.2350868+00:00", "id": "purchase_e6c17778-8249-4a83-ba0c-1597bd06f65a", "lastActionDateTime": "0001-01-01T00:00:00+00:00"}' headers: api-supported-versions: - 2021-03-07, 2022-01-11-preview2, 2022-06-01-preview, 2022-12-01 - connection: - - keep-alive content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:12:17 GMT + - Wed, 21 Sep 2022 23:14:28 GMT ms-cv: - - l+FK7BMFq0abu44HA6qHOQ.0 + - NY2feoP2EUS89cM2p1LiCQ.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 20220816T101217Z-zvdmwacghh4c97ggppewnyshxn00000000gg00000000c7hw + - 01JorYwAAAABwhRppNnClS6dC2G001uLYWVZSMzExMDAwMTE2MDM1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 366ms + - 687ms status: code: 200 message: OK @@ -813,11 +793,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 16 Aug 2022 10:12:16 GMT + - Wed, 21 Sep 2022 23:14:27 GMT User-Agent: - - azsdk-python-communication-sms/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.3.0 azsdk-python-communication-sms/1.0.1 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - - 9/wzPp6cxxrhUJVMYMGwAO1kdz5PfJcP6roS2iAQFIA= + - RvTqWYuU14Opb5is/lKVbm3grJ9d9DGWlg7Eb7FnEyw= x-ms-return-client-request-id: - 'true' method: POST @@ -834,19 +814,19 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:12:17 GMT + - Wed, 21 Sep 2022 23:14:29 GMT ms-cv: - - TExI0kkKJkOjMS8YQaESMA.0 + - TvV/f0dPT06U7nibqE3ciA.0 strict-transport-security: - max-age=2592000 transfer-encoding: - chunked x-azure-ref: - - 0gW37YgAAAAAhEPZscVSVQ5JXmrqPNSQZWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== + - 01ZorYwAAAAB1vNN/KoGgR5EP0iPlpuBkWVZSMzExMDAwMTE2MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 256ms + - 284ms status: code: 202 message: Accepted diff --git a/src/communication/azext_communication/tests/latest/recordings/test_token_issue.yaml b/src/communication/azext_communication/tests/latest/recordings/test_token_issue.yaml index a6bd9bfdf33..9fa5e9ca147 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_token_issue.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_token_issue.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - kWpGozyV35fifbpKdY8mbdG64VG0Pdq5upzo7YKAFM0= x-ms-date: - - Tue, 16 Aug 2022 10:01:23 GMT + - Wed, 21 Sep 2022 22:52:35 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T10:01:25.3044501+00:00"}}' + "expiresOn": "2022-09-22T22:52:36.735041+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - - '122' + - '121' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:01:25 GMT + - Wed, 21 Sep 2022 22:52:36 GMT ms-cv: - - YjsM5gX7pEu/kncGh7p4Zw.0 + - l6bQK7sYHkOux024IyeftA.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100125Z-zvdmwacghh4c97ggppewnyshxn00000000e000000003rucp + - 0tJUrYwAAAAA1U6t/04H8Sa/hAGSnse9BWVZSMzExMDAwMTE1MDI1ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 134ms + - 119ms status: code: 201 message: Created diff --git a/src/communication/azext_communication/tests/latest/recordings/test_token_issue_with_id.yaml b/src/communication/azext_communication/tests/latest/recordings/test_token_issue_with_id.yaml index adae30416c8..e0bca2d6c73 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_token_issue_with_id.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_token_issue_with_id.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - RBNvo1WzZ4oRRq0W9+hknpT7T8If536DEMBg9hyq/4o= x-ms-date: - - Tue, 16 Aug 2022 10:01:23 GMT + - Wed, 21 Sep 2022 22:52:36 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -29,26 +29,24 @@ interactions: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '33' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:01:25 GMT + - Wed, 21 Sep 2022 22:52:38 GMT ms-cv: - - DtQjJTOjm0iKVzzVzvuf5w.0 + - HqQg3/SF70yXbRYpSWQmHg.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100125Z-vucxhh51rx5mv27fvss3h7q1kc00000000f000000000382h + - 0tZUrYwAAAADMeIJhJbWxQJcWdawF9PwaWVZSMzExMDAwMTE2MDQ5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 119ms + - 114ms status: code: 201 message: Created @@ -66,44 +64,40 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - sZHRO4JkAmw3HcI1PyxrC5twHvkHIWjyMLVIkauXKRA= x-ms-date: - - Tue, 16 Aug 2022 10:01:24 GMT + - Wed, 21 Sep 2022 22:52:37 GMT x-ms-return-client-request-id: - 'true' method: POST uri: https://sanitized.communication.azure.com/identities/sanitized/:issueAccessToken?api-version=2022-06-01 response: body: - string: '{"token": "sanitized", "expiresOn": "2022-08-17T10:01:26.4548108+00:00"}' + string: '{"token": "sanitized", "expiresOn": "2022-09-22T22:52:38.8405938+00:00"}' headers: - accept-ranges: - - bytes api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '72' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:01:26 GMT + - Wed, 21 Sep 2022 22:52:38 GMT ms-cv: - - pE/7U/HMYUWGgOzEfInuHg.0 + - Hybzgm0b9U6oYt45Q7EPSA.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100126Z-p18hf8s3dx4xf8cgexx53pe93400000000dg000000009gxw + - 0tpUrYwAAAACPwvaBvGWZQ7eHMxq00ewPWVZSMzExMDAwMTE1MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 186ms + - 183ms status: code: 200 message: OK diff --git a/src/communication/azext_communication/tests/latest/recordings/test_token_issue_with_multiple_scopes.yaml b/src/communication/azext_communication/tests/latest/recordings/test_token_issue_with_multiple_scopes.yaml index 5acf3de9fd7..4b1cd6593b6 100644 --- a/src/communication/azext_communication/tests/latest/recordings/test_token_issue_with_multiple_scopes.yaml +++ b/src/communication/azext_communication/tests/latest/recordings/test_token_issue_with_multiple_scopes.yaml @@ -13,11 +13,11 @@ interactions: Content-Type: - application/json User-Agent: - - azsdk-python-communication-identity/1.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + - AzureCli/1.2.2 azsdk-python-communication-identity/1.2.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) x-ms-content-sha256: - hlYiA5kT1yt3LwEdaupQDHzQEfodx+8svsStB5uolgw= x-ms-date: - - Tue, 16 Aug 2022 10:01:24 GMT + - Wed, 21 Sep 2022 22:52:35 GMT x-ms-return-client-request-id: - 'true' method: POST @@ -25,31 +25,29 @@ interactions: response: body: string: '{"identity": {"id": "sanitized"}, "accessToken": {"token": "sanitized", - "expiresOn": "2022-08-17T10:01:26.9368041+00:00"}}' + "expiresOn": "2022-09-22T22:52:36.8583716+00:00"}}' headers: api-supported-versions: - 2020-07-20-preview2, 2021-02-22-preview1, 2021-03-07, 2021-10-31-preview, 2021-11-01, 2022-06-01 - connection: - - keep-alive content-length: - '122' content-type: - application/json; charset=utf-8 date: - - Tue, 16 Aug 2022 10:01:27 GMT + - Wed, 21 Sep 2022 22:52:36 GMT ms-cv: - - mruKWtOrG0S3Q7K9i7u5Xg.0 + - j5b5ONhi0EmOgDSTlymkTQ.0 request-context: - appId= strict-transport-security: - max-age=2592000 x-azure-ref: - - 20220816T100126Z-r0s9pbvvdt0w72q6sqrkc1ktpw00000005f000000002ngv0 + - 0tJUrYwAAAADONME1++UiRJXTblZV01yyWVZSMzExMDAwMTE2MDE5ADlmYzdiNTE5LWE4Y2MtNGY4OS05MzVlLWM5MTQ4YWUwOWU4MQ== x-cache: - CONFIG_NOCACHE x-processing-time: - - 123ms + - 117ms status: code: 201 message: Created diff --git a/src/communication/azext_communication/tests/latest/test_communication_scenario_coverage.md b/src/communication/azext_communication/tests/latest/test_communication_scenario_coverage.md index 2250575a329..75080cfd1ef 100644 --- a/src/communication/azext_communication/tests/latest/test_communication_scenario_coverage.md +++ b/src/communication/azext_communication/tests/latest/test_communication_scenario_coverage.md @@ -1,11 +1,11 @@ |Scenario|Result|ErrorMessage|ErrorStack|ErrorNormalized|StartDt|EndDt| -|step_create|successed||||2022-08-16 10:12:46.739443|2022-08-16 10:12:47.297604| -|step_show|successed||||2022-08-16 10:12:47.297604|2022-08-16 10:12:47.376135| -|step_list|successed||||2022-08-16 10:12:47.376135|2022-08-16 10:12:47.449941| -|step_list2|successed||||2022-08-16 10:12:47.449941|2022-08-16 10:12:47.523425| -|step_update|successed||||2022-08-16 10:12:47.524424|2022-08-16 10:12:47.614416| -|step_link_notification_hub|successed||||2022-08-16 10:12:47.615416|2022-08-16 10:12:47.684154| -|step_list_key|successed||||2022-08-16 10:12:47.684154|2022-08-16 10:12:47.754154| -|step_regenerate_key|successed||||2022-08-16 10:12:47.754154|2022-08-16 10:12:47.823157| -|step_delete|successed||||2022-08-16 10:12:47.823157|2022-08-16 10:12:48.083435| +|step_create|successed||||2022-09-21 23:09:22.672194|2022-09-21 23:09:23.192867| +|step_show|successed||||2022-09-21 23:09:23.193777|2022-09-21 23:09:23.264876| +|step_list|successed||||2022-09-21 23:09:23.264876|2022-09-21 23:09:23.340907| +|step_list2|successed||||2022-09-21 23:09:23.340907|2022-09-21 23:09:23.415911| +|step_update|successed||||2022-09-21 23:09:23.415911|2022-09-21 23:09:23.490989| +|step_link_notification_hub|successed||||2022-09-21 23:09:23.490989|2022-09-21 23:09:23.562000| +|step_list_key|successed||||2022-09-21 23:09:23.562923|2022-09-21 23:09:23.635333| +|step_regenerate_key|successed||||2022-09-21 23:09:23.635333|2022-09-21 23:09:23.710440| +|step_delete|successed||||2022-09-21 23:09:23.710440|2022-09-21 23:09:24.110112| Coverage: 9/9 diff --git a/src/communication/azext_communication/version.py b/src/communication/azext_communication/version.py new file mode 100644 index 00000000000..ddbdf2a43cb --- /dev/null +++ b/src/communication/azext_communication/version.py @@ -0,0 +1,11 @@ +# -------------------------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for license information. +# -------------------------------------------------------------------------------------------- + + +VERSION = '1.3.0' + + +def cli_application_id(): + return F"AzureCli/{VERSION}" diff --git a/src/communication/setup.py b/src/communication/setup.py index 216612ec031..4e9d984a927 100644 --- a/src/communication/setup.py +++ b/src/communication/setup.py @@ -10,9 +10,8 @@ from setuptools import setup, find_packages # HISTORY.rst entry. -VERSION = '1.2.2' try: - from azext_communication.manual.version import VERSION + from azext_communication.version import VERSION except ImportError: pass